.page-news {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-news__hero-section {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-news__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-news__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-news__description {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* Section Titles */
.page-news__section-title,
.page-news__cta-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
  position: relative;
}

.page-news__section-title::after,
.page-news__cta-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #11A84E, #22C768);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Articles Section */
.page-news__articles-section {
  padding: 40px 0;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-news__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-news__article-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-news__article-content {
  padding: 20px;
}

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

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

.page-news__article-title a:hover {
  color: #57E38D; /* Glow */
}

.page-news__article-date {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  display: block;
}

.page-news__article-excerpt {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-news__read-more-btn {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__read-more-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-news__view-all {
  text-align: center;
}

.page-news__view-all-btn {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__view-all-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* CTA Section */
.page-news__cta-section {
  background-color: #11271B; /* Card BG */
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-news__cta-content {
  max-width: 800px;
}

.page-news__cta-title {
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
}

.page-news__cta-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news__cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 150px;
}

.page-news__cta-btn--register {
  background: linear-gradient(180deg, #57E38D 0%, #11A84E 100%); /* Glow-like green for primary CTA */
}

.page-news__cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-news__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-news__hero-image {
    aspect-ratio: 16/10;
  }

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

  .page-news__description {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }

  .page-news__article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__article-image-wrapper {
    height: 180px;
  }

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

  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news__cta-btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 549px) {
  .page-news__hero-image {
    aspect-ratio: 16/11;
  }

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

  .page-news__description {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }

  .page-news__section-title,
  .page-news__cta-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }

  .page-news__articles-section {
    padding: 30px 0;
  }

  .page-news__cta-section {
    padding: 40px 0;
  }
}

/* Mobile content image overflow prevention */
@media (max-width: 768px) {
  .page-news img {
    max-width: 100%;
    height: auto;
  }
  .page-news__article-image {
    max-width: 100%; /* Ensure content images are responsive */
    height: auto;
  }
}