/* style/news-industry-updates.css */
.page-news-industry-updates {
  background-color: #08160F; /* Nền tối */
  color: #F2FFF6; /* Chữ sáng */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-news-industry-updates__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Padding-top nhỏ, không dùng var(--header-offset) */
  text-align: center;
  background-color: #0A4B2C;
}

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

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

.page-news-industry-updates__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Kéo nội dung lên trên ảnh một chút để tạo sự gắn kết */
  background-color: rgba(17, 39, 27, 0.9); /* Card B G với độ trong suốt */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-news-industry-updates__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-news-industry-updates__lead-paragraph {
  font-size: 18px;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news-industry-updates__btn-primary,
.page-news-industry-updates__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  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%);
  color: #F2FFF6;
  border: none;
}

.page-news-industry-updates__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 4px 12px rgba(42, 209, 111, 0.4);
}

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

.page-news-industry-updates__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #57E38D;
  border-color: #57E38D;
}

.page-news-industry-updates__section {
  padding: 80px 0;
  text-align: center;
}

.page-news-industry-updates__section-title {
  font-size: clamp(24px, 3.5vw, 42px);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news-industry-updates__section-description {
  font-size: 17px;
  color: #A7D9B8;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-news-industry-updates__latest-news,
.page-news-industry-updates__blog-articles {
  background-color: #08160F;
}

.page-news-industry-updates__news-grid,
.page-news-industry-updates__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-industry-updates__news-card,
.page-news-industry-updates__blog-card {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E;
}

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

.page-news-industry-updates__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news-industry-updates__card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news-industry-updates__card-title a {
  color: #F2FFF6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-updates__card-title a:hover {
  color: #57E38D;
}

.page-news-industry-updates__card-meta {
  font-size: 14px;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-news-industry-updates__card-text {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news-industry-updates__card-link {
  display: inline-block;
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-industry-updates__card-link:hover {
  color: #57E38D;
}

.page-news-industry-updates__view-all-button-container {
  margin-top: 50px;
}

.page-news-industry-updates__market-analysis {
  background-color: #11271B; /* Card B G */
  border-top: 1px solid #2E7A4E;
  border-bottom: 1px solid #2E7A4E;
}

.page-news-industry-updates__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-industry-updates__feature-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-news-industry-updates__feature-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-news-industry-updates__feature-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news-industry-updates__feature-text {
  font-size: 16px;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-news-industry-updates__faq-section {
  background-color: #08160F;
}

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

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

.page-news-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-news-industry-updates__faq-item[open] .page-news-industry-updates__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

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

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

.page-news-industry-updates__faq-toggle {
  font-size: 24px;
  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: 15px 25px 20px 25px;
  font-size: 16px;
  color: #A7D9B8;
  line-height: 1.7;
  background-color: #11271B; /* Card B G */
}

.page-news-industry-updates__cta-final-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 100px 0;
}

.page-news-industry-updates__cta-final-section .page-news-industry-updates__section-title {
  color: #F2FFF6;
}

.page-news-industry-updates__cta-final-section .page-news-industry-updates__section-description {
  color: #A7D9B8;
  margin-bottom: 50px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news-industry-updates__hero-content {
    margin-top: -60px;
    padding: 30px;
  }

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

@media (max-width: 768px) {
  .page-news-industry-updates__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-news-industry-updates__hero-content {
    margin-top: -40px;
    padding: 25px;
    border-radius: 8px;
  }

  .page-news-industry-updates__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-news-industry-updates__lead-paragraph {
    font-size: 16px;
  }

  .page-news-industry-updates__cta-buttons {
    flex-direction: column;
    gap: 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: 16px;
  }

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

  .page-news-industry-updates__section-title {
    font-size: clamp(22px, 5vw, 32px);
  }

  .page-news-industry-updates__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-news-industry-updates__news-grid,
  .page-news-industry-updates__blog-grid,
  .page-news-industry-updates__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-news-industry-updates__card-image,
  .page-news-industry-updates__feature-image {
    height: 180px;
  }

  .page-news-industry-updates__card-title {
    font-size: 18px;
  }

  .page-news-industry-updates__card-text {
    font-size: 15px;
  }

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

  .page-news-industry-updates__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 15px;
  }

  /* Force responsive images and containers */
  .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__hero-image-wrapper,
  .page-news-industry-updates__hero-content,
  .page-news-industry-updates__cta-buttons,
  .page-news-industry-updates__news-card,
  .page-news-industry-updates__blog-card,
  .page-news-industry-updates__feature-item,
  .page-news-industry-updates__faq-list,
  .page-news-industry-updates__faq-item {
    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__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-news-industry-updates__video-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset */
  }
}