/* style/industry-news-market-trends.css */
.page-industry-news-market-trends {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  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, #28a745);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-industry-news-market-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-industry-news-market-trends__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e9ecef;
}

.page-industry-news-market-trends__cta-button {
  display: inline-block;
  background-color: #ff8400; /* Complementary color for emphasis */
  color: #fff;
  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-industry-news-market-trends__cta-button:hover {
  background-color: #d758ba; /* Another complementary color for hover */
  transform: translateY(-2px);
}

.page-industry-news-market-trends__cta-button--secondary {
  background-color: #0056b3; /* Darker shade of primary for contrast */
}

.page-industry-news-market-trends__cta-button--secondary:hover {
  background-color: #004085;
}

.page-industry-news-market-trends__cta-button--outline {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.page-industry-news-market-trends__cta-button--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.page-industry-news-market-trends__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-industry-news-market-trends__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-industry-news-market-trends__subsection-title {
  font-size: 1.8em;
  color: #28a745;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-industry-news-market-trends__list li {
  margin-bottom: 10px;
}

.page-industry-news-market-trends__cta-group {
  text-align: center;
  margin-top: 50px;
}

.page-industry-news-market-trends__cta-group .page-industry-news-market-trends__cta-button {
  margin: 0 10px;
}

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

@media (max-width: 768px) {
  .page-industry-news-market-trends__hero-section {
    padding: 80px 0;
  }
  .page-industry-news-market-trends__hero-title {
    font-size: 2.2em;
  }
  .page-industry-news-market-trends__hero-description {
    font-size: 1em;
  }
  .page-industry-news-market-trends__content-section {
    padding: 40px 0;
  }
  .page-industry-news-market-trends__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-market-trends__cta-group .page-industry-news-market-trends__cta-button {
    display: block;
    margin: 15px auto;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .page-industry-news-market-trends__hero-section {
    padding: 60px 0;
  }
  .page-industry-news-market-trends__hero-title {
    font-size: 1.8em;
  }
  .page-industry-news-market-trends__hero-description {
    font-size: 0.9em;
  }
  .page-industry-news-market-trends__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-industry-news-market-trends__section-title {
    font-size: 1.5em;
  }
  .page-industry-news-market-trends__subsection-title {
    font-size: 1.3em;
  }
}