.page-news {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8; /* Light background for the news page */
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* HERO Banner Section */
.page-news__hero-banner {
  background-color: #000000; /* Auxiliary color for hero background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
}

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

.page-news__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Main brand color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-news__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  color: #f0f0f0; /* Slightly off-white for description */
  margin-bottom: 0;
}

/* Articles Section */
.page-news__articles-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-news__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

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

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

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

.page-news__article-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.page-news__article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

.page-news__read-more {
  display: inline-block;
  color: #FFD700; /* Main brand color for read more link */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Pagination */
.page-news__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}

.page-news__pagination-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #000000;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 500;
}

.page-news__pagination-link:hover:not(.page-news__pagination-link--disabled):not(.active) {
  background-color: #e0e0e0;
  color: #000000;
}

.page-news__pagination-link.active {
  background-color: #FFD700; /* Main brand color for active */
  color: #000000;
  font-weight: 700;
}

.page-news__pagination-link--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* FAQ Section */
.page-news__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-news__faq-main-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: #f5f5f5;
  border-color: #d0d0d0;
}

.page-news__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-news__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Main brand color for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-news__faq-item.active .page-news__faq-toggle {
  color: #000000;
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #555555;
  line-height: 1.6;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 2000px !important; /* Use !important and large value to ensure expansion */
  padding: 20px 25px !important;
  opacity: 1;
  background-color: #fdfdfd;
  border-top: 1px solid #eee;
  border-radius: 0 0 8px 8px;
}

.page-news__faq-answer p {
  margin: 0;
  padding: 0;
}

/* General Image Styling */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .page-news__hero-banner {
    padding: 60px 0;
  }

  .page-news__hero-title {
    font-size: 2.8em;
  }

  .page-news__hero-description {
    font-size: 1.1em;
  }

  .page-news__section-title,
  .page-news__faq-main-title {
    font-size: 2em;
  }

  .page-news__article-grid {
    gap: 25px;
  }

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

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

@media (max-width: 768px) {
  /* HERO Banner Section */
  .page-news__hero-banner {
    padding: 40px 15px !important;
    padding-top: var(--header-offset, 80px) !important; /* Adjust for mobile fixed header */
  }

  .page-news__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

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

  /* Articles Section */
  .page-news__articles-section {
    padding: 40px 0;
  }

  .page-news__container {
    padding: 0 15px;
  }

  .page-news__section-title,
  .page-news__faq-main-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

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

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

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

  .page-news__article-excerpt {
    font-size: 0.95em;
  }

  /* Pagination */
  .page-news__pagination {
    margin-top: 40px;
    gap: 8px;
  }

  .page-news__pagination-link {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 0.9em;
  }

  /* FAQ Section */
  .page-news__faq-section {
    padding: 40px 0;
  }

  .page-news__faq-list {
    padding: 0 10px;
  }

  .page-news__faq-item {
    margin-bottom: 10px;
  }

  .page-news__faq-question {
    padding: 15px 20px;
  }

  .page-news__faq-question h3 {
    font-size: 1em;
  }

  .page-news__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
    margin-left: 10px;
  }

  .page-news__faq-answer {
    padding: 0 20px;
    font-size: 0.95em;
  }

  .page-news__faq-item.active .page-news__faq-answer {
    padding: 15px 20px !important;
  }

  /* General Image & Container Responsive */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__hero-banner,
  .page-news__articles-section,
  .page-news__faq-section,
  .page-news__article-card,
  .page-news__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Buttons Responsive */
  .page-news a[class*="button"],
  .page-news a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    flex-wrap: wrap !important;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Override for specific elements if needed (e.g., small icons, but none exist here) */
}

/* Contrast Fixes (if needed) */
.page-news__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-news__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}