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

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

.page-news-market-insights__hero-section {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-market-insights__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff; /* Ensure high contrast */
}

.page-news-market-insights__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff; /* Ensure high contrast */
}

.page-news-market-insights__section {
  padding: 60px 0;
  border-bottom: 1px solid #e9ecef;
}

.page-news-market-insights__section:last-of-type {
  border-bottom: none;
}

.page-news-market-insights__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color for titles */
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-news-market-insights__section h3 {
  font-size: 1.8em;
  color: #28a745; /* Secondary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-news-market-insights__section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333; /* Dark text for readability */
}

.page-news-market-insights__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-news-market-insights__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333; /* Dark text for readability */
}

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

.page-news-market-insights__image--small {
  max-width: 300px;
  margin: 20px auto;
}

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

.page-news-market-insights__trend-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-news-market-insights__trend-item .page-news-market-insights__image--small {
  margin-top: 0;
  margin-bottom: 15px;
}

.page-news-market-insights__trend-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-news-market-insights__trend-item p {
  font-size: 1em;
  color: #555555;
}

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

.page-news-market-insights__btn--primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-news-market-insights__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-news-market-insights__btn--secondary {
  background-color: #28a745;
  color: #ffffff;
  border: 2px solid #28a745;
}

.page-news-market-insights__btn--secondary:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
  transform: translateY(-2px);
}

.page-news-market-insights__cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-news-market-insights__link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.page-news-market-insights__link:hover {
  text-decoration: underline;
}

.page-news-market-insights__small-text {
  font-size: 0.9em;
  color: #6c757d;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-news-market-insights__hero-title {
    font-size: 2.5em;
  }

  .page-news-market-insights__hero-subtitle {
    font-size: 1.1em;
  }

  .page-news-market-insights__section-title {
    font-size: 2em;
  }

  .page-news-market-insights__section h3 {
    font-size: 1.5em;
  }

  .page-news-market-insights__grid {
    grid-template-columns: 1fr;
  }

  .page-news-market-insights__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-news-market-insights__hero-title {
    font-size: 2em;
  }

  .page-news-market-insights__hero-subtitle {
    font-size: 1em;
  }

  .page-news-market-insights__section-title {
    font-size: 1.8em;
  }
}