.page-news {
  font-family: Arial, sans-serif;
  color: var(--text-main, #F2FFF6); /* Default to light text for assumed dark body background */
  background-color: var(--bg, #08160F); /* Assume dark background from custom colors */
}

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

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--bg, #08160F);
}

.page-news__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

.page-news__hero-content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-main, #F2FFF6);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  background: rgba(17, 40, 27, 0.7); /* Card B G with opacity */
  border-radius: 8px;
}

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

.page-news__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--text-secondary, #A7D9B8);
}

.page-news__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-news__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-news__latest-news-section {
  padding: 60px 0;
  background-color: var(--bg, #08160F);
}

.page-news__section-title {
  font-size: 2.5em;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--glow, #57E38D);
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-news__news-card {
  background-color: var(--card-b-g, #11271B);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--divider, #1E3A2A);
}

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

.page-news__news-image-wrapper {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  overflow: hidden;
}

.page-news__news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-news__news-card:hover .page-news__news-image {
  transform: scale(1.05);
}

.page-news__news-content {
  padding: 25px;
}

.page-news__news-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__news-title a {
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__news-title a:hover {
  color: var(--glow, #57E38D);
}

.page-news__news-meta {
  font-size: 0.9em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 15px;
}

.page-news__news-excerpt {
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-news__read-more {
  display: inline-block;
  color: var(--glow, #57E38D);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: var(--gold, #F2C14E);
}

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

.page-news__view-all-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 1px solid var(--divider, #1E3A2A);
}

.page-news__view-all-button:hover {
  background: var(--main-color, #11A84E);
  transform: translateY(-2px);
}

.page-news__promotion-cta-section {
  background-color: var(--main-color, #11A84E);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-news__promotion-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-news__promotion-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-news__promotion-description {
  font-size: 1.2em;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

.page-news__cta-button--secondary {
  background: var(--card-b-g, #11271B);
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.page-news__cta-button--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--glow, #57E38D);
}

.page-news__faq-section {
  padding: 60px 0;
  background-color: var(--bg, #08160F);
}

.page-news__faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__faq-item {
  background-color: var(--card-b-g, #11271B);
  border: 1px solid var(--divider, #1E3A2A);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-news__faq-question:hover {
  background-color: var(--main-color, #11A84E);
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--glow, #57E38D);
}

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

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

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

@media (max-width: 768px) {
  .page-news__hero-content-container {
    max-width: 90%;
    padding: 15px;
  }
  .page-news__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-news__description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-news__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__news-grid {
    grid-template-columns: 1fr;
  }
  .page-news__news-card {
    margin: 0 10px;
  }
  .page-news__news-image-wrapper {
    height: 180px;
  }
  .page-news__news-content {
    padding: 20px;
  }
  .page-news__news-title {
    font-size: 1.2em;
  }
  .page-news__news-excerpt {
    font-size: 0.95em;
  }
  .page-news__view-all-button {
    width: calc(100% - 30px);
    margin: 0 15px;
  }

  .page-news__promotion-title {
    font-size: 1.8em;
  }
  .page-news__promotion-description {
    font-size: 1em;
  }
  .page-news__promotion-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__cta-button--primary, .page-news__cta-button--secondary {
    width: calc(100% - 30px);
    margin: 0 15px;
  }

  .page-news__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-news__faq-answer {
    padding: 0 20px 15px;
  }
  
  /* Mobile image responsiveness */
  .page-news img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__hero-image-wrapper,
  .page-news__news-image-wrapper,
  .page-news__container,
  .page-news__news-card,
  .page-news__promotion-content,
  .page-news__faq-list,
  .page-news__promotion-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-news__cta-button, .page-news__view-all-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

@media (max-width: 480px) {
  .page-news__hero-section {
    padding-bottom: 40px;
  }
  .page-news__hero-content-container {
    top: auto;
    bottom: 20px;
    transform: translate(-50%, 0%);
    width: calc(100% - 30px);
    background: rgba(17, 40, 27, 0.85); /* Slightly darker for better contrast */
  }
  .page-news__main-title {
    font-size: 1.8em;
  }
  .page-news__description {
    font-size: 0.9em;
  }
  .page-news__cta-button {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__promotion-title {
    font-size: 1.6em;
  }
  .page-news__promotion-description {
    font-size: 0.9em;
  }
  .page-news__faq-question {
    font-size: 0.95em;
  }
}