.page-news {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Dark background #121212, so light text */
  background-color: #121212; /* Ensure consistency with body background */
}

.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #B22222, #FFD700);
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

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

.page-news__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-news__hero-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-news__hero-description a:hover {
  text-decoration: underline;
}

.page-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-news__section {
  padding: 60px 0;
}

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

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

.page-news__section-description {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-news__section-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-news__section-description a:hover {
  text-decoration: underline;
}

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

.page-news__article-card,
.page-news__guide-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

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

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

.page-news__guide-card .page-news__card-image {
  height: 250px;
}

.page-news__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.page-news__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-news__card-title a:hover {
  text-decoration: underline;
}

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

.page-news__card-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-news__card-text a:hover {
  text-decoration: underline;
}

.page-news__read-more-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
  margin-top: auto;
}

.page-news__read-more-link:hover {
  text-decoration: underline;
}

.page-news__industry-insights {
  background-color: #B22222;
  color: #ffffff;
}

.page-news__industry-insights .page-news__section-title {
  color: #FFD700;
}

.page-news__industry-insights .page-news__section-description {
  color: #f0f0f0;
}

.page-news__industry-insights .page-news__section-description a {
  color: #FFD700;
}

.page-news__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-news__video-caption {
  text-align: center;
  color: #f0f0f0;
  margin-top: 15px;
  font-style: italic;
}

.page-news__news-categories {
  background-color: #1a1a1a;
}

.page-news__category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-news__category-item {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-news__category-item:hover {
  background-color: #FFD700;
  color: #121212;
}

.page-news__faq-section {
  background-color: #f0f0f0;
  color: #333333;
}

.page-news__faq-section .page-news__section-title {
  color: #B22222;
}

.page-news__faq-section .page-news__section-description {
  color: #555555;
}

.page-news__faq-section .page-news__section-description a {
  color: #B22222;
}

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

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

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #FFD700;
  color: #121212;
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-news__faq-question h3 {
  margin: 0;
  color: #121212;
  font-size: 1.1em;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #121212;
}

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

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #333333;
  line-height: 1.6;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 20px;
}

.page-news__faq-answer p {
  margin: 0;
  color: #333333;
}

.page-news__faq-answer a {
  color: #B22222;
  text-decoration: none;
  font-weight: bold;
}

.page-news__faq-answer a:hover {
  text-decoration: underline;
}

.page-news__cta-section {
  background-color: #B22222;
  padding: 80px 20px;
  text-align: center;
}

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

.page-news__cta-section .page-news__section-title {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-news__cta-section .page-news__section-description {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-news__cta-section .page-news__section-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-news__cta-section .page-news__section-description a:hover {
  text-decoration: underline;
}

/* Buttons */
.page-news__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #121212;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__hero-description {
    font-size: 1.1em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__cta-section .page-news__section-title {
    font-size: 2.2em;
  }
  .page-news__article-grid, .page-news__guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

  .page-news__btn-primary {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news__section {
    padding: 40px 0;
  }

  .page-news__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-news__section-title {
    font-size: 1.8em;
  }

  .page-news__section-description {
    font-size: 0.95em;
  }

  .page-news__article-grid, .page-news__guide-grid {
    grid-template-columns: 1fr;
  }

  .page-news__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__video-wrapper {
    padding-bottom: 56.25%; /* Maintain aspect ratio */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__category-item {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
  }

  .page-news__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-news__faq-answer {
    padding: 0 15px;
  }

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

  .page-news__cta-section .page-news__section-title {
    font-size: 2em;
  }

  .page-news__cta-section .page-news__section-description {
    font-size: 1em;
  }
}