.page-news-platform-upgrade-announcement {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-news-platform-upgrade-announcement__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-news-platform-upgrade-announcement__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-news-platform-upgrade-announcement__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-news-platform-upgrade-announcement__main-title {
  font-size: 3em;
  margin-bottom: 15px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-news-platform-upgrade-announcement__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-news-platform-upgrade-announcement__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-news-platform-upgrade-announcement__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-news-platform-upgrade-announcement__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-news-platform-upgrade-announcement__button--register:hover {
  background-color: #f0f0f0;
}

.page-news-platform-upgrade-announcement__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-news-platform-upgrade-announcement__button--login:hover {
  background-color: #e0a53b;
}

.page-news-platform-upgrade-announcement__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: -80px; /* Overlap with hero section slightly */
  position: relative;
  z-index: 1;
}

.page-news-platform-upgrade-announcement__article p {
  margin-bottom: 1em;
  font-size: 1.05em;
}

.page-news-platform-upgrade-announcement__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-news-platform-upgrade-announcement__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-news-platform-upgrade-announcement__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-news-platform-upgrade-announcement__feature-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-news-platform-upgrade-announcement__download-section {
  text-align: center;
  margin: 50px 0;
  padding: 30px;
  background-color: #FCBC45;
  border-radius: 8px;
  color: #000000;
}

.page-news-platform-upgrade-announcement__download-section p {
  font-size: 1.3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-platform-upgrade-announcement__button--download {
  background-color: #000000;
  color: #FFFFFF;
}

.page-news-platform-upgrade-announcement__button--download:hover {
  background-color: #333333;
}

.page-news-platform-upgrade-announcement__cta-footer {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 8px;
}

.page-news-platform-upgrade-announcement__cta-footer-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-news-platform-upgrade-announcement__button--register-footer {
  background-color: #FCBC45;
  color: #000000;
}

.page-news-platform-upgrade-announcement__button--register-footer:hover {
  background-color: #e0a53b;
}

.page-news-platform-upgrade-announcement__faq {
  margin-top: 40px;
}

.page-news-platform-upgrade-announcement__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-news-platform-upgrade-announcement__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-news-platform-upgrade-announcement__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-news-platform-upgrade-announcement__related-news {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-news-platform-upgrade-announcement__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news-platform-upgrade-announcement__news-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-platform-upgrade-announcement__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-news-platform-upgrade-announcement__news-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-news-platform-upgrade-announcement__news-card-content {
  padding: 20px;
}

.page-news-platform-upgrade-announcement__news-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-news-platform-upgrade-announcement__news-card-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-platform-upgrade-announcement__news-card-title a:hover {
  color: #FCBC45;
}

.page-news-platform-upgrade-announcement__news-card-excerpt {
  font-size: 0.95em;
  color: #555555;
}

@media (max-width: 992px) {
  .page-news-platform-upgrade-announcement__main-title {
    font-size: 2.5em;
  }

  .page-news-platform-upgrade-announcement__intro-text {
    font-size: 1.1em;
  }

  .page-news-platform-upgrade-announcement__section-title {
    font-size: 2em;
  }

  .page-news-platform-upgrade-announcement__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-news-platform-upgrade-announcement__hero-content {
    width: 90%;
    padding: 15px;
  }

  .page-news-platform-upgrade-announcement__main-title {
    font-size: 2em;
  }

  .page-news-platform-upgrade-announcement__intro-text {
    font-size: 1em;
  }

  .page-news-platform-upgrade-announcement__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-platform-upgrade-announcement__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-news-platform-upgrade-announcement__content-area {
    padding: 20px 15px;
    margin-top: -50px;
  }

  .page-news-platform-upgrade-announcement__section-title {
    font-size: 1.8em;
  }

  .page-news-platform-upgrade-announcement__sub-title {
    font-size: 1.4em;
  }

  /* CRITICAL: Mobile content image overflow prevention */
  .page-news-platform-upgrade-announcement__content-area img,
  .page-news-platform-upgrade-announcement__hero-image,
  .page-news-platform-upgrade-announcement__feature-image,
  .page-news-platform-upgrade-announcement__news-card-image {
    max-width: 100%;
    height: auto;
  }

  .page-news-platform-upgrade-announcement__news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-news-platform-upgrade-announcement__main-title {
    font-size: 1.7em;
  }

  .page-news-platform-upgrade-announcement__intro-text {
    font-size: 0.9em;
  }

  .page-news-platform-upgrade-announcement__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-news-platform-upgrade-announcement__section-title {
    font-size: 1.5em;
  }

  .page-news-platform-upgrade-announcement__sub-title {
    font-size: 1.2em;
  }
}