/* style/industry-news-market-analysis.css */
.page-industry-news-market-analysis {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #0A2239; /* Deep blue background */
  line-height: 1.6;
}

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

.page-industry-news-market-analysis__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1A3E5C 100%); /* Slightly lighter gradient for hero */
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-industry-news-market-analysis__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-market-analysis__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-market-analysis__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-industry-news-market-analysis__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-industry-news-market-analysis__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-industry-news-market-analysis__section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-industry-news-market-analysis__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-industry-news-market-analysis__list li strong {
  color: #FFD700;
}

.page-industry-news-market-analysis__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-industry-news-market-analysis__cta-button {
  display: inline-block;
  background-color: #0A2239; /* Dark blue button background */
  color: #FFD700; /* Gold text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-industry-news-market-analysis__cta-button:hover {
  background-color: #FFD700; /* Gold button background on hover */
  color: #0A2239; /* Dark blue text on hover */
  border-color: #FFD700;
}

.page-industry-news-market-analysis__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-industry-news-market-analysis__cta-text {
  font-size: 1.2em;
  text-align: center;
  margin-top: 50px;
  color: #E0E0E0;
}

.page-industry-news-market-analysis__cta-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-industry-news-market-analysis__cta-text a:hover {
  text-decoration: underline;
}

.page-industry-news-market-analysis__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-industry-news-market-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

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

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

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

  .page-industry-news-market-analysis__section p,
  .page-industry-news-market-analysis__list li {
    font-size: 1em;
  }

  .page-industry-news-market-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-industry-news-market-analysis__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

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

  .page-industry-news-market-analysis__hero-section {
    padding: 60px 0;
  }

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

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

  .page-industry-news-market-analysis__list {
    margin-left: 15px;
  }
}