/* style/news-latest-industry-updates.css */
.page-news-latest-industry-updates {
  background-color: #08160F;
  color: #F2FFF6; /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-news-latest-industry-updates__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-news-latest-industry-updates__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-news-latest-industry-updates__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news-latest-industry-updates__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-news-latest-industry-updates__main-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2FFF6;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-news-latest-industry-updates__description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

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

.page-news-latest-industry-updates__btn-primary,
.page-news-latest-industry-updates__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-news-latest-industry-updates__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-news-latest-industry-updates__btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

.page-news-latest-industry-updates__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: rgba(42, 209, 111, 0.1);
}

.page-news-latest-industry-updates__section {
  padding: 60px 0;
}

.page-news-latest-industry-updates__dark-section {
  background-color: #11271B;
}

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

.page-news-latest-industry-updates__section-title {
  font-size: 2em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-news-latest-industry-updates__sub-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news-latest-industry-updates__text-block p {
  margin-bottom: 1em;
  color: #F2FFF6;
}

.page-news-latest-industry-updates__text-block p a {
  color: #57E38D; /* Glow color for links */
  text-decoration: underline;
}

.page-news-latest-industry-updates__text-block p a:hover {
  color: #2AD16F;
}

.page-news-latest-industry-updates__grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-news-latest-industry-updates__grid--reverse {
  flex-direction: row-reverse;
}

.page-news-latest-industry-updates__grid-item {
  flex: 1;
}

.page-news-latest-industry-updates__grid-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-news-latest-industry-updates__grid-item .page-news-latest-industry-updates__btn-primary,
.page-news-latest-industry-updates__grid-item .page-news-latest-industry-updates__btn-secondary {
  margin-top: 20px;
  margin-right: 10px;
}

.page-news-latest-industry-updates__faq-section {
  padding-bottom: 80px;
}

.page-news-latest-industry-updates__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-news-latest-industry-updates__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news-latest-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-news-latest-industry-updates__faq-question:hover {
  background-color: #0A4B2C;
}

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

.page-news-latest-industry-updates__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-news-latest-industry-updates__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
}

.page-news-latest-industry-updates__faq-answer {
  padding: 0 25px 18px 25px;
  color: #A7D9B8;
  font-size: 1em;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .page-news-latest-industry-updates__grid {
    flex-direction: column;
  }

  .page-news-latest-industry-updates__grid--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-news-latest-industry-updates__main-title {
    font-size: 2em;
  }

  .page-news-latest-industry-updates__section-title {
    font-size: 1.8em;
  }

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

  .page-news-latest-industry-updates__hero-section {
    padding-bottom: 40px;
  }

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

  .page-news-latest-industry-updates__container {
    padding: 0 15px;
  }

  /* Images responsive */
  .page-news-latest-industry-updates img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Image containers responsive */
  .page-news-latest-industry-updates__grid-item,
  .page-news-latest-industry-updates__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-news-latest-industry-updates__cta-button,
  .page-news-latest-industry-updates__btn-primary,
  .page-news-latest-industry-updates__btn-secondary,
  .page-news-latest-industry-updates a[class*="button"],
  .page-news-latest-industry-updates a[class*="btn"] {
    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-right: 0 !important; /* Remove gap between buttons if stacked */
  }

  .page-news-latest-industry-updates__cta-buttons,
  .page-news-latest-industry-updates__button-group,
  .page-news-latest-industry-updates__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px !important;
    overflow: hidden !important;
  }

  .page-news-latest-industry-updates__faq-question {
    padding: 15px 20px;
  }

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

  .page-news-latest-industry-updates__hero-content {
    padding: 0 15px;
  }
}