.page-news {
  background-color: #08160F;
  color: #F2FFF6;
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  text-align: center;
  background-color: #0A4B2C;
  overflow: hidden;
}

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

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  margin-top: -150px; /* Pull content up over the image, but not directly on it, for visual flow */
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

.page-news__hero-description {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

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

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

.page-news__news-card:hover,
.page-news__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

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

.page-news__news-card-excerpt,
.page-news__article-card-excerpt {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__news-card-link,
.page-news__article-card-link {
  display: inline-block;
  color: #2AD16F; /* Brighter green for links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-news__news-card-link:hover,
.page-news__article-card-link:hover {
  color: #F2C14E; /* Gold on hover */
}

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

.page-news__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(42, 209, 111, 0.4);
}

.page-news__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 18px rgba(42, 209, 111, 0.6);
}

.page-news__cta-button--secondary {
  background-color: transparent;
  color: #2AD16F; /* Brighter green */
  border: 2px solid #2AD16F;
}

.page-news__cta-button--secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  border-color: #2AD16F;
}

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

.page-news__why-follow-section .page-news__text-block {
  font-size: 1.1em;
  color: #F2FFF6;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-news__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-news__benefit-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-news__benefit-item:hover {
  transform: translateY(-5px);
}

.page-news__benefit-item strong {
  color: #F2C14E; /* Gold */
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

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

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-news__faq-item[open] .page-news__faq-question {
  background-color: #1E3A2A; /* Divider */
}

.page-news__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  width: 20px;
  text-align: center;
}

.page-news__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.8;
}

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

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

.page-news__cta-section {
  background: linear-gradient(135deg, #0A4B2C 0%, #13994A 100%);
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
}

.page-news__section-title--cta {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

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

/* Ensure summary marker is hidden for details tag */
.page-news__faq-item summary {
  list-style: none;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }

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

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

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

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

  .page-news__hero-section {
    padding-bottom: 40px;
  }

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

  .page-news__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-news__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

  .page-news__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

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

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

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

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

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

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

  .page-news__benefits-list {
    grid-template-columns: 1fr;
  }

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

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

  /* Mobile image responsiveness */
  .page-news img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile video responsiveness (if any) */
  .page-news video,
  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile container responsiveness */
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__hero-section,
  .page-news__latest-news-section,
  .page-news__featured-articles-section,
  .page-news__why-follow-section,
  .page-news__faq-section,
  .page-news__cta-section,
  .page-news__video-section,
  .page-news__video-container,
  .page-news__video-wrapper,
  .page-news__cta-buttons,
  .page-news__button-group,
  .page-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  
  /* specific adjustment for hero content on mobile */
  .page-news__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

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