.page-news {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-news__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-news__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.page-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Subtle darkening for text contrast */
}

.page-news__hero-content {
  padding: 40px 20px;
  background-color: #FFFFFF;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  position: relative;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
}

.page-news__subtitle {
  font-size: 1.1em;
  color: #1F2D3D;
  max-width: 800px;
  margin: 0 auto;
}

.page-news__articles-section {
  padding: 40px 0;
}

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

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

.page-news__article-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border color */
}

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

.page-news__article-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency, will be object-fit */
  object-fit: cover;
  display: block;
}

.page-news__article-content {
  padding: 20px;
}

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

.page-news__article-title a {
  color: #1F2D3D;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #2F6BFF; /* Primary color on hover */
}

.page-news__article-date {
  font-size: 0.9em;
  color: #6FA3FF; /* Auxiliary color */
  margin-bottom: 15px;
  display: block;
}

.page-news__article-excerpt {
  font-size: 1em;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-news__read-more-btn {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.page-news__read-more-btn:hover {
  opacity: 0.9;
}

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

.page-news__view-all-btn {
  display: inline-block;
  background-color: #6FA3FF; /* Auxiliary color */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-news__view-all-btn:hover {
  background-color: #2F6BFF; /* Primary color on hover */
}

.page-news__cta-section {
  background-color: #2F6BFF; /* Primary color for CTA background */
  padding: 60px 0;
  text-align: center;
  margin-top: 40px;
}

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

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

.page-news__cta-description {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-news__btn {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__btn--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 10px #A5C4FF; /* Glow color */
}

.page-news__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px #A5C4FF;
}

.page-news__btn--secondary {
  background-color: #FFFFFF;
  color: #2F6BFF; /* Primary color for text */
  border: 2px solid #D6E2FF; /* Border color */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-news__btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  color: #1F2D3D; /* Text Main on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-news__hero-content {
    margin-top: -40px;
    padding: 30px 15px;
  }

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

  .page-news__subtitle {
    font-size: 1em;
  }

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

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

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

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

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

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

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

  .page-news__btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  /* Ensure content images do not overflow */
  .page-news__articles-section img,
  .page-news__article-card img {
    max-width: 100%;
    height: auto;
  }

  /* Content area images CSS dimensions lower bound */
  .page-news__articles-section img,
  .page-news__article-card img {
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px;
  }
}