/* style/news-latest-industry-updates.css */
:root {
  --hl88-primary-color: #11A84E;
  --hl88-secondary-color: #22C768;
  --hl88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --hl88-card-bg: #11271B;
  --hl88-background: #08160F;
  --hl88-text-main: #F2FFF6;
  --hl88-text-secondary: #A7D9B8;
  --hl88-border-color: #2E7A4E;
  --hl88-glow-color: #57E38D;
  --hl88-gold-color: #F2C14E;
  --hl88-divider-color: #1E3A2A;
  --hl88-deep-green-color: #0A4B2C;
}

.page-news-latest-industry-updates {
  background-color: var(--hl88-background);
  color: var(--hl88-text-main);
}

.page-news-latest-industry-updates__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  text-align: center;
  background-color: var(--hl88-deep-green-color);
  overflow: hidden;
}

.page-news-latest-industry-updates__hero-image-container {
  width: 100%;
  max-height: 70vh;
  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-top: 40px;
  padding: 0 20px;
  z-index: 1;
}

.page-news-latest-industry-updates__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--hl88-text-main);
  margin-bottom: 20px;
}

.page-news-latest-industry-updates__hero-description {
  font-size: 1.15em;
  line-height: 1.6;
  color: var(--hl88-text-secondary);
  margin-bottom: 30px;
}

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

.page-news-latest-industry-updates__btn-primary,
.page-news-latest-industry-updates__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-news-latest-industry-updates__btn-primary {
  background: var(--hl88-button-gradient);
  color: #ffffff; /* Explicitly white for contrast */
  border: none;
}

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

.page-news-latest-industry-updates__btn-secondary {
  background: transparent;
  color: var(--hl88-primary-color);
  border: 2px solid var(--hl88-primary-color);
}

.page-news-latest-industry-updates__btn-secondary:hover {
  background: var(--hl88-primary-color);
  color: #ffffff;
}

.page-news-latest-industry-updates__section {
  padding: 60px 20px;
  text-align: center;
}

.page-news-latest-industry-updates__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
  background-color: var(--hl88-background);
  color: var(--hl88-text-main);
}

.page-news-latest-industry-updates__dark-section {
  background-color: var(--hl88-deep-green-color);
  color: var(--hl88-text-main);
}

.page-news-latest-industry-updates__light-bg {
  background-color: var(--hl88-background);
  color: var(--hl88-text-main);
}

.page-news-latest-industry-updates__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--hl88-text-main);
}

.page-news-latest-industry-updates__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--hl88-text-main);
}

.page-news-latest-industry-updates__content-area p,
.page-news-latest-industry-updates__content-area li {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--hl88-text-secondary);
}

.page-news-latest-industry-updates__content-area a {
  color: var(--hl88-primary-color);
  text-decoration: underline;
}

.page-news-latest-industry-updates__content-area a:hover {
  color: var(--hl88-gold-color);
}

.page-news-latest-industry-updates__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-news-latest-industry-updates__card {
  background-color: var(--hl88-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: var(--hl88-text-main);
}

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

.page-news-latest-industry-updates__card-title {
  font-size: 1.4em;
  font-weight: 600;
  padding: 15px 20px 10px;
  color: var(--hl88-text-main);
}

.page-news-latest-industry-updates__card-text {
  font-size: 1em;
  line-height: 1.6;
  padding: 0 20px 20px;
  color: var(--hl88-text-secondary);
}

.page-news-latest-industry-updates__image-full-width {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-latest-industry-updates__cta-section {
  background-color: var(--hl88-primary-color);
  color: #ffffff;
  padding: 80px 20px;
}

.page-news-latest-industry-updates__cta-section .page-news-latest-industry-updates__section-title {
  color: #ffffff;
}

.page-news-latest-industry-updates__cta-text {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ffffff;
}

/* FAQ Section */
.page-news-latest-industry-updates__faq-section {
  background-color: var(--hl88-background);
  color: var(--hl88-text-main);
  padding-bottom: 80px;
}

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

.page-news-latest-industry-updates__faq-item {
  background-color: var(--hl88-card-bg);
  border: 1px solid var(--hl88-divider-color);
  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.15em;
  font-weight: 600;
  cursor: pointer;
  color: var(--hl88-text-main);
  background-color: var(--hl88-card-bg);
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-news-latest-industry-updates__faq-item[open] > .page-news-latest-industry-updates__faq-question {
  background-color: var(--hl88-deep-green-color);
}

.page-news-latest-industry-updates__faq-question:hover {
  background-color: var(--hl88-deep-green-color);
}

.page-news-latest-industry-updates__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-news-latest-industry-updates__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--hl88-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-latest-industry-updates__main-title {
    font-size: 2.8em;
  }
  .page-news-latest-industry-updates__section-title {
    font-size: 2em;
  }
  .page-news-latest-industry-updates__sub-title {
    font-size: 1.6em;
  }
  .page-news-latest-industry-updates__content-area p,
  .page-news-latest-industry-updates__content-area li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-news-latest-industry-updates__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-news-latest-industry-updates__hero-content {
    margin-top: 20px;
  }
  .page-news-latest-industry-updates__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-news-latest-industry-updates__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-news-latest-industry-updates__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-news-latest-industry-updates__btn-primary,
  .page-news-latest-industry-updates__btn-secondary {
    width: 100% !important;
    max-width: 300px !important; /* Constrain width for better look */
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-latest-industry-updates__section {
    padding: 40px 15px;
  }
  .page-news-latest-industry-updates__content-area {
    padding: 30px 15px;
  }
  .page-news-latest-industry-updates__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-latest-industry-updates__sub-title {
    font-size: 1.4em;
  }
  .page-news-latest-industry-updates__grid-container {
    grid-template-columns: 1fr;
  }
  .page-news-latest-industry-updates__card-image {
    height: 180px;
  }
  .page-news-latest-industry-updates__image-full-width {
    margin: 20px auto;
  }
  .page-news-latest-industry-updates__cta-section {
    padding: 60px 15px;
  }
  .page-news-latest-industry-updates__cta-text {
    font-size: 1.1em;
  }
  .page-news-latest-industry-updates__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-news-latest-industry-updates__faq-answer {
    padding: 0 20px 15px;
  }

  /* Mobile image responsiveness */
  .page-news-latest-industry-updates img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news-latest-industry-updates__hero-image-container,
  .page-news-latest-industry-updates__section,
  .page-news-latest-industry-updates__content-area,
  .page-news-latest-industry-updates__dark-section,
  .page-news-latest-industry-updates__container,
  .page-news-latest-industry-updates__card,
  .page-news-latest-industry-updates__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-latest-industry-updates__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-news-latest-industry-updates__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-latest-industry-updates__cta-buttons {
    padding-left: 0;
    padding-right: 0;
  }
  .page-news-latest-industry-updates__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-news-latest-industry-updates__main-title {
    font-size: 1.8em;
  }
  .page-news-latest-industry-updates__section-title {
    font-size: 1.6em;
  }
  .page-news-latest-industry-updates__hero-description {
    font-size: 0.95em;
  }
  .page-news-latest-industry-updates__btn-primary,
  .page-news-latest-industry-updates__btn-secondary {
    font-size: 0.9em;
    padding: 12px 20px;
  }
  .page-news-latest-industry-updates__card-title {
    font-size: 1.2em;
  }
  .page-news-latest-industry-updates__card-text {
    font-size: 0.9em;
  }
}