/* style/news-entertainment-industry-trends.css */

/* Base styles for the page content */
.page-news-entertainment-industry-trends {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Body background is white */
}

.page-news-entertainment-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 */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

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

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

.page-news-entertainment-industry-trends__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.page-news-entertainment-industry-trends__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news-entertainment-industry-trends__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555555;
}

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

.page-news-entertainment-industry-trends__section-title {
  font-size: 2.5rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-news-entertainment-industry-trends__sub-title {
  font-size: 1.8rem;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-news-entertainment-industry-trends__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333333;
}

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

.page-news-entertainment-industry-trends__image-text-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-news-entertainment-industry-trends__image-text-layout--reverse {
  flex-direction: column-reverse;
}

@media (min-width: 769px) {
  .page-news-entertainment-industry-trends__image-text-layout {
    flex-direction: row;
    text-align: left;
  }
  .page-news-entertainment-industry-trends__image-text-layout--reverse {
    flex-direction: row-reverse;
  }
  .page-news-entertainment-industry-trends__image-text-layout .page-news-entertainment-industry-trends__content-image {
    flex: 1;
    max-width: 50%;
    margin-bottom: 0;
  }
  .page-news-entertainment-industry-trends__image-text-layout .page-news-entertainment-industry-trends__text-block {
    flex: 1;
    max-width: 50%;
  }
}

.page-news-entertainment-industry-trends__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-news-entertainment-industry-trends__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-news-entertainment-industry-trends__list-item .page-news-entertainment-industry-trends__sub-title {
  color: #FFFFFF;
}

.page-news-entertainment-industry-trends__list-item .page-news-entertainment-industry-trends__paragraph {
  color: #f0f0f0;
}

/* CTA Button Styles */
.page-news-entertainment-industry-trends__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-entertainment-industry-trends__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-news-entertainment-industry-trends__btn-primary:hover {
  background-color: #1a8cc7;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-news-entertainment-industry-trends__faq-list {
  margin-top: 40px;
}

.page-news-entertainment-industry-trends__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news-entertainment-industry-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: #f9f9f9;
  color: #333333;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-news-entertainment-industry-trends__faq-question::-webkit-details-marker {
  display: none;
}

.page-news-entertainment-industry-trends__faq-item[open] .page-news-entertainment-industry-trends__faq-question {
  background-color: #eaf6fa;
  border-bottom: 1px solid #26A9E0;
}

.page-news-entertainment-industry-trends__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-news-entertainment-industry-trends__faq-item[open] .page-news-entertainment-industry-trends__faq-toggle {
  transform: rotate(45deg);
}

.page-news-entertainment-industry-trends__faq-answer {
  padding: 15px 20px;
  color: #555555;
  font-size: 1rem;
}

/* Color Contrast Classes */
.page-news-entertainment-industry-trends__dark-bg {
  background: #26A9E0;
  color: #ffffff;
}

.page-news-entertainment-industry-trends__dark-bg .page-news-entertainment-industry-trends__section-title,
.page-news-entertainment-industry-trends__dark-bg .page-news-entertainment-industry-trends__sub-title {
  color: #ffffff;
}

.page-news-entertainment-industry-trends__dark-bg .page-news-entertainment-industry-trends__paragraph {
  color: #f0f0f0;
}

.page-news-entertainment-industry-trends__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-news-entertainment-industry-trends__light-bg .page-news-entertainment-industry-trends__section-title,
.page-news-entertainment-industry-trends__light-bg .page-news-entertainment-industry-trends__sub-title {
  color: #26A9E0;
}

.page-news-entertainment-industry-trends__light-bg .page-news-entertainment-industry-trends__paragraph {
  color: #333333;
}

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

  .page-news-entertainment-industry-trends__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding on mobile */
  }

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

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

  .page-news-entertainment-industry-trends__section {
    padding: 30px 15px;
  }

  .page-news-entertainment-industry-trends__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-news-entertainment-industry-trends__sub-title {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  .page-news-entertainment-industry-trends__paragraph {
    font-size: 0.95rem;
  }

  /* Images responsive */
  .page-news-entertainment-industry-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Containers responsive */
  .page-news-entertainment-industry-trends__section,
  .page-news-entertainment-industry-trends__card,
  .page-news-entertainment-industry-trends__container,
  .page-news-entertainment-industry-trends__hero-image-wrapper,
  .page-news-entertainment-industry-trends__image-text-layout,
  .page-news-entertainment-industry-trends__text-block,
  .page-news-entertainment-industry-trends__faq-list,
  .page-news-entertainment-industry-trends__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsive */
  .page-news-entertainment-industry-trends__cta-button,
  .page-news-entertainment-industry-trends__btn-primary,
  .page-news-entertainment-industry-trends__btn-secondary,
  .page-news-entertainment-industry-trends a[class*="button"],
  .page-news-entertainment-industry-trends 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;
    text-align: center;
  }

  .page-news-entertainment-industry-trends__cta-button + .page-news-entertainment-industry-trends__cta-button {
    margin-top: 10px;
  }

  .page-news-entertainment-industry-trends__image-text-layout {
    flex-direction: column;
    gap: 20px;
  }

  .page-news-entertainment-industry-trends__image-text-layout--reverse {
    flex-direction: column;
  }
}