/* style/news-industry-news-and-trends.css */
.page-news-industry-news-and-trends {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

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

.page-news-industry-news-and-trends__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #8B0000;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.page-news-industry-news-and-trends__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-news-industry-news-and-trends__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-news-industry-news-and-trends__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-news-industry-news-and-trends__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-news-industry-news-and-trends__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-industry-news-and-trends__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-news-industry-news-and-trends__section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

.page-news-industry-news-and-trends__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news-industry-news-and-trends__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #8B0000;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-news-industry-news-and-trends__subsection-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #8B0000;
  padding-left: 15px;
}

.page-news-industry-news-and-trends__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-news-industry-news-and-trends__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-industry-news-and-trends__inline-link:hover {
  color: #e0b800;
  text-decoration: underline;
}

.page-news-industry-news-and-trends__video-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-news-industry-news-and-trends__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.page-news-industry-news-and-trends__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-news-industry-news-and-trends__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 0, 0, 0.6); /* Dark red overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.page-news-industry-news-and-trends__video-wrapper:hover .page-news-industry-news-and-trends__video-overlay-link {
  opacity: 1;
}

.page-news-industry-news-and-trends__video-overlay-text {
  color: #FFD700;
  font-size: 1.8em;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.page-news-industry-news-and-trends__video-caption {
  text-align: center;
  font-style: italic;
  color: #cccccc;
}

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

.page-news-industry-news-and-trends__card {
  background-color: #2a0000; /* Darker red for card background */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.page-news-industry-news-and-trends__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

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

.page-news-industry-news-and-trends__card-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-news-industry-news-and-trends__card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news-industry-news-and-trends__card-title a:hover {
  color: #e0b800;
  text-decoration: underline;
}

.page-news-industry-news-and-trends__card-description {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-news-industry-news-and-trends__faq-section {
  background-color: #1a1a1a;
}

.page-news-industry-news-and-trends__faq-list {
  margin-top: 30px;
}

.page-news-industry-news-and-trends__faq-item {
  background-color: #2a0000;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-news-industry-news-and-trends__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #8B0000;
  transition: background-color 0.3s ease;
}

.page-news-industry-news-and-trends__faq-question:hover {
  background-color: #a00000;
}

.page-news-industry-news-and-trends__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-news-industry-news-and-trends__faq-item.active .page-news-industry-news-and-trends__faq-toggle {
  transform: rotate(45deg);
}

.page-news-industry-news-and-trends__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

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

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

.page-news-industry-news-and-trends__conclusion-section {
  text-align: center;
  background-color: #8B0000;
  padding: 80px 0;
}

.page-news-industry-news-and-trends__cta-bottom {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-industry-news-and-trends__hero-title {
    font-size: 2.8em;
  }

  .page-news-industry-news-and-trends__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-news-industry-news-and-trends__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-news-industry-news-and-trends__hero-content {
    padding: 25px;
  }

  .page-news-industry-news-and-trends__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-news-industry-news-and-trends__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-news-industry-news-and-trends__btn-primary {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-news-industry-news-and-trends__cta-bottom .page-news-industry-news-and-trends__btn-primary {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-industry-news-and-trends__section {
    padding: 40px 0;
  }

  .page-news-industry-news-and-trends__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-news-industry-news-and-trends__subsection-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-news-industry-news-and-trends__text-block {
    font-size: 0.95em;
  }

  .page-news-industry-news-and-trends__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news-industry-news-and-trends__card-image {
    height: 180px;
  }

  .page-news-industry-news-and-trends__card-title {
    font-size: 1.2em;
    padding: 15px;
  }

  .page-news-industry-news-and-trends__card-description {
    padding: 0 15px 15px;
  }

  .page-news-industry-news-and-trends__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-news-industry-news-and-trends__faq-answer {
    padding: 0 15px;
  }

  /* Image and Video responsive rules */
  .page-news-industry-news-and-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news-industry-news-and-trends video,
  .page-news-industry-news-and-trends__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news-industry-news-and-trends__section,
  .page-news-industry-news-and-trends__card,
  .page-news-industry-news-and-trends__container,
  .page-news-industry-news-and-trends__video-section,
  .page-news-industry-news-and-trends__video-container,
  .page-news-industry-news-and-trends__video-wrapper,
  .page-news-industry-news-and-trends__cta-buttons,
  .page-news-industry-news-and-trends__button-group,
  .page-news-industry-news-and-trends__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-news-industry-news-and-trends__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-news-industry-news-and-trends__hero-title {
    font-size: 1.8em;
  }

  .page-news-industry-news-and-trends__section-title {
    font-size: 1.5em;
  }

  .page-news-industry-news-and-trends__btn-primary {
    font-size: 0.85em;
    padding: 10px 20px;
  }
}