.social-metadata {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.social-metadata img {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
  border-radius: 50%;
}

.social-metadata a {
  color: #6364ff; /* Mastodon color */
  text-decoration: none;
  font-weight: bold;
}

.social-metadata a:hover {
  text-decoration: underline; /* Underline on hover */
  transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition */
}

.social-metadata .social-icon {
  font-size: 1.5rem;
  color: #6364ff; /* Mastodon color */
}

.social-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  display: inline-flex; /* Use inline-flex to align items */
  align-items: center; /* Center align items vertically */
  justify-content: center; /* Center align items horizontally */
}

.social-media-updates .media-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.social-media-updates .media-content video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}



.news-nav {
  display: flex;
  justify-content: center;
}

.news-nav ul {
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;
  width: 100%;
  gap: 5vw;
}

.news-nav ul li {
  flex: 1;
  margin: 0;
}

.news-nav ul li a {
  color: #ffffff; /* White text */
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 0;
  border-radius: 5px;
  border: none; /* Remove border */
}

li.news-entry {
  background-color: #1f1f1f;
  border-radius: 5px;
  margin: 0.4rem 0;
  padding: 0.7rem;
  position: relative;
  border: 1px solid #333;
  border-left-width: 10px;
}

li.news-entry.social-media {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

li.news-entry a:hover {
  text-decoration: underline; /* Underline on hover */
  transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition */
}

li.news-entry.releases {
  border-left-color: #0056b8; /* Blue */
}

.releases .update-title {
  color: #0056b8; /* Blue */
}

#releases h3 {
  color: #0056b8; /* Blue for Releases */
}

li.news-entry.blogs {
  border-left-color: #FFA500; /* Pink */
}

.blogs .update-title {
  color: #FFA500;
}

#blogs h3 {
  color: #FFA500;
}

li.news-entry.videos {
  border-left-color: #c8acff; /* Light Purple */
}

.videos .update-title {
  color: #c8acff; /* Light Purple */
}

#videos h3 {
  color: #c8acff; /* Light Purple for Videos */
}

.filter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vh 0;
  background-color: #1f1f1f;
  border-radius: 5px;
  border: 1px solid #333;
  box-sizing: border-box;
}

.filter-box label {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-right: 0.5rem;
}

.filter-box select {
  background-color: #333;
  color: #e0e0e0;
  border: 1px solid #555;
  border-radius: 5px;
  padding: 0.5rem;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'Josefin Sans', sans-serif;
}

.filter-box select:hover {
  background-color: #555;
  color: #fff;
}

.news-entry {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.blog-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.blog-entry-header .left-section {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  align-items: center;
  text-align: center;
  width: 30%;
}

.blog-entry-header .center-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  text-align: left;
  width: 60%;
}

.blog-entry-header .right-section {
  display: flex;
  align-items: center;
  width: 10%;
}

.news-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.news-entry:hover {
  transform: scale(1.01); /* Slightly increase size */
  transition: transform 0.3s ease; /* Smooth transition */
}

.projects-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 75%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.project-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1f1f1f;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 1rem;
  margin: 0.5rem;
  transition: transform 0.3s ease;
  text-align: center;
}

.project-entry:hover {
  transform: scale(1.05);
}

.project-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.project-title {
  font-weight: bold;
  color: #f5deb3; /* Yellowish white */
}

.project-entry:hover {
  transform: scale(1.05);
}

.project-entry .project-icon {
  height: 48px;
  width: 96px;
  object-fit: contain;
  margin: 0 auto 0.5rem auto;
  border-radius: 5px;
}

.project-entry .project-title {
  font-size: 1rem;
  font-weight: bold;
  color: #f5deb3; /* Yellowish white */
}

.project-info-page {
  text-align: center;
  height: 74vh;
}

.project-info-page h1 {
  font-size: 2.5rem;
  color: #f5deb3; /* Yellowish white */
  margin-bottom: 1rem;
}

.project-info-page p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.project-info-page h2 {
  font-size: 1.8rem;
  color: #03a9f4; /* Light blue */
  margin-bottom: 1rem;
}

.project-info-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.project-info-page ul li {
  margin-bottom: 0.5rem;
}

.project-icon {
  height: 40px;
  width: 80px;
  object-fit: contain;
  margin: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon {
  width: 30px;
  height: 30px;
  margin: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon img {
  width: 30px;
  height: 30px;
}

.platform-icon .social-icon {
  width: 30px;
  height: 30px;
  font-size: 30px;
}

.project-title {
  font-size: 0.8rem;
  font-weight: normal;
  color: #f5deb3; /* Yellowish white */
}

.project-title:hover {
  text-decoration: underline; /* Underline on hover */
  transition: color 0.3s ease, text-decoration 0.3s ease; /* Smooth transition */
}

.update-title {
  font-size: 1.2rem;
  text-decoration: none;
  margin-top: 1rem;
  display: flex;
}

.update-meta {
  display: flex;
  font-size: smaller;
  color: #888;
  margin-bottom: 0.5rem;
}

.social-media-updates h3 {
  font-size: 1.2rem;
  color: #03a9f4;
}

.news-entry h3 {
  font-size: 0.8rem;
}

.post-title {
  font-size: 0.8rem;
  margin: 0.5rem 0;
}

.post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.social-media-post-title {
  text-align: center;
}

.social-media-updates .news-entry a {
  color: inherit; /* Default color */
}

.social-media-updates .update-meta {
  font-size: 0.8rem;
}

.social-media-updates .news-entry {
  font-size: 0.9rem;
}

.update-meta i {
  margin-right: 0.5rem;
}

.update-header {
  position: relative;
}

.update-header .platform-icon {
  position: absolute;
  right: 0.5rem;
  font-size: 1.5rem;
}

.header-left {
  display: flex;
  align-items: center;
  height: inherit;
}

.header-logo {
  max-height: 100px;
  max-width: 100px;
  width: auto; /* Maintain aspect ratio */
  margin-right: 1rem;
}

.header-tagline {
  font-size: 1rem;
  color: #f5deb3;
  text-transform: uppercase;
  font-weight: bold;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 1vh 0 0;
  display: flex;
  gap: 2vw;
}

.footer-links li {
  display: inline;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: scale(1.25);
}

.social-links, .rss-feeds {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.social-button, .rss-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background-color: #333;
  color: #f5deb3; /* Yellowish white */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-button:hover, .rss-button:hover {
  background-color: #555;
  color: #fff;
  text-decoration: none; /* Ensure no underline on hover */
}

.social-button:hover .social-icon, .rss-button:hover .rss-icon {
  text-decoration: none; /* Prevent underline on icons */
}

.social-icon, .rss-icon {
  font-size: 24px;
}

.infobox h1 {
  font-size: 1.4rem;
  color: #3ea339;
}

.infobox .project-icon {
  height: 100px;
  width: 200px;
  object-fit: contain;
  margin: 1rem auto;
  border-radius: 10px;
}

.infobox p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin: 1rem 0;
}

.infobox h2 {
  font-size: 1.3rem;
  color: #03a9f4; /* Light blue */
  margin: 1rem 0;
}

.infobox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infobox ul li {
  margin: 0.5rem 0;
}

.infobox ul li a {
  color: #f5deb3; /* Yellowish white */
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infobox ul li a:hover {
  text-decoration: underline;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.infobox .social-icon,
.infobox .rss-icon {
  margin-right: 0.5rem;
}

.infobox .project-description {
  text-align: justify;
}

.infobox .project-description a {
  color: #3fa43a;
}