.page-news__hero-section {
  background-color: #0A0A0A;
  color: #FFF6D6;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-news__hero-content {
  max-width: 960px;
  padding: 10px 20px 0;
}

.page-news__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #F2C14E, #FFD36B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

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

.page-news__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-news__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-news__articles-section {
  background-color: #0A0A0A;
  padding: 60px 20px;
  text-align: center;
  color: #FFF6D6;
}

.page-news__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #FFD36B, #F2C14E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-news__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.page-news__article-card {
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(242, 193, 78, 0.2);
}

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

.page-news__article-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #3A2A12;
}

.page-news__article-content {
  padding: 25px;
  text-align: left;
}

.page-news__article-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFF6D6;
  line-height: 1.4;
}

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

.page-news__article-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  opacity: 0.8;
}

.page-news__load-more {
  margin-top: 40px;
}

.page-news__load-more-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-news__load-more-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

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

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

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

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

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

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

  .page-news__articles-section {
    padding: 40px 15px;
  }

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

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

  .page-news__hero-content {
    padding: 10px 10px 0;
  }

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

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

  .page-news__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }

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

  .page-news__article-card {
    margin-bottom: 20px;
  }

  .page-news__article-title {
    font-size: 1.1rem;
  }

  .page-news__article-excerpt {
    font-size: 0.9rem;
  }

  .page-news__load-more-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .page-news__articles-section img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content images are not too small on mobile */
@media (max-width: 768px) {
  .page-news__articles-section img, .page-news__hero-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}