.page-news {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
}

.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  text-align: center;
}

.page-news__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.page-news__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no CSS filter changes image color */
}

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

.page-news__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF6D6;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4vw, 3rem); /* Responsive font size */
}

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

.page-news__cta-button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text for contrast on bright button */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-news__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 211, 107, 0.3);
}

.page-news__articles-section {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

.page-news__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD36B;
  margin: 15px auto 0 auto;
  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: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #3A2A12;
}

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

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

.page-news__article-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no CSS filter changes image color */
  min-width: 200px; /* Minimum image width */
  min-height: 200px; /* Minimum image height */
}

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

.page-news__card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__card-meta {
  font-size: 0.9rem;
  color: #FFD36B;
  margin-bottom: 15px;
}

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

.page-news__read-more {
  color: #FFD36B;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.page-news__read-more::after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.2s ease;
}

.page-news__article-link:hover .page-news__read-more::after {
  margin-left: 10px;
}

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

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

.page-news__cta-section {
  background-color: #111111;
  padding: 60px 15px;
  text-align: center;
  border-top: 1px solid #3A2A12;
}

.page-news__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-news__cta-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-news__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 30px;
}

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

.page-news__cta-button--secondary {
  background: #3A2A12;
  color: #FFF6D6;
  border: 1px solid #FFD36B;
}

.page-news__cta-button--secondary:hover {
  background: #FFD36B;
  color: #0A0A0A;
  box-shadow: 0 6px 12px rgba(255, 211, 107, 0.3);
}

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

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

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

  .page-news__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

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

  .page-news__article-card img {
    max-width: 100%;
    height: auto;
  }

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

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

  .page-news__cta-title {
    font-size: 1.8rem;
  }

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

  .page-news__cta-button {
    width: 100%;
    max-width: 250px;
  }

  .page-news__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 549px) {
  .page-news {
    padding: 0 0;
  }
  .page-news__hero-section,
  .page-news__articles-section,
  .page-news__cta-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-news__main-title {
    font-size: clamp(1.2rem, 7vw, 2rem);
  }
  .page-news__section-title {
    font-size: 1.8rem;
  }
  .page-news__hero-banner img {
    aspect-ratio: 4/3; /* More vertical for small screens */
  }
}