.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;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image slightly for visual effect */
  background: linear-gradient(0deg, #08160F 0%, rgba(8, 22, 15, 0.8) 70%, rgba(8, 22, 15, 0) 100%);
  padding-top: 100px;
}

.page-news__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

.page-news__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

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

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

.page-news__latest-news-section,
.page-news__featured-news-section,
.page-news__insights-section,
.page-news__cta-section {
  padding: 60px 0;
}

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

.page-news__news-card {
  background-color: #11271B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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;
}

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

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

.page-news__news-card-title a:hover {
  color: #2AD16F;
}

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

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

.page-news__read-more-btn {
  display: inline-block;
  color: #57E38D;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #57E38D;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-news__read-more-btn:hover {
  color: #F2FFF6;
  border-color: #F2FFF6;
}

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

.page-news__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
  border-color: #2E7A4E;
}

.page-news__featured-article {
  display: flex;
  gap: 30px;
  align-items: center;
  background-color: #11271B;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 30px;
}

.page-news__featured-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.page-news__featured-content {
  width: 50%;
}

.page-news__featured-title {
  font-size: 2em;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-news__featured-meta {
  color: #A7D9B8;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-news__featured-excerpt {
  color: #A7D9B8;
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-news__insight-card {
  background-color: #11271B;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-news__insight-title {
  font-size: 1.6em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news__insight-text {
  color: #A7D9B8;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-news__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%);
}

.page-news__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-news__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  display: block;
}

.page-news__cta-content {
  max-width: 900px;
}

.page-news__cta-title {
  font-size: 2.8em;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-news__cta-description {
  font-size: 1.2em;
  color: #A7D9B8;
  margin-bottom: 40px;
}

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

/* General text and link colors */
.page-news p,
.page-news li {
  color: #A7D9B8;
}

.page-news a {
  color: #57E38D;
}

.page-news h1, .page-news h2, .page-news h3, .page-news h4, .page-news h5, .page-news h6 {
  color: #F2FFF6;
}

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

  .page-news__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-news__featured-article {
    flex-direction: column;
    padding: 20px;
  }

  .page-news__featured-image,
  .page-news__featured-content {
    width: 100%;
  }

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

@media (max-width: 768px) {
  .page-news__container,
  .page-news__hero-content,
  .page-news__latest-news-section .page-news__container,
  .page-news__featured-news-section .page-news__container,
  .page-news__insights-section .page-news__container,
  .page-news__cta-section .page-news__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

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

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

  .page-news__btn-primary,
  .page-news__btn-secondary,
  .page-news__read-more-btn,
  .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 !important;
  }

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

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

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

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

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

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

  .page-news__featured-title {
    font-size: 1.5em;
  }

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

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

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