.page-news {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: var(--bg-color, #08160F); /* Fallback to default if --bg-color not defined */
}

.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-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #08160F;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

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

.page-news__hero-content-wrapper {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin-top: -100px; /* Adjust to slightly overlap the image for visual flow */
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-news__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
}

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

.page-news__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-news__btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-news__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-news__btn-secondary {
  background: transparent;
  color: #F2FFF6;
  border: 2px solid #2E7A4E; /* Border color */
}

.page-news__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border color with opacity */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 122, 78, 0.2);
}

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

.page-news__section-description {
  font-size: 1.1em;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-news__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

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

.page-news__news-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;
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
}

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

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

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

.page-news__news-card-date {
  font-size: 0.9em;
  color: #A7D9B8;
  margin-bottom: 10px;
}

.page-news__news-card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-news__news-card-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-news__news-card-excerpt {
  font-size: 1em;
  color: #A7D9B8;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__news-card-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.page-news__news-card-link:hover {
  text-decoration: underline;
  color: #F2C14E; /* Gold */
}

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

.page-news__list-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-news__list-item-image {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-news__list-item-content {
  flex-grow: 1;
}

.page-news__list-item-date {
  font-size: 0.85em;
  color: #A7D9B8;
  margin-bottom: 5px;
}

.page-news__list-item-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__list-item-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__list-item-title a:hover {
  color: #57E38D; /* Glow */
}

.page-news__list-item-excerpt {
  font-size: 0.95em;
  color: #A7D9B8;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-news__list-item-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__list-item-link:hover {
  text-decoration: underline;
  color: #F2C14E; /* Gold */
}

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

.page-news__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.page-news__category-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 25px;
  text-decoration: none;
  color: #F2FFF6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border color */
}

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

.page-news__category-card-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: block;
  border: 3px solid #57E38D; /* Glow */
}

.page-news__category-card-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
}

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

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

.page-news__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #F2FFF6;
  user-select: none;
  list-style: none; /* Hide default marker */
}

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

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

.page-news__faq-item[open] .page-news__faq-toggle {
  transform: rotate(45deg);
}

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

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

.page-news__faq-answer a {
  color: #57E38D;
  text-decoration: none;
}

.page-news__faq-answer a:hover {
  text-decoration: underline;
}

.page-news__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-news__cta-section .page-news__section-title {
  font-size: 2.5em;
  margin-bottom: 25px;
}

.page-news__cta-section .page-news__section-description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__hero-content-wrapper {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .page-news__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-news__hero-content-wrapper {
    padding: 25px 15px;
    margin-top: -80px; /* Adjust for smaller screens */
  }

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

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

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

  .page-news__btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 20px;
  }

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

  .page-news__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-news__featured-news-section,
  .page-news__latest-updates-section,
  .page-news__categories-section,
  .page-news__faq-section,
  .page-news__cta-section {
    padding: 40px 0;
  }

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

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

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

  .page-news__news-card-excerpt {
    font-size: 0.9em;
  }

  .page-news__list-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .page-news__list-item-image {
    width: 100%;
    height: 150px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-news__list-item-title {
    font-size: 1.1em;
  }

  .page-news__list-item-excerpt {
    font-size: 0.85em;
  }

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

  .page-news__category-card {
    padding: 15px;
  }

  .page-news__category-card-image {
    width: 80px;
    height: 80px;
  }

  .page-news__category-card-title {
    font-size: 1em;
  }

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

  .page-news__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9em;
  }

  /* Mobile image and video responsive adaptation */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news video,
  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .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: hidden !important;
  }
  
  .page-news__video-section {
    padding-top: 10px !important;
  }

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