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

.page-news__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
  background-color: #0a0909; /* Dark background for hero */
}

.page-news__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-news__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* 1920x600 aspect ratio */
  object-fit: cover;
  object-position: center;
}

.page-news__hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 40px;
  text-align: center;
  color: #FFFFFF;
}

.page-news__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for news page, slightly smaller than homepage H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #d6d604; /* Yellow-green accent for H1 */
}

.page-news__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-news__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

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

.page-news__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #E53935; /* Main red color for section titles */
}

.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: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

.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-wrapper {
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.page-news__card-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3; /* 800x600 aspect ratio */
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: none; /* Ensure no grayscale */
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-news__news-card:hover .page-news__card-image-wrapper img {
  transform: scale(1.05);
}

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

.page-news__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E53935; /* Main red color for card titles */
  line-height: 1.4;
}

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

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

.page-news__read-more {
  color: #FF5A4F; /* Auxiliary red for read more */
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-right: 15px;
}

.page-news__read-more::after {
  content: '»';
  position: absolute;
  right: 0;
  top: 0;
  transition: right 0.3s ease;
}

.page-news__news-card:hover .page-news__read-more::after {
  right: -5px;
}

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

.page-news__view-all-button {
  padding: 15px 30px;
  font-size: 1.1rem;
}

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

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

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

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

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

  .page-news__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    margin-bottom: 30px;
  }

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

  .page-news__card-date, .page-news__card-excerpt {
    font-size: 0.95rem;
  }

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

  .page-news__card-image-wrapper img {
    max-width: 100%;
    height: auto; /* Ensure responsiveness */
  }
}

@media (max-width: 549px) {
  .page-news__main-title {
    font-size: clamp(1.3rem, 8vw, 2rem);
  }
  .page-news__description {
    font-size: 0.9rem;
  }
  .page-news__section-title {
    font-size: clamp(1.2rem, 7vw, 1.6rem);
  }
  .page-news__card-title {
    font-size: 1.1rem;
  }
  .page-news__cta-button {
    font-size: 0.85rem;
  }
}