/* style/news-industry-updates.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000;
  --background-light: #f1f3f5;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
  --link-color: #0066cc;
  --link-hover-color: #004499;
}

.page-news-industry-updates {
  color: var(--text-light); /* Default text color for main content due to dark body background */
  background-color: var(--background-dark);
  min-height: 100vh;
}

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

/* Fixed header padding */
.page-news-industry-updates__hero-intro-section {
  padding-top: 180px; /* Adjust for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--background-dark));
  color: var(--text-light);
  text-align: center;
}

@media (max-width: 768px) {
  .page-news-industry-updates__hero-intro-section {
    padding-top: 140px; /* Adjust for fixed header on mobile */
    padding-bottom: 40px;
  }
}

.page-news-industry-updates__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-industry-updates__intro-text {
  font-size: 1.2em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: #e0e0e0;
}

.page-news-industry-updates__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-news-industry-updates__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-news-industry-updates__text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-industry-updates__text-link:hover {
  color: var(--text-light);
  text-decoration: underline;
}

/* Latest News Section */
.page-news-industry-updates__latest-news-section {
  padding: 60px 0;
  background: var(--background-dark);
  color: var(--text-light);
}

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

.page-news-industry-updates__article-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news-industry-updates__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-news-industry-updates__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-news-industry-updates__article-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-updates__article-link:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.page-news-industry-updates__article-excerpt {
  font-size: 0.95em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news-industry-updates__article-date {
  font-size: 0.85em;
  color: var(--primary-color);
  text-align: right;
  display: block;
}

/* Trends and Analysis Section */
.page-news-industry-updates__trends-analysis-section {
  padding: 60px 0;
  background: var(--background-light);
  color: var(--text-dark);
}

.page-news-industry-updates__trends-analysis-section .page-news-industry-updates__section-title {
  color: var(--secondary-color);
  text-shadow: none;
}

.page-news-industry-updates__trends-analysis-section .page-news-industry-updates__sub-title {
  color: var(--secondary-color);
}

.page-news-industry-updates__trends-analysis-section .page-news-industry-updates__text-link {
  color: var(--secondary-color);
}

.page-news-industry-updates__trends-analysis-section .page-news-industry-updates__text-link:hover {
  color: var(--primary-color);
}

.page-news-industry-updates__content-block p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Future Outlook Section */
.page-news-industry-updates__future-outlook-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-align: center;
}

.page-news-industry-updates__future-outlook-section .page-news-industry-updates__section-title {
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-news-industry-updates__outlook-text {
  font-size: 1.15em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-news-industry-updates__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news-industry-updates__cta-button:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-news-industry-updates__faq-section {
  padding: 60px 0;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-news-industry-updates__faq-section .page-news-industry-updates__section-title {
  color: var(--primary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-news-industry-updates__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.page-news-industry-updates__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #cccccc;
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 5px 5px;
}

.page-news-industry-updates__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-news-industry-updates__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
}

.page-news-industry-updates__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-news-industry-updates__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-news-industry-updates__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-toggle {
  color: var(--text-light);
  background-color: var(--primary-color);
  border-color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-updates__main-title {
    font-size: 2.8em;
  }
  .page-news-industry-updates__section-title {
    font-size: 2em;
  }
  .page-news-industry-updates__sub-title {
    font-size: 1.6em;
  }
  .page-news-industry-updates__intro-text,
  .page-news-industry-updates__outlook-text,
  .page-news-industry-updates__content-block p {
    font-size: 1em;
  }
  .page-news-industry-updates__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-news-industry-updates__container {
    padding: 0 15px;
  }
  .page-news-industry-updates__main-title {
    font-size: 2.2em;
  }
  .page-news-industry-updates__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-news-industry-updates__sub-title {
    font-size: 1.4em;
  }
  .page-news-industry-updates__intro-text,
  .page-news-industry-updates__outlook-text,
  .page-news-industry-updates__content-block p {
    font-size: 0.95em;
    line-height: 1.5;
  }
  .page-news-industry-updates__hero-intro-section,
  .page-news-industry-updates__latest-news-section,
  .page-news-industry-updates__trends-analysis-section,
  .page-news-industry-updates__future-outlook-section,
  .page-news-industry-updates__faq-section {
    padding: 40px 0;
  }
  .page-news-industry-updates__news-grid {
    grid-template-columns: 1fr;
  }
  .page-news-industry-updates__article-image {
    height: 200px;
  }
  .page-news-industry-updates__article-content {
    padding: 20px;
  }
  .page-news-industry-updates__article-title {
    font-size: 1.2em;
  }
  .page-news-industry-updates__cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-news-industry-updates__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-news-industry-updates__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-news-industry-updates__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-news-industry-updates__faq-answer {
    padding: 0 15px;
  }
  .page-news-industry-updates__faq-item.active .page-news-industry-updates__faq-answer {
    padding: 15px !important;
  }
}