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

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

.page-news-industry-trends__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  box-sizing: border-box;
  text-align: center;
  background-color: var(--deep-green);
}

.page-news-industry-trends__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-news-industry-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-news-industry-trends__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-main);
}

.page-news-industry-trends__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-news-industry-trends__intro-text {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  margin-bottom: 30px;
  color: var(--text-secondary);
}

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

.page-news-industry-trends__btn-primary,
.page-news-industry-trends__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-news-industry-trends__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-news-industry-trends__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-news-industry-trends__btn-secondary {
  background: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-news-industry-trends__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--deep-green);
}

.page-news-industry-trends__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color);
  color: var(--text-main);
  box-sizing: border-box;
}

.page-news-industry-trends__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gold-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-news-industry-trends__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-news-industry-trends p {
  margin-bottom: 1em;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-secondary);
}

.page-news-industry-trends .text--highlight {
  color: var(--gold-color);
  font-weight: bold;
}

.page-news-industry-trends__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__image--centered {
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-trends__cta-section {
  background-color: var(--deep-green);
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
  border-radius: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.page-news-industry-trends__cta-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--gold-color);
  margin-bottom: 20px;
}

.page-news-industry-trends__cta-description {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-industry-trends__faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--divider-color);
}

.page-news-industry-trends__faq-item {
  background-color: var(--card-bg);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.page-news-industry-trends__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: clamp(1.1rem, 1.8vw, 1.2rem);
  color: var(--text-main);
  background-color: var(--deep-green);
  transition: background-color 0.3s ease;
}

.page-news-industry-trends__faq-item summary:hover {
  background-color: var(--primary-color);
}

.page-news-industry-trends__faq-item summary::-webkit-details-marker {
  display: none;
}

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

.page-news-industry-trends__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-news-industry-trends__faq-item[open] .page-news-industry-trends__faq-toggle {
  content: "−";
}

.page-news-industry-trends__faq-answer {
  padding: 20px;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-secondary);
  background-color: var(--card-bg);
  border-top: 1px solid var(--divider-color);
}

.page-news-industry-trends__faq-answer p {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news-industry-trends__hero-section {
    padding: 40px 15px;
  }

  .page-news-industry-trends__content-area {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-news-industry-trends {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news-industry-trends__hero-section {
    padding: 20px 15px;
  }

  .page-news-industry-trends__hero-image-wrapper {
    margin-bottom: 15px;
  }

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

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

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

  .page-news-industry-trends__btn-primary,
  .page-news-industry-trends__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px;
    text-align: center;
  }

  .page-news-industry-trends__content-area {
    padding: 20px 15px;
  }

  .page-news-industry-trends__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-news-industry-trends__sub-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

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

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

  .page-news-industry-trends__section,
  .page-news-industry-trends__card,
  .page-news-industry-trends__container,
  .page-news-industry-trends__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-industry-trends__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  .page-news-industry-trends__faq-answer {
    padding: 15px;
    font-size: 0.95rem;
  }

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

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