/* style/news-industry-highlights.css */
.page-news-industry-highlights {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #0a0a0a (dark), so use light text */
  background-color: #0a0a0a;
}

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

/* Hero Section */
.page-news-industry-highlights__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-news-industry-highlights__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

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

.page-news-industry-highlights__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #f0f0f0;
}

/* General Section Styling */
.page-news-industry-highlights__section {
  padding: 60px 0;
}

.page-news-industry-highlights__content-area {
  background-color: #1a1a1a; /* Slightly lighter dark background for content contrast */
  color: #ffffff;
}

.page-news-industry-highlights__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand primary color for titles */
}

.page-news-industry-highlights__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.page-news-industry-highlights__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-news-industry-highlights__text-block a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-news-industry-highlights__text-block a:hover {
  color: #4ac0f7;
}

.page-news-industry-highlights__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-news-industry-highlights__list-item {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-news-industry-highlights__list-item strong {
  color: #ffffff;
}

.page-news-industry-highlights__list-item a {
  color: #26A9E0;
  text-decoration: none;
}

.page-news-industry-highlights__list-item a:hover {
  text-decoration: underline;
}

.page-news-industry-highlights__image-fullwidth {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Buttons */
.page-news-industry-highlights__btn-primary,
.page-news-industry-highlights__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-industry-highlights__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-news-industry-highlights__btn-primary:hover {
  background-color: #4ac0f7;
  border-color: #4ac0f7;
}

.page-news-industry-highlights__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-news-industry-highlights__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-news-industry-highlights__button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Dark Background Sections */
.page-news-industry-highlights__dark-bg {
  background-color: #26A9E0; /* Use brand primary color for dark sections */
  color: #ffffff;
}

.page-news-industry-highlights__dark-bg .page-news-industry-highlights__section-title {
  color: #ffffff;
}

/* CTA Section */
.page-news-industry-highlights__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-news-industry-highlights__cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.page-news-industry-highlights__cta-description a {
  color: #ffffff;
  text-decoration: underline;
}

.page-news-industry-highlights__cta-description a:hover {
  color: #d0d0d0;
}

/* FAQ Section */
.page-news-industry-highlights__faq-list {
  margin-top: 40px;
}

.page-news-industry-highlights__faq-item {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-news-industry-highlights__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #222222;
  color: #ffffff;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-news-industry-highlights__faq-question::-webkit-details-marker {
  display: none;
}

.page-news-industry-highlights__faq-question:hover {
  background-color: #26A9E0;
}

.page-news-industry-highlights__faq-qtext {
  flex-grow: 1;
}

.page-news-industry-highlights__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-news-industry-highlights__faq-answer {
  padding: 0 25px 15px;
  font-size: 1.1em;
  color: #f0f0f0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-news-industry-highlights__faq-answer p {
  margin: 0;
  padding-top: 15px;
}

.page-news-industry-highlights__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

/* Details open state for FAQ */
details.page-news-industry-highlights__faq-item[open] .page-news-industry-highlights__faq-question {
  background-color: #26A9E0;
}

details.page-news-industry-highlights__faq-item[open] .page-news-industry-highlights__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  padding-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-highlights__hero-title {
    font-size: 2.8em;
  }

  .page-news-industry-highlights__section-title {
    font-size: 2em;
  }

  .page-news-industry-highlights__sub-title {
    font-size: 1.5em;
  }
}

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

  .page-news-industry-highlights__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-news-industry-highlights__hero-title {
    font-size: 2em;
  }

  .page-news-industry-highlights__hero-description {
    font-size: 1em;
  }

  .page-news-industry-highlights__section {
    padding: 40px 0;
  }

  .page-news-industry-highlights__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-news-industry-highlights__sub-title {
    font-size: 1.3em;
  }

  .page-news-industry-highlights__text-block,
  .page-news-industry-highlights__list-item,
  .page-news-industry-highlights__faq-answer p {
    font-size: 1em;
  }

  .page-news-industry-highlights__image-fullwidth {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Buttons */
  .page-news-industry-highlights__btn-primary,
  .page-news-industry-highlights__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0 !important; /* Remove margin-left for stacking */
  }

  .page-news-industry-highlights__button-group {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
    padding: 0 15px;
  }

  .page-news-industry-highlights__cta-title {
    font-size: 2em;
  }

  .page-news-industry-highlights__cta-description {
    font-size: 1em;
  }

  .page-news-industry-highlights__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-news-industry-highlights__faq-answer {
    padding: 0 20px 10px;
  }

  .page-news-industry-highlights__container {
    padding: 0 15px;
  }
  
  .page-news-industry-highlights__content-area,
  .page-news-industry-highlights__dark-bg,
  .page-news-industry-highlights__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Ensure all img tags within content sections are responsive */
  .page-news-industry-highlights__content-area img,
  .page-news-industry-highlights__dark-bg img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Specific padding for sections if needed to avoid double padding */
  .page-news-industry-highlights__section {
    padding-left: 0;
    padding-right: 0;
  }
}