.page-news__hero-section {
  position: relative;
  padding: 120px 20px 80px;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px);
}

.page-news__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.page-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-news__section {
  padding: 60px 0;
  color: #ffffff; /* Default for dark body background */
}

.page-news__light-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-news__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-news__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-news__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-news__articles-grid, .page-news__promotions-grid, .page-news__updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-news__article-card, .page-news__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__article-card:hover, .page-news__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-news__article-image, .page-news__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-news__article-content, .page-news__promotion-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__article-title, .page-news__promotion-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
  line-height: 1.3;
}

.page-news__article-title a, .page-news__promotion-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover, .page-news__promotion-title a:hover {
  color: #ffffff;
}

.page-news__article-meta {
  font-size: 0.9em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-news__article-text, .page-news__promotion-text {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  margin-top: auto;
}

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

.page-news__arrow {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-news__read-more:hover .page-news__arrow {
  transform: translateX(5px);
}

.page-news__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-news__content-block {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
}

.page-news__block-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-news__content-block p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-news__content-block ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-news__content-block li {
  margin-bottom: 8px;
}

.page-news__update-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-news__update-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-news__update-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__update-text {
  font-size: 0.95em;
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__faq-section {
  padding: 80px 0;
}

.page-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-news__faq-item:last-child {
  border-bottom: none;
}

.page-news__faq-question {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-news__faq-question h3 {
  font-size: 1.25em;
  color: #FFD700;
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.page-news__faq-toggle {
  font-size: 1.8em;
  color: #FFD700;
  margin-left: 20px;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-news__faq-item.active .page-news__faq-toggle {
  transform: rotate(45deg);
}

.page-news__faq-answer {
  background-color: rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px 30px;
}

.page-news__faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.page-news__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

/* Buttons */
.page-news__btn-primary, .page-news__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1em;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
}

.page-news__btn-primary {
  background-color: #FFD700;
  color: #121212;
  border: 2px solid #FFD700;
}

.page-news__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000000;
}

.page-news__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-news__btn-secondary:hover {
  background-color: #FFD700;
  color: #121212;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 3em;
  }
  .page-news__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 100px 15px 60px;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news__hero-title {
    font-size: 2.5em;
  }
  .page-news__hero-description {
    font-size: 1.1em;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__btn-primary, .page-news__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }
  .page-news__section {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-news__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-news__articles-grid, .page-news__promotions-grid, .page-news__updates-grid, .page-news__content-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-news__article-card, .page-news__promotion-card, .page-news__update-item, .page-news__content-block {
    margin: 0 15px;
  }
  .page-news__article-image, .page-news__promotion-image {
    height: 180px;
  }
  .page-news__article-title, .page-news__promotion-title {
    font-size: 1.3em;
  }
  .page-news__update-title {
    font-size: 1.2em;
  }
  .page-news__faq-question {
    padding: 15px 20px;
  }
  .page-news__faq-question h3 {
    font-size: 1.1em;
  }
  .page-news__faq-answer {
    padding: 15px 20px;
  }
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__section,
  .page-news__card,
  .page-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news__faq-list {
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 2em;
  }
  .page-news__hero-description {
    font-size: 0.95em;
  }
  .page-news__section-title {
    font-size: 1.6em;
  }
  .page-news__btn-primary, .page-news__btn-secondary {
    font-size: 1em;
  }
  .page-news__update-icon {
    width: 80px;
    height: 80px;
  }
}