.page-news__hero-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  padding: 10px 0 40px;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

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

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

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

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

.page-news__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-news__latest-news-section {
  background-color: #F4F7FB;
  padding: 60px 0;
}

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

.page-news__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

.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;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news__card-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.page-news__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

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

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

.page-news__card-date {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 15px;
  display: block;
}

.page-news__card-excerpt {
  font-size: 1rem;
  line-height: 1.5;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #4A8BFF;
}

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

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

.page-news__view-all-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 849px) {
  .page-news__hero-image-wrapper {
    margin-bottom: 15px;
  }

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

  .page-news__description {
    font-size: 1rem;
  }

  .page-news__cta-button {
    padding: 12px 25px;
    font-size: 0.9375rem;
  }

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

  .page-news__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    margin-bottom: 30px;
  }

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

  .page-news__news-card {
    max-width: 100%;
  }

  .page-news__card-title {
    font-size: 1.2rem;
  }

  .page-news__card-excerpt {
    font-size: 0.9375rem;
  }

  .page-news__view-all-button {
    padding: 10px 20px;
    font-size: 0.9375rem;
  }

  /* Ensure content images are not too small */
  .page-news__news-card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-news__container {
    padding: 0 15px;
  }

  /* Mandatory for mobile content images to prevent overflow */
  .page-news__latest-news-section img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 549px) {
  .page-news__hero-section {
    padding: 10px 0 30px;
  }

  .page-news__hero-content {
    padding: 0 15px;
  }

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

  .page-news__description {
    font-size: 0.9375rem;
  }

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

  .page-news__section-title {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    margin-bottom: 25px;
  }

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

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

/* Ensure content area images are at least 200px wide */
/* This rule applies to any img within .page-news__latest-news-section */
.page-news__latest-news-section .page-news__card-image {
  min-width: 200px;
  min-height: 200px;
}