.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

/* Ensure all images are responsive by default */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Section */
.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Stacks image and content vertically */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small padding at the top, body padding-top handles header offset */
  padding-bottom: 40px;
  background-color: #08160F;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image wrapper */
}

.page-news__hero-image {
  width: 100%;
  height: auto; /* Ensures aspect ratio is maintained */
  object-fit: cover;
}

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

.page-news__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-news__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button responsiveness */
}

.page-news__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Slightly darker on hover */
}

.page-news__cta-button--bottom {
  margin-top: 30px;
}

/* General Section Styling */
.page-news__section {
  padding: 60px 0;
  background-color: #08160F;
}

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

.page-news__section-title {
  font-size: 2.5em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-news__paragraph {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-news__paragraph a {
  color: #F2C14E; /* Gold color for internal links in paragraphs */
  text-decoration: underline;
}

/* Card Grid */
.page-news__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-news__card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-news__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card image display */
  object-fit: cover;
  border-bottom: 1px solid #1E3A2A;
}

.page-news__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news__card-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__card-title a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-news__card-title a:hover {
  color: #F2C14E;
  text-decoration: underline;
}

.page-news__card-date {
  font-size: 0.9em;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-news__card-text {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1; /* Allows text to take up available space */
}

.page-news__card-link {
  display: inline-block;
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__card-link:hover {
  text-decoration: underline;
}

/* Article List */
.page-news__article-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.page-news__article-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__article-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-news__article-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.page-news__article-title a:hover {
  color: #F2C14E;
  text-decoration: underline;
}

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

.page-news__article-text {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-news__read-more {
  display: inline-block;
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-news__faq-list {
  margin-top: 30px;
}

.page-news__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A;
  list-style: none; /* For details tag */
}

.page-news__faq-question::-webkit-details-marker {
  display: none; /* For details tag */
}

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

.page-news__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #F2C14E;
}

.page-news__faq-answer {
  padding: 0 25px;
  font-size: 1em;
  color: #A7D9B8;
  padding-bottom: 20px;
}

.page-news__faq-answer p {
  margin-top: 15px;
  color: #A7D9B8;
}

.page-news__faq-answer a {
  color: #F2C14E;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: clamp(1.8em, 6vw, 3em);
  }

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

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

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-bottom: 30px;
  }

  .page-news__hero-content {
    margin-top: 10px;
    padding: 15px;
  }

  .page-news__main-title {
    font-size: clamp(1.5em, 8vw, 2.5em);
  }

  .page-news__hero-description {
    font-size: 1em;
  }

  .page-news__section {
    padding: 40px 0;
  }

  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-news__paragraph {
    font-size: 1em;
  }

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

  .page-news__card-image {
    height: 200px;
  }

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

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

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

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

  .page-news__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-news__faq-answer {
    padding: 0 20px;
    padding-bottom: 15px;
  }

  /* Mobile responsive overrides for images, videos, buttons, containers */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__hero-section,
  .page-news__hero-image-wrapper,
  .page-news__hero-content,
  .page-news__article-item,
  .page-news__faq-item,
  .page-news__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-news__cta-button,
  .page-news__card-link,
  .page-news__read-more {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center; /* Center text for full-width buttons */
  }

  /* If multiple buttons in a row, stack them */
  .page-news__cta-buttons { /* Assuming a container for multiple buttons */
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/* Color Contrast Enforcement */
/* All text is light on a dark background as per custom color scheme */
.page-news {
  color: #F2FFF6; /* Text Main */
}
.page-news__paragraph,
.page-news__hero-description,
.page-news__card-date,
.page-news__card-text,
.page-news__article-date,
.page-news__article-text,
.page-news__faq-answer p {
  color: #A7D9B8; /* Text Secondary */
}
.page-news__card-title a,
.page-news__article-title a {
  color: #F2FFF6; /* Text Main for titles */
}
.page-news__card-title a:hover,
.page-news__article-title a:hover,
.page-news__card-link,
.page-news__read-more,
.page-news__faq-toggle,
.page-news__faq-answer a,
.page-news__paragraph a {
  color: #F2C14E; /* Gold */
}
/* Ensure button text is white on its gradient background */
.page-news__cta-button {
  color: #FFFFFF;
}

/* Fixed desktop width for video container, ensuring it also has width: 100% for flexbox */
.page-news__video-container {
  width: 100%; /* Must be present for flex items */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Emergency contrast fix (if needed, though colors are predefined) */
.page-news__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-news__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}