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

.page-news-industry-trends-analysis {
  font-family: Arial, sans-serif;
  color: var(--text-main); /* Default text color for the page */
  line-height: 1.6;
}

.page-news-industry-trends-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--background-color);
  overflow: hidden;
}

.page-news-industry-trends-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.page-news-industry-trends-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 10px;
}

.page-news-industry-trends-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-news-industry-trends-analysis__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-news-industry-trends-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-news-industry-trends-analysis__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

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

.page-news-industry-trends-analysis__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.page-news-industry-trends-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.page-news-industry-trends-analysis__introduction-section,
.page-news-industry-trends-analysis__behavior-section,
.page-news-industry-trends-analysis__legal-section,
.page-news-industry-trends-analysis__faq-section {
  background-color: #ffffff; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-news-industry-trends-analysis__introduction-section .page-news-industry-trends-analysis__section-title,
.page-news-industry-trends-analysis__behavior-section .page-news-industry-trends-analysis__section-title,
.page-news-industry-trends-analysis__legal-section .page-news-industry-trends-analysis__section-title,
.page-news-industry-trends-analysis__faq-section .page-news-industry-trends-analysis__section-title {
  color: var(--deep-green-color); /* Use a dark green for titles on light background */
}

.page-news-industry-trends-analysis__introduction-section p,
.page-news-industry-trends-analysis__behavior-section p,
.page-news-industry-trends-analysis__legal-section p,
.page-news-industry-trends-analysis__faq-section p {
  color: #333333; /* Ensure dark text on light backgrounds */
}

.page-news-industry-trends-analysis__trends-section,
.page-news-industry-trends-analysis__product-section,
.page-news-industry-trends-analysis__future-section {
  background-color: var(--background-color); /* Dark background */
  color: var(--text-main); /* Light text for dark background */
}

.page-news-industry-trends-analysis__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.page-news-industry-trends-analysis__text-block strong {
  color: var(--secondary-color);
}

.page-news-industry-trends-analysis__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

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

.page-news-industry-trends-analysis__card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.page-news-industry-trends-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-news-industry-trends-analysis__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-news-industry-trends-analysis__card p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-news-industry-trends-analysis__faq-list {
  margin-top: 30px;
}

.page-news-industry-trends-analysis__faq-item {
  background-color: #ffffff; /* Light background for FAQ items */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333; /* Dark text for light background */
}

.page-news-industry-trends-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-green-color); /* Dark green for question text */
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

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

.page-news-industry-trends-analysis__faq-item[open] .page-news-industry-trends-analysis__faq-question {
  background-color: #e6ffe6; /* Lighter green when open */
  border-color: var(--primary-color);
}

.page-news-industry-trends-analysis__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-left: 15px;
}

.page-news-industry-trends-analysis__faq-item[open] .page-news-industry-trends-analysis__faq-toggle {
  color: var(--deep-green-color);
}

.page-news-industry-trends-analysis__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 1rem;
  color: #555555; /* Slightly lighter dark text for answer */
  line-height: 1.7;
}

.page-news-industry-trends-analysis__faq-answer p {
  margin-bottom: 10px;
  color: #555555;
}

.page-news-industry-trends-analysis__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Ensure content area images are not too small */
.page-news-industry-trends-analysis__content-area img,
.page-news-industry-trends-analysis__introduction-section img,
.page-news-industry-trends-analysis__trends-section img,
.page-news-industry-trends-analysis__behavior-section img,
.page-news-industry-trends-analysis__product-section img,
.page-news-industry-trends-analysis__legal-section img,
.page-news-industry-trends-analysis__future-section img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news-industry-trends-analysis__hero-content {
    padding: 15px;
  }

  .page-news-industry-trends-analysis__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-news-industry-trends-analysis__description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

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

@media (max-width: 768px) {
  .page-news-industry-trends-analysis__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-news-industry-trends-analysis__hero-content {
    padding: 10px;
    background: rgba(0, 0, 0, 0.6); /* Slightly darker overlay for text on mobile */
  }

  .page-news-industry-trends-analysis__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-news-industry-trends-analysis__description {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 20px;
  }

  .page-news-industry-trends-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news-industry-trends-analysis__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news-industry-trends-analysis__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 20px;
  }

  .page-news-industry-trends-analysis__text-block {
    font-size: 1rem;
    line-height: 1.7;
  }

  .page-news-industry-trends-analysis__image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news-industry-trends-analysis__card {
    padding: 20px;
  }

  .page-news-industry-trends-analysis__card-title {
    font-size: 1.3rem;
  }

  .page-news-industry-trends-analysis__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-news-industry-trends-analysis__faq-answer {
    font-size: 0.95rem;
    padding: 15px;
    padding-top: 0;
  }

  /* Force responsive for all images and containers to prevent overflow */
  .page-news-industry-trends-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-news-industry-trends-analysis__section,
  .page-news-industry-trends-analysis__card,
  .page-news-industry-trends-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-industry-trends-analysis__hero-section,
  .page-news-industry-trends-analysis__introduction-section,
  .page-news-industry-trends-analysis__trends-section,
  .page-news-industry-trends-analysis__behavior-section,
  .page-news-industry-trends-analysis__product-section,
  .page-news-industry-trends-analysis__legal-section,
  .page-news-industry-trends-analysis__future-section,
  .page-news-industry-trends-analysis__faq-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}