/* style/industry-news-market-trends.css */
:root {
  --primary-color: #0A2342;
  --secondary-color: #FFD700;
  --text-dark: #222;
  --text-light: #f0f0f0;
  --background-light: #f8f8f8;
  --background-dark: #071a30;
  --link-color: #FFD700;
  --link-hover-color: #e6c200;
  --button-text-color-dark: #0A2342;
  --button-text-color-light: #FFFFFF;
}

.page-industry-news-market-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

/* Hero Section */
.page-industry-news-market-trends__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5e 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.page-industry-news-market-trends__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-industry-news-market-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-industry-news-market-trends__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-industry-news-market-trends__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

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

/* General Section Styling */
.page-industry-news-market-trends__section {
  padding: 60px 0;
}

.page-industry-news-market-trends__section--alt-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-industry-news-market-trends__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-industry-news-market-trends__section--alt-bg .page-industry-news-market-trends__section-title {
  color: var(--secondary-color);
}

.page-industry-news-market-trends__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-industry-news-market-trends__section--alt-bg .page-industry-news-market-trends__text {
  color: #ccc;
}

/* Trend Grid */
.page-industry-news-market-trends__trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-industry-news-market-trends__trend-card {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
}

.page-industry-news-market-trends__trend-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-industry-news-market-trends__trend-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(285deg) brightness(100%) contrast(100%); /* Make icons white/light */
}

.page-industry-news-market-trends__trend-card-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-industry-news-market-trends__trend-card .page-industry-news-market-trends__text {
  font-size: 1em;
  color: #e0e0e0;
}

/* List Styling */
.page-industry-news-market-trends__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-industry-news-market-trends__list-item {
  background-color: #f0f0f0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-industry-news-market-trends__section--alt-bg .page-industry-news-market-trends__list-item {
  background-color: #1a3a5e;
  color: var(--text-light);
}

.page-industry-news-market-trends__list-item strong {
  color: var(--primary-color);
}

.page-industry-news-market-trends__section--alt-bg .page-industry-news-market-trends__list-item strong {
  color: var(--secondary-color);
}

/* Call to Action Section */
.page-industry-news-market-trends__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-industry-news-market-trends__cta-content {
  max-width: 900px;
}

.page-industry-news-market-trends__cta-title {
  font-size: 3em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-industry-news-market-trends__cta-text {
  font-size: 1.2em;
  color: #ccc;
  margin-bottom: 40px;
}

.page-industry-news-market-trends__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-industry-news-market-trends__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-market-trends__btn--primary {
  background-color: var(--secondary-color);
  color: var(--button-text-color-dark);
}

.page-industry-news-market-trends__btn--primary:hover {
  background-color: var(--link-hover-color);
  transform: translateY(-3px);
}

.page-industry-news-market-trends__btn--secondary {
  background-color: var(--secondary-color);
  color: var(--button-text-color-dark);
}

.page-industry-news-market-trends__btn--secondary:hover {
  background-color: var(--link-hover-color);
  transform: translateY(-3px);
}

.page-industry-news-market-trends__btn--tertiary {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.page-industry-news-market-trends__btn--tertiary:hover {
  background-color: var(--secondary-color);
  color: var(--button-text-color-dark);
  transform: translateY(-3px);
}

/* Inline Links */
.page-industry-news-market-trends__inline-link {
  color: var(--link-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-industry-news-market-trends__inline-link:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-industry-news-market-trends__hero {
    padding: 60px 20px;
  }

  .page-industry-news-market-trends__hero-title {
    font-size: 2.5em;
  }

  .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__trend-grid {
    grid-template-columns: 1fr;
  }

  .page-industry-news-market-trends__cta-title {
    font-size: 2.2em;
  }

  .page-industry-news-market-trends__cta-text {
    font-size: 1em;
  }

  .page-industry-news-market-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-industry-news-market-trends__btn {
    width: 80%;
    margin: 0 auto;
  }
}

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

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

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

  .page-industry-news-market-trends__trend-card-title {
    font-size: 1.5em;
  }

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