.page-news__hero-section {
  position: relative;
  background-color: #0A0A0A;
  padding-bottom: 20px;
  padding-top: 10px; /* Small top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5;
  object-fit: cover;
  max-width: 100%;
}

.page-news__hero-content {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 0 15px;
  color: #FFF6D6;
}

.page-news__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #F2C14E, #FFD36B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

.page-news__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-news__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-news__button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-news__latest-articles {
  background-color: #0A0A0A;
  padding: 50px 0;
}

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

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

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

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

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

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

.page-news__article-image {
  width: 100%;
  height: 225px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

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

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

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

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

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

.page-news__button--secondary {
  background: none;
  border: 1px solid #FFD36B;
  color: #FFD36B;
}

.page-news__button--secondary:hover {
  background-color: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
}

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

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

.page-news__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 20px;
}

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

.page-news__faq-section {
  background-color: #0A0A0A;
  padding: 50px 0 80px;
}

.page-news__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-news__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news__faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #111111;
  color: #FFF6D6;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.page-news__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

.page-news__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-news__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-news__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content height */
  padding: 15px 25px 25px;
}

.page-news__faq-answer p {
  color: #FFF6D6;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-news__hero-image {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-top: 10px;
  }
  .page-news__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-news__article-grid {
    grid-template-columns: 1fr;
  }
  .page-news__article-image {
    height: 200px; /* Ensure minimum size */
  }
  .page-news__latest-articles, .page-news__cta-section, .page-news__faq-section {
    padding: 30px 0;
  }
  .page-news__section-title, .page-news__cta-title {
    margin-bottom: 30px;
  }
  .page-news__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }
  .page-news__faq-answer.active {
    padding: 10px 20px 20px;
  }
  .page-news__container {
    padding: 0 12px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .page-news__latest-articles img, .page-news__article-card img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-news__main-title {
    font-size: 1.8rem;
  }
  .page-news__hero-description {
    font-size: 1rem;
  }
  .page-news__article-title {
    font-size: 1.15rem;
  }
  .page-news__faq-question {
    font-size: 1rem;
  }
  .page-news__button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}