.page-news {
  background-color: #140C0C;
  color: #FFF1E8;
  padding-top: 10px; /* Small top padding for non-homepage hero/title section */
  padding-bottom: 40px;
  overflow-x: hidden;
}

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

.page-news__hero-section {
  padding: 40px 0 60px 0;
  text-align: center;
}

.page-news__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F3C54D;
  margin-bottom: 20px;
  /* Using clamp for responsive font size, but prioritizing font-weight/line-height */
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

.page-news__description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #FFF1E8;
}

.page-news__articles-section {
  padding: 60px 0;
}

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

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #E53030;
  border-radius: 2px;
}

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

.page-news__article-card {
  background-color: #2A1212;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #6A1E1E;
}

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

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

.page-news__article-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency, object-fit will handle aspect ratio */
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no grayscale */
  border-bottom: 1px solid #6A1E1E;
}

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

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

.page-news__article-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #FFF1E8;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-news__article-excerpt {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF1E8;
  margin-bottom: 15px;
}

.page-news__read-more {
  display: inline-block;
  color: #FFB04A;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-news__cta-section {
  background-color: #2A1212;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #6A1E1E;
}

.page-news__cta-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: bold;
  color: #F3C54D;
  margin-bottom: 25px;
}

.page-news__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #FFF1E8;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-news__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF1E8;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  border: none;
  cursor: pointer;
}

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

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

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

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

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

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

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

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

  .page-news__cta-section {
    padding: 60px 0;
  }

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

  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news__btn {
    width: 80%;
    max-width: 300px;
  }

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

@media (max-width: 549px) {
  .page-news__articles-section {
    padding: 40px 0;
  }
  .page-news__article-image {
    height: 180px;
  }
}