/* style/industry-news-market-trends.css */
.page-industry-news-market-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-industry-news-market-trends__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient for depth */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-market-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff; /* Ensure high contrast */
}

.page-industry-news-market-trends__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0; /* Slightly lighter for contrast */
}

.page-industry-news-market-trends__introduction-section,
.page-industry-news-market-trends__content-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

.page-industry-news-market-trends__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color for main titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-industry-news-market-trends__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Accent color for underline */
  border-radius: 2px;
}

.page-industry-news-market-trends__article {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #fefefe;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-industry-news-market-trends__article-title {
  font-size: 1.8em;
  color: #0056b3; /* Darker primary for sub-titles */
  margin-bottom: 20px;
  border-bottom: 2px solid #ffc107; /* Accent color for article title underline */
  padding-bottom: 10px;
}

.page-industry-news-market-trends__article p {
  margin-bottom: 15px;
  color: #495057;
}

.page-industry-news-market-trends__article ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #495057;
}

.page-industry-news-market-trends__article ul li {
  margin-bottom: 8px;
}

.page-industry-news-market-trends__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-industry-news-market-trends__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
}

.page-industry-news-market-trends__btn--primary {
  background-color: #ffc107; /* Accent color */
  color: #333; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-industry-news-market-trends__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #1a1a1a;
}

.page-industry-news-market-trends__btn--secondary {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-industry-news-market-trends__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #ffffff;
}

.page-industry-news-market-trends__btn--tertiary {
  background-color: #f8f9fa;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-industry-news-market-trends__btn--tertiary:hover {
  background-color: #e2e6ea;
  color: #0056b3;
}

.page-industry-news-market-trends__inline-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-industry-news-market-trends__inline-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-industry-news-market-trends__cta-section {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-market-trends__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Accent color for CTA title */
}

.page-industry-news-market-trends__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-industry-news-market-trends__cta-buttons {
  margin-top: 30px;
}

.page-industry-news-market-trends__image--cta {
  margin-top: 50px;
  max-width: 800px;
}

.page-industry-news-market-trends .highlight {
  color: #ffc107; /* Accent color for highlights */
}

.page-industry-news-market-trends .keyword {
  font-weight: bold;
  color: #0056b3; /* Darker primary for keywords */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-industry-news-market-trends__hero-title {
    font-size: 2.8em;
  }
  .page-industry-news-market-trends__hero-subtitle {
    font-size: 1.2em;
  }
  .page-industry-news-market-trends__section-title {
    font-size: 2em;
  }
  .page-industry-news-market-trends__article-title {
    font-size: 1.5em;
  }
  .page-industry-news-market-trends__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-industry-news-market-trends__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news-market-trends__hero-subtitle {
    font-size: 1em;
  }
  .page-industry-news-market-trends__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 8px;
  }
  .page-industry-news-market-trends__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-market-trends__article-title {
    font-size: 1.3em;
  }
  .page-industry-news-market-trends__cta-title {
    font-size: 1.8em;
  }
  .page-industry-news-market-trends__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 576px) {
  .page-industry-news-market-trends__hero-section,
  .page-industry-news-market-trends__introduction-section,
  .page-industry-news-market-trends__content-section,
  .page-industry-news-market-trends__cta-section {
    padding: 40px 0;
  }
  .page-industry-news-market-trends__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news-market-trends__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-industry-news-market-trends__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-industry-news-market-trends__article {
    padding: 20px;
  }
  .page-industry-news-market-trends__article-title {
    font-size: 1.2em;
  }
  .page-industry-news-market-trends__cta-title {
    font-size: 1.5em;
  }
  .page-industry-news-market-trends__cta-description {
    font-size: 0.9em;
  }
}