.page-news {
  --bg-color: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;

  color: var(--text-main);
  font-family: 'Arial', sans-serif;
  background-color: var(--bg-color); /* Inherited from body in shared.css */
}

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

.page-news__section {
  padding: 60px 0;
  text-align: center;
}

.page-news__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--gold-color);
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-news__sub-title {
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--text-main);
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.page-news__paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__highlight {
  color: var(--gold-color);
}

.page-news__text-main {
  color: var(--text-main);
  font-weight: bold;
}

.page-news__link-inline {
  color: var(--glow-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__link-inline:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-news__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-news__list-item {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}

.page-news__list-item::before {
  content: '✔';
  color: var(--glow-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-news__btn-primary,
.page-news__btn-secondary,
.page-news__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-news__btn-primary {
  background: var(--btn-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
}

.page-news__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 0, 0.3);
}

.page-news__btn-secondary {
  background: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
  margin-left: 20px;
}

.page-news__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--deep-green);
}

.page-news__btn-tertiary {
  background: var(--card-bg);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  margin-left: 20px;
}

.page-news__btn-tertiary:hover {
  background: var(--border-color);
  color: var(--text-main);
}

/* Hero Section */
.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small decorative top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px; /* Space between image and content */
}

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

.page-news__hero-content {
  position: relative; /* Ensure content is above any potential background */
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.page-news__hero-title {
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1px;
}

.page-news__hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Video Section */
.page-news__video-section {
  background-color: var(--card-bg);
  padding: 60px 0;
  border-top: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
}

.page-news__video-container {
  text-align: center;
}

.page-news__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.page-news__video-caption {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 15px;
}

/* Featured Articles Grid */
.page-news__featured-articles {
  background-color: var(--bg-color);
}

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

.page-news__article-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  border: 1px solid var(--border-color);
}

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

.page-news__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-news__card-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: block;
}

.page-news__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.page-news__card-title a:hover {
  color: var(--glow-color);
}

.page-news__card-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-news__read-more {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

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

.page-news__read-more .page-news__icon {
  margin-left: 8px;
  font-size: 1.2em;
}

.page-news__button-container {
  margin-top: 50px;
}

/* FAQ Section */
.page-news__faq-section {
  background-color: var(--deep-green);
  padding: 80px 0;
}

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

.page-news__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-news__faq-item[open] {
  background-color: var(--deep-green);
  border-color: var(--glow-color);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  transition: color 0.3s ease;
  list-style: none;
}

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

.page-news__faq-question:hover {
  color: var(--glow-color);
}

.page-news__faq-item[open] .page-news__faq-question {
  color: var(--glow-color);
}

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

.page-news__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--glow-color);
  margin-left: 15px;
  line-height: 1;
}

.page-news__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA Banner */
.page-news__cta-banner {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.page-news__cta-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Ensure a minimum height for the banner */
}

.page-news__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2; /* Slightly dim the image for text readability */
}

.page-news__cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
  max-width: 900px;
}

.page-news__cta-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--gold-color);
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.page-news__cta-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

/* Global image styles */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: clamp(32px, 4vw, 58px);
  }
  .page-news__hero-description {
    font-size: 18px;
  }
  .page-news__section-title {
    font-size: clamp(26px, 3.2vw, 42px);
  }
  .page-news__sub-title {
    font-size: clamp(20px, 2.2vw, 28px);
  }
  .page-news__paragraph,
  .page-news__list-item {
    font-size: 16px;
  }
  .page-news__article-card {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-news__article-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

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

  .page-news__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

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

  .page-news__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-news__hero-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 15px;
  }

  .page-news__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-news__btn-primary,
  .page-news__btn-secondary,
  .page-news__btn-tertiary,
  .page-news a[class*="button"],
  .page-news a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    margin: 0 0 10px 0 !important; /* Adjust margins for stacked buttons */
  }

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

  .page-news__video-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-news__video-container,
  .page-news__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__section,
  .page-news__card,
  .page-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-news__article-card {
    margin-bottom: 20px;
  }

  .page-news__faq-question {
    font-size: 18px;
    padding: 18px 20px;
  }

  .page-news__faq-toggle {
    font-size: 24px;
  }

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

  .page-news__cta-title {
    font-size: clamp(26px, 7vw, 38px);
  }

  .page-news__cta-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-news__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-news__sub-title {
    font-size: clamp(18px, 5vw, 24px);
  }
  .page-news__paragraph,
  .page-news__list-item {
    font-size: 15px;
  }
  .page-news__card-title {
    font-size: 20px;
  }
  .page-news__card-description {
    font-size: 14px;
  }
}