/* style/news-industry-updates.css */
/* body đã có padding-top: var(--header-offset); nên các section đầu tiên không cần thêm padding-top */

.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__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;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-news-industry-updates__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-news-industry-updates__hero-section .page-news-industry-updates__container {
  position: relative;
  z-index: 1;
}

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

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

.page-news-industry-updates__link {
  color: #57E38D;
  text-decoration: none;
}

.page-news-industry-updates__link:hover {
  text-decoration: underline;
}

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

.page-news-industry-updates__cta-buttons--center {
  justify-content: center;
}

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

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

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

.page-news-industry-updates__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-news-industry-updates__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-news-industry-updates__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-news-industry-updates__section-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-updates__latest-updates,
.page-news-industry-updates__market-trends,
.page-news-industry-updates__expert-insights,
.page-news-industry-updates__regulatory-landscape,
.page-news-industry-updates__future-outlook,
.page-news-industry-updates__cta-section {
  padding: 60px 0;
}

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

.page-news-industry-updates__news-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-news-industry-updates__news-card:hover {
  transform: translateY(-5px);
}

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

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

.page-news-industry-updates__card-title {
  font-size: 1.25rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news-industry-updates__card-link {
  color: #F2FFF6;
  text-decoration: none;
}

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

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

.page-news-industry-updates__card-excerpt {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news-industry-updates__read-more {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
}

.page-news-industry-updates__read-more:hover {
  text-decoration: underline;
}

.page-news-industry-updates__view-all-button-container {
  text-align: center;
  margin-top: 40px;
}

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

.page-news-industry-updates__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-news-industry-updates__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

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

.page-news-industry-updates__trend-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-news-industry-updates__trend-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-news-industry-updates__trend-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-news-industry-updates__trend-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-news-industry-updates__insights-content,
.page-news-industry-updates__outlook-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-news-industry-updates__insights-content p,
.page-news-industry-updates__outlook-content p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-news-industry-updates__regulation-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 900px;
}

.page-news-industry-updates__regulation-item {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #57E38D; /* Glow */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-news-industry-updates__regulation-title {
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-news-industry-updates__regulation-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-news-industry-updates__container--center {
  text-align: center;
}

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

  .page-news-industry-updates__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-news-industry-updates__main-title {
    font-size: 2rem;
  }

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

  .page-news-industry-updates__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-industry-updates__btn-primary,
  .page-news-industry-updates__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-news-industry-updates__section-description {
    font-size: 0.95rem;
  }

  .page-news-industry-updates__latest-updates,
  .page-news-industry-updates__market-trends,
  .page-news-industry-updates__expert-insights,
  .page-news-industry-updates__regulatory-landscape,
  .page-news-industry-updates__future-outlook,
  .page-news-industry-updates__cta-section {
    padding: 40px 0;
  }

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

  .page-news-industry-updates__news-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-news-industry-updates__video-wrapper {
    margin: 20px auto;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-news-industry-updates__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-industry-updates__trends-list {
    grid-template-columns: 1fr;
  }

  .page-news-industry-updates__trend-image {
    height: 180px;
  }

  .page-news-industry-updates__insights-content,
  .page-news-industry-updates__outlook-content {
    margin-top: 20px;
  }

  .page-news-industry-updates__insights-content p,
  .page-news-industry-updates__outlook-content p {
    font-size: 0.9rem;
  }

  .page-news-industry-updates__regulation-item {
    padding: 15px;
  }

  .page-news-industry-updates__regulation-title {
    font-size: 1.1rem;
  }

  .page-news-industry-updates__regulation-text {
    font-size: 0.9rem;
  }

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

  /* All containers with images/videos/buttons */
  .page-news-industry-updates__section,
  .page-news-industry-updates__card,
  .page-news-industry-updates__container,
  .page-news-industry-updates__video-section,
  .page-news-industry-updates__video-container,
  .page-news-industry-updates__video-wrapper,
  .page-news-industry-updates__cta-buttons,
  .page-news-industry-updates__button-group,
  .page-news-industry-updates__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }
}

/* Global image size constraint enforcement */
.page-news-industry-updates img {
  min-width: 200px;
  min-height: 200px;
}

/* Override for specific smaller visual elements IF they were allowed, but here they are not */
/* This section is primarily for defensive coding if smaller images were to be introduced against rules */
/* As per rule: '禁止所有小图标' and '最小尺寸要求: 200x200px' */

/* No filter on images */
.page-news-industry-updates img {
  filter: none;
}