.page-news-industry-updates {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Body background from shared.css */
}

.page-news-industry-updates__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Hero Section --- */
.page-news-industry-updates__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  background-color: #26A9E0; /* Brand primary color */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-news-industry-updates__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-news-industry-updates__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-news-industry-updates__btn-primary {
  background-color: #EA7C07; /* Login/CTA color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-news-industry-updates__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

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

.page-news-industry-updates__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

/* --- Section Titles & Intros --- */
.page-news-industry-updates__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-news-industry-updates__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

/* --- Latest News Section --- */
.page-news-industry-updates__latest-news {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.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: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news-industry-updates__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-news-industry-updates__news-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  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: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-news-industry-updates__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-news-industry-updates__card-title a:hover {
  text-decoration: underline;
}

.page-news-industry-updates__card-meta {
  font-size: 0.9em;
  color: #888888;
  margin-bottom: 15px;
}

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

.page-news-industry-updates__read-more {
  display: inline-block;
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
}

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

/* --- W88 Insights Section --- */
.page-news-industry-updates__w88-insights {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-news-industry-updates__w88-insights .page-news-industry-updates__section-title {
  color: #ffffff;
}

.page-news-industry-updates__w88-insights .page-news-industry-updates__btn-primary {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-news-industry-updates__w88-insights .page-news-industry-updates__btn-primary:hover {
  background-color: #f0f0f0;
  color: #1a7aa0;
}

.page-news-industry-updates__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-news-industry-updates__insight-image {
  width: 50%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.page-news-industry-updates__text-content {
  width: 50%;
}

.page-news-industry-updates__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

/* --- Market Trends Section --- */
.page-news-industry-updates__market-trends {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-news-industry-updates__trend-item {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-news-industry-updates__trend-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-news-industry-updates__trend-description {
  color: #555555;
}

/* --- Future Outlook Section --- */
.page-news-industry-updates__future-outlook {
  padding: 80px 0;
  background-color: #000000; /* Dark background for strong contrast */
  color: #ffffff;
}

.page-news-industry-updates__future-outlook .page-news-industry-updates__section-title {
  color: #ffffff;
}

.page-news-industry-updates__future-outlook .page-news-industry-updates__section-intro {
  color: #cccccc;
}

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

.page-news-industry-updates__outlook-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-news-industry-updates__outlook-title {
  font-size: 1.5em;
  color: #EA7C07;
  margin-bottom: 15px;
}

.page-news-industry-updates__outlook-text {
  color: #f0f0f0;
}

/* --- FAQ Section --- */
.page-news-industry-updates__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-news-industry-updates__faq-list {
  max-width: 800px;
  margin: 50px auto 0 auto;
  border-top: 1px solid #e0e0e0;
}

.page-news-industry-updates__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-news-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-news-industry-updates__faq-question:hover {
  background-color: #f0f0f0;
}

.page-news-industry-updates__faq-title {
  font-size: 1.2em;
  color: #333333;
  margin: 0;
}

.page-news-industry-updates__faq-toggle {
  font-size: 1.5em;
  color: #26A9E0;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-toggle {
  transform: rotate(0deg); /* No rotation needed for '-' */
}

.page-news-industry-updates__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to reveal content */
  padding: 15px;
}

.page-news-industry-updates__faq-answer p {
  margin-bottom: 15px;
}

/* --- Bottom CTA Section --- */
.page-news-industry-updates__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-news-industry-updates__cta-bottom .page-news-industry-updates__cta-title {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-news-industry-updates__cta-bottom .page-news-industry-updates__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-news-industry-updates__btn-large {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .page-news-industry-updates__hero-title {
    font-size: 2.2em;
  }
  .page-news-industry-updates__hero-description {
    font-size: 1em;
  }
  .page-news-industry-updates__content-wrapper {
    flex-direction: column;
  }
  .page-news-industry-updates__insight-image,
  .page-news-industry-updates__text-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-news-industry-updates__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
  }
  .page-news-industry-updates__hero-title {
    font-size: 1.8em;
  }
  .page-news-industry-updates__hero-description,
  .page-news-industry-updates__section-intro,
  .page-news-industry-updates__cta-bottom .page-news-industry-updates__cta-description {
    font-size: 0.95em;
  }
  .page-news-industry-updates__section-title,
  .page-news-industry-updates__cta-bottom .page-news-industry-updates__cta-title {
    font-size: 1.8em;
  }
  .page-news-industry-updates__news-image {
    height: 200px;
  }
  .page-news-industry-updates__news-grid,
  .page-news-industry-updates__trend-grid,
  .page-news-industry-updates__outlook-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-updates__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-industry-updates__btn-primary,
  .page-news-industry-updates__btn-secondary,
  .page-news-industry-updates a[class*="button"],
  .page-news-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;
  }
  .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;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-news-industry-updates__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  .page-news-industry-updates img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-news-industry-updates__faq-question {
    padding: 15px 0;
  }
  .page-news-industry-updates__faq-title {
    font-size: 1.1em;
  }
  .page-news-industry-updates__faq-answer {
    padding: 0 10px;
  }
  .page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
    padding: 10px;
  }
}