.page-news {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F;
  color: #F2FFF6;
}

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

.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #11271B;
  border-bottom: 2px solid #1E3A2A;
}

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

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.page-news__hero-content-wrapper {
  padding: 0 16px;
  max-width: 800px;
}

.page-news__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6;
  margin-bottom: 15px;
}

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

.page-news__hero-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-news__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #11A84E;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-news__article-card {
  background-color: #11271B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #2E7A4E;
}

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

.page-news__article-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-news__article-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: none;
  min-height: 200px; /* Enforce min size */
  min-width: 200px; /* Enforce min size */
}

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

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

.page-news__article-meta {
  font-size: 0.9rem;
  color: #A7D9B8;
  margin-bottom: 15px;
}

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

.page-news__read-more, .page-news__view-all-button {
  display: inline-block;
  font-weight: 600;
  color: #11A84E;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news__read-more:hover, .page-news__view-all-button:hover {
  color: #22C768;
}

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

.page-news__view-all-button {
  padding: 12px 25px;
  border: 2px solid #11A84E;
  border-radius: 8px;
  color: #F2FFF6;
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-news__view-all-button:hover {
  background-color: #11A84E;
  color: #F2FFF6;
  border-color: #11A84E;
}

.page-news__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
  text-align: center;
}

.page-news__cta-title {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-news__cta-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-news__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-news__hero-description {
    font-size: 1rem;
  }
  .page-news__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-bottom: 30px;
  }
  .page-news__articles-section {
    padding: 40px 0;
  }
  .page-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news__article-image {
    max-width: 100%;
    height: auto;
  }
  .page-news__cta-section {
    padding: 60px 0;
  }
  .page-news__cta-title {
    font-size: clamp(1.4rem, 6vw, 2.1rem);
  }
  .page-news__cta-description {
    font-size: 1rem;
  }
}

@media (max-width: 549px) {
  .page-news__hero-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }
  .page-news__hero-description {
    font-size: 0.95rem;
  }
  .page-news__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-news__article-title {
    font-size: 1.15rem;
  }
  .page-news__article-excerpt {
    font-size: 0.95rem;
  }
  .page-news__hero-button, .page-news__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-news__cta-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }
  .page-news__cta-description {
    font-size: 0.95rem;
  }
}