.page-news {
  padding-top: 10px; /* Small top padding for inner pages */
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: #F4F7FB;
  margin-bottom: 40px;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for content */
  margin-bottom: 20px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* Matches 1920x600 */
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  fetchpriority: high;
}

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

.page-news__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.page-news__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 30px;
}

.page-news__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-news__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-news__news-list-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.page-news__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2F6BFF;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

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

.page-news__news-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.page-news__card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-news__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  filter: none; /* No image filters */
}

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

.page-news__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__card-title:hover {
  color: #2F6BFF;
}

.page-news__card-meta {
  font-size: 0.9rem;
  color: #6FA3FF;
  margin-bottom: 15px;
}

.page-news__card-summary {
  font-size: 1rem;
  color: #1F2D3D;
  line-height: 1.6;
}

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

.page-news__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-news__view-all-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-news__cta-section {
  background-color: #2F6BFF;
  padding: 60px 20px;
  text-align: center;
  color: #FFFFFF;
}

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

.page-news__cta-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #FFFFFF;
}

.page-news__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-news__hero-section, .page-news__news-list-section, .page-news__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__hero-image {
    aspect-ratio: 16/9; /* Adjust aspect ratio for mobile hero */
  }

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

  .page-news__card-image {
    height: 200px;
  }

  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-news img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
  }

  .page-news__news-card .page-news__card-image {
    min-width: unset; /* Override general img rule for card images */
    min-height: unset; /* Override general img rule for card images */
    height: 200px; /* Re-apply specific height for card images */
  }

  .page-news__cta-button, .page-news__view-all-button {
    width: 100%;
    max-width: 300px;
  }

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

  .page-news__section-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
}

@media (max-width: 549px) {
  .page-news__hero-image {
    aspect-ratio: 4/3; /* Further adjust aspect ratio for smaller mobile hero */
  }
  .page-news__description {
    font-size: 1rem;
  }
  .page-news__card-title {
    font-size: 1.2rem;
  }
  .page-news__card-summary {
    font-size: 0.95rem;
  }
}