.page-news {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color from custom palette for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden; /* Ensure no image overflow */
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
  border-radius: 8px;
  margin-bottom: 30px; /* Space between image and text */
}

.page-news__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-news__main-title {
  font-size: clamp(2.2em, 4vw, 3em); /* Responsive H1 font size */
  font-weight: 700;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrap for buttons */
  word-wrap: break-word; /* Allow text wrap for buttons */
  box-sizing: border-box; /* Ensure padding/border included in width */
  text-align: center;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for primary button */
  border: 2px solid transparent;
}

.page-news__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-news__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow color for secondary button text */
  border: 2px solid #57E38D; /* Glow color for border */
  margin-left: 15px;
}

.page-news__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1); /* Slight background on hover */
  transform: translateY(-2px);
}

.page-news__latest-news-section,
.page-news__featured-articles-section,
.page-news__faq-section,
.page-news__cta-section {
  padding: 60px 0;
}

.page-news__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #F2C14E; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 40px;
}

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

.page-news__news-card,
.page-news__featured-card {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-news__news-card-image,
.page-news__featured-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistent card images */
  object-fit: cover;
  display: block;
}

.page-news__news-card-content,
.page-news__featured-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__news-card-date {
  font-size: 0.9em;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 10px;
  display: block;
}

.page-news__news-card-title,
.page-news__featured-card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news__news-card-title a,
.page-news__featured-card-title a {
  color: #F2FFF6; /* Main text color for linked titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__news-card-title a:hover,
.page-news__featured-card-title a:hover {
  color: #57E38D; /* Glow color on hover */
}

.page-news__news-card-excerpt {
  font-size: 0.95em;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 20px;
}

.page-news__news-card-readmore {
  color: #57E38D; /* Glow color for read more link */
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: auto; /* Push to bottom */
}

.page-news__news-card-readmore:hover {
  text-decoration: underline;
}

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

/* Featured articles specific */
.page-news__featured-card {
  flex-direction: row; /* Horizontal layout for featured cards */
  align-items: center;
}

.page-news__featured-card-image {
  width: 40%;
  height: 100%; /* Adjust as needed */
  max-height: 250px; /* Ensure image doesn't get too tall */
}

.page-news__featured-card-content {
  width: 60%;
  padding: 25px;
}

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

.page-news__faq-item {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: #F2FFF6; /* Main text color */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green for question background */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-news__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-news__faq-question:hover {
  background-color: #13994A; /* Slightly lighter green on hover */
}

.page-news__faq-qtext {
  flex-grow: 1;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color */
}

.page-news__faq-item[open] .page-news__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-news__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Secondary text color */
  border-top: 1px solid #1E3A2A; /* Divider color */
}

.page-news__faq-answer p {
  margin: 0;
}

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

.page-news__cta-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  color: #F2C14E; /* Gold color */
  margin-bottom: 20px;
}

.page-news__cta-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
  .page-news__hero-image {
    max-height: 450px;
  }
  .page-news__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-news__featured-card {
    flex-direction: column; /* Stack featured cards vertically on medium screens */
    align-items: flex-start;
  }
  .page-news__featured-card-image {
    width: 100%;
    height: auto;
    max-height: 250px;
  }
  .page-news__featured-card-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-news__container {
    padding: 0 15px !important;
  }

  /* Images */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers */
  .page-news__hero-section,
  .page-news__latest-news-section,
  .page-news__featured-articles-section,
  .page-news__faq-section,
  .page-news__cta-section,
  .page-news__container,
  .page-news__news-card,
  .page-news__featured-card,
  .page-news__faq-item,
  .page-news__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important; /* Prevent content overflow */
  }
  
  /* Specific top padding for hero/video section */
  .page-news__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-bottom: 40px !important;
  }

  .page-news__hero-image {
    max-height: 300px;
  }

  .page-news__main-title {
    font-size: 2em;
  }

  .page-news__section-title {
    font-size: 1.8em;
  }

  /* Buttons */
  .page-news__btn-primary,
  .page-news__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important; /* Remove margin for stacking */
    margin-bottom: 15px !important; /* Add spacing between stacked buttons */
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center;
  }
  .page-news__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 0 !important; /* Remove gap when stacking */
  }

  .page-news__news-card-image {
    height: 180px;
  }
  .page-news__featured-card {
    flex-direction: column !important; /* Ensure stacking on mobile */
  }
  .page-news__featured-card-image {
    width: 100% !important;
    height: auto !important;
  }
  .page-news__featured-card-content {
    width: 100% !important;
  }
  .page-news__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-news__faq-answer {
    padding: 15px 20px;
  }
  .page-news__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-news__main-title {
    font-size: 1.8em;
  }
  .page-news__section-title {
    font-size: 1.6em;
  }
  .page-news__news-card-title,
  .page-news__featured-card-title {
    font-size: 1.1em;
  }
  .page-news__hero-description,
  .page-news__cta-description {
    font-size: 1em;
  }
}