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

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

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  margin-bottom: 20px;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-news__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #FFF5E1;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .page-news__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
}

@media (max-width: 767px) {
  .page-news__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

.page-news__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-news__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544;
}

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

.page-news__section-title {
  font-size: 2.5em;
  color: #FFF5E1;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

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

.page-news__news-card {
  background-color: #D32F2F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #7A0E0E;
}

.page-news__news-card:hover {
  transform: translateY(-5px);
}

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

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

.page-news__card-date {
  font-size: 0.9em;
  color: #FFCC66;
  margin-bottom: 10px;
  display: block;
}

.page-news__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

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

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

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

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

.page-news__view-all-button {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544;
}

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

.page-news__categories {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-news__category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-news__category-item {
  display: inline-block;
  padding: 10px 20px;
  background-color: #E53935;
  border-radius: 25px;
  color: #FFF5E1;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid #7A0E0E;
}

.page-news__category-item:hover {
  background-color: #C91F17;
  transform: translateY(-2px);
}

.page-news__cta-section-bottom {
  background-color: #7A0E0E; /* Deep Red for a strong call to action */
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-news__cta-section-bottom .page-news__section-title {
  padding-top: 0;
  margin-bottom: 20px;
}

.page-news__cta-section-bottom .page-news__description {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.2em;
}

.page-news__cta-button--large {
  padding: 15px 45px;
  font-size: 1.1em;
}

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

  .page-news__hero-image-wrapper {
    max-height: 400px;
  }

  .page-news__main-title {
    font-size: 2.2em;
  }

  .page-news__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-news__section-title {
    font-size: 2em;
    padding-top: 40px;
    margin-bottom: 30px;
  }

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

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

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

  .page-news__card-excerpt {
    font-size: 0.95em;
  }

  .page-news__category-item {
    padding: 8px 15px;
    font-size: 0.9em;
  }

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

  .page-news__cta-section-bottom .page-news__description {
    font-size: 1em;
  }

  .page-news__cta-button--large {
    padding: 12px 35px;
    font-size: 1em;
  }

  /* Ensure content images do not overflow */
  .page-news img {
    max-width: 100%;
    height: auto;
  }
}