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

.page-news-industry-updates__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, so small top padding here */
  overflow: hidden;
}

.page-news-industry-updates__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px;
}

.page-news-industry-updates__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

.page-news-industry-updates__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news-industry-updates__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-news-industry-updates__section-title {
  font-size: 2.5rem;
  color: #57E38D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-news-industry-updates__sub-title {
  font-size: 1.8rem;
  color: #F2FFF6; /* Text Main */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-industry-updates__text-block {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-news-industry-updates__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main */
}

.page-news-industry-updates__list li {
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-news-industry-updates__article-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.page-news-industry-updates__article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-news-industry-updates__article-content {
  padding: 25px;
}

.page-news-industry-updates__article-title {
  font-size: 1.5rem;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news-industry-updates__article-meta {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-news-industry-updates__read-more-link {
  display: inline-block;
  color: #2AD16F; /* Lighter green from button gradient */
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.page-news-industry-updates__read-more-link:hover {
  text-decoration: underline;
  color: #57E38D; /* Glow */
}

.page-news-industry-updates__btn-primary,
.page-news-industry-updates__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-news-industry-updates__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  opacity: 0.9;
}

.page-news-industry-updates__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter green from button gradient */
  border: 2px solid #2AD16F;
}

.page-news-industry-updates__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F; /* Background */
}

.page-news-industry-updates__cta-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-news-industry-updates__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

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

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

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

.page-news-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-news-industry-updates__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-news-industry-updates__faq-toggle {
  font-size: 1.5rem;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-news-industry-updates__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-news-industry-updates__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 20px;
  text-align: center;
}

.page-news-industry-updates__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-news-industry-updates__cta-title {
  font-size: 2.8rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-industry-updates__cta-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news-industry-updates__hero-content {
    max-width: 768px;
  }
  .page-news-industry-updates__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-news-industry-updates__section-title {
    font-size: 2rem;
  }
  .page-news-industry-updates__cta-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-news-industry-updates__hero-section,
  .page-news-industry-updates__content-area,
  .page-news-industry-updates__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-news-industry-updates__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news-industry-updates__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

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

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

  .page-news-industry-updates__sub-title {
    font-size: 1.5rem;
  }

  .page-news-industry-updates__article-card {
    flex-direction: column;
  }

  .page-news-industry-updates__article-image {
    height: 200px;
  }

  .page-news-industry-updates__article-title {
    font-size: 1.3rem;
  }

  .page-news-industry-updates__cta-block {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .page-news-industry-updates__btn-primary,
  .page-news-industry-updates__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;
  }

  .page-news-industry-updates__cta-title {
    font-size: 1.8rem;
  }

  .page-news-industry-updates__cta-description {
    font-size: 1rem;
  }

  .page-news-industry-updates img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news-industry-updates__section,
  .page-news-industry-updates__card,
  .page-news-industry-updates__container,
  .page-news-industry-updates__cta-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

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