.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px;
  background-color: #100224; /* Deep purple-black background */
  color: #FFFFFF;
}

.page-news__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
}

.page-news__main-title {
  font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.page-news__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #E0E0E0;
}

.page-news__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.05rem;
  cursor: pointer;
}

.page-news__cta-button--register {
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register button font color */
  border: none;
}

.page-news__cta-button--register:hover {
  background-color: #A30606;
  transform: translateY(-2px);
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news__latest-articles-section {
  padding: 60px 20px;
  background-color: #1a0432; /* Slightly lighter dark background */
  color: #FFFFFF;
}

.page-news__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 10px;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #ff9500, #ff5e3a); /* Orange-red gradient */
  border-radius: 2px;
}

.page-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-news__article-card {
  background-color: #210542; /* Darker card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news__article-thumbnail {
  width: 100%;
  height: 200px; /* Fixed height for thumbnails */
  overflow: hidden;
}

.page-news__article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.page-news__article-card:hover .page-news__article-thumbnail img {
  transform: scale(1.05);
}

.page-news__article-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__article-date {
  font-size: 0.9em;
  color: #83a1f2; /* Blue for dates */
  margin-bottom: 10px;
}

.page-news__article-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__article-title a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #ff9500; /* Orange-red on hover */
}

.page-news__article-excerpt {
  font-size: 0.95em;
  color: #D0D0D0;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news__read-more {
  display: inline-block;
  color: #ff9500; /* Orange-red */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #ff5e3a;
}

.page-news__view-all {
  text-align: center;
  margin-top: 50px;
}

.page-news__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #ff9500, #ff5e3a); /* Orange-red gradient */
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.page-news__view-all-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 149, 0, 0.4);
}

.page-news__promotions-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: #017439; /* Primary green background */
  color: #FFFFFF;
  text-align: center;
}

.page-news__promotions-content {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-news__promotions-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-news__cta-button--promotions {
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register button font color */
  border: none;
}

.page-news__cta-button--promotions:hover {
  background-color: #A30606;
  transform: translateY(-2px);
}

.page-news__promotions-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.page-news__promotions-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news__faq-section {
  padding: 60px 20px;
  background-color: #100224; /* Deep purple-black background */
  color: #FFFFFF;
}

.page-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-news__faq-item {
  background-color: #210542; /* Darker card background */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ff9500; /* Orange-red for questions */
}

.page-news__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-news__faq-answer a {
  color: #83a1f2;
  text-decoration: none;
}

.page-news__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-news__hero-section {
    padding-bottom: 30px;
  }

  .page-news__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-news__intro-text {
    font-size: 1rem;
  }

  .page-news__articles-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }

  .page-news__article-thumbnail {
    height: 180px;
  }

  .page-news__article-title {
    font-size: 1.2em;
  }

  .page-news__promotions-callout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-news__hero-image,
  .page-news__article-thumbnail img,
  .page-news__promotions-image {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Ensure content area images are not too small */
  .page-news__article-thumbnail img {
    min-width: 200px;
    min- /* Adjust min-height to ensure it's not too small */
    width: 100%; /* Override to ensure responsiveness */
    height: auto; /* Override to ensure responsiveness */
  }
}

@media (max-width: 549px) {
  .page-news__hero-content {
    margin-bottom: 20px;
  }

  .page-news__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .page-news__intro-text {
    font-size: 0.95rem;
  }

  .page-news__cta-button {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .page-news__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .page-news__article-thumbnail {
    height: 160px;
  }

  .page-news__article-title {
    font-size: 1.1em;
  }

  .page-news__promotions-description {
    font-size: 1rem;
  }

  .page-news__faq-question {
    font-size: 1.1em;
  }

  .page-news__faq-answer {
    font-size: 0.95em;
  }
}