.page-news {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #2F6BFF;
  color: #FFFFFF;
}

.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: 800px;
  padding: 0 20px;
}

.page-news__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

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

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

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

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

.page-news__section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-news__news-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  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.12);
}

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

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

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

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

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

.page-news__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
}

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

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

.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: #2F6BFF;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__view-all-button:hover {
  background: #4A8BFF;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 2.5rem;
  }

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

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

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

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-bottom: 30px;
  }

  .page-news__hero-title {
    font-size: clamp(2rem, 5vw, 2.25rem);
  }

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

  .page-news__section-title {
    font-size: 1.75rem;
  }

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

  .page-news__card-image {
    max-width: 100%;
    height: auto;
  }

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

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

  /* Mobile content area image constraint */
  .page-news img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

  .page-news__hero-cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

  .page-news__section-title {
    font-size: 1.5rem;
  }
}