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

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

.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F;
  position: relative;
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-news__hero-content {
  position: relative;
  padding: 40px 20px;
  max-width: 800px;
  z-index: 1;
}

.page-news__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2C14E; /* Gold color for main titles */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-news__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color */
  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;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-news__latest-news-section,
.page-news__featured-articles-section,
.page-news__faq-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-news__section-subtitle {
  font-size: 1.1em;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news__news-card,
.page-news__featured-card {
  background-color: #11271B; /* Card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border color */
}

.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-wrapper,
.page-news__featured-card-image-wrapper {
  width: 100%;
  height: 225px; /* Fixed height for consistent card appearance */
  overflow: hidden;
}

.page-news__news-card-image,
.page-news__featured-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news__news-card-content,
.page-news__featured-card-content {
  padding: 20px;
}

.page-news__news-card-title,
.page-news__featured-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
}

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

.page-news__news-card-title a:hover,
.page-news__featured-card-title a:hover {
  color: #2AD16F; /* Button gradient start color on hover */
}

.page-news__news-card-meta,
.page-news__featured-card-meta {
  font-size: 0.9em;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 15px;
}

.page-news__news-card-excerpt,
.page-news__featured-card-excerpt {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 20px;
}

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

.page-news__read-more-link:hover {
  color: #13994A;
}

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

.page-news__faq-list {
  margin-top: 30px;
}

.page-news__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  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.15em;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-question {
  background-color: #0A4B2C; /* Deep Green for open FAQ */
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-news__faq-item summary {
  list-style: none;
}

.page-news__faq-item summary::-webkit-details-marker {
  display: none;
}

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

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

/* Divider */
.page-news__latest-news-section::after,
.page-news__featured-articles-section::after {
  content: '';
  display: block;
  width: 80%;
  max-width: 1000px;
  height: 1px;
  background-color: #1E3A2A; /* Divider color */
  margin: 60px auto 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__news-grid,
  .page-news__featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-news__container {
    padding: 0 15px;
  }

  .page-news__hero-section {
    padding: 0;
    padding-top: 10px !important;
  }

  .page-news__hero-content {
    padding: 30px 15px;
  }

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

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

  .page-news__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px;
    font-size: 1em;
  }

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

  .page-news__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-news__news-grid,
  .page-news__featured-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-news__news-card-image-wrapper,
  .page-news__featured-card-image-wrapper {
    height: 180px;
  }

  .page-news__news-card-title,
  .page-news__featured-card-title {
    font-size: 1.2em;
  }

  .page-news__news-card-content,
  .page-news__featured-card-content {
    padding: 15px;
  }

  /* Image responsiveness */
  .page-news img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news__news-card-image, .page-news__featured-card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news__hero-image-wrapper, .page-news__news-card-image-wrapper, .page-news__featured-card-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Section/Container padding for mobile */
  .page-news__latest-news-section .page-news__container,
  .page-news__featured-articles-section .page-news__container,
  .page-news__faq-section .page-news__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-news__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

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

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

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