/* style/news-industry-updates.css */
.page-news-industry-updates {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #0d0d0d, so text must be light */
  background-color: #0d0d0d;
}

.page-news-industry-updates__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #1a1a1a; /* Slightly lighter dark background for hero */
  text-align: center;
}

.page-news-industry-updates__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-news-industry-updates__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-news-industry-updates__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-news-industry-updates__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-news-industry-updates__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-news-industry-updates__btn-primary,
.page-news-industry-updates__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-news-industry-updates__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-news-industry-updates__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

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

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

.page-news-industry-updates__section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.page-news-industry-updates__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.page-news-industry-updates__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-news-industry-updates__section-title--light {
  color: #26A9E0;
}

.page-news-industry-updates__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-news-industry-updates__text-block--light {
  color: #f0f0f0;
}

.page-news-industry-updates__light-bg {
  background-color: #1a1a1a; /* Lighter dark background for contrast */
  color: #f0f0f0;
}

.page-news-industry-updates__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-news-industry-updates__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news-industry-updates__image--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px; /* Constrain content images */
}

.page-news-industry-updates a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-updates a:hover {
  color: #1e87b0;
  text-decoration: underline;
}

/* FAQ Section */
.page-news-industry-updates__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-news-industry-updates__faq-item {
  background-color: #1a1a1a;
  border: 1px solid #26A9E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: #26A9E0;
  border-bottom: 1px solid #1e87b0;
}

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

.page-news-industry-updates__faq-question::marker {
  display: none;
}

.page-news-industry-updates__faq-item summary {
  list-style: none;
}

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

.page-news-industry-updates__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-news-industry-updates__faq-item[open] .page-news-industry-updates__faq-toggle {
  transform: rotate(45deg);
}

.page-news-industry-updates__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #f0f0f0;
  background-color: #1a1a1a;
  border-top: 1px solid #333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-news-industry-updates {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news-industry-updates__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-news-industry-updates__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-news-industry-updates__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-news-industry-updates__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-news-industry-updates__btn-primary,
  .page-news-industry-updates__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news-industry-updates__section {
    padding: 40px 15px;
  }

  .page-news-industry-updates__content-area {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news-industry-updates__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-news-industry-updates__text-block {
    font-size: 1rem;
  }

  .page-news-industry-updates__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-news-industry-updates__faq-item {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-news-industry-updates__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-news-industry-updates__faq-answer {
    padding: 15px;
  }
}