/* style/industry-news-market-trends.css */
.page-industry-news-market-trends {
  font-family: 'Arial', sans-serif;
  color: #1A2E47; /* Dark blue for main text */
  line-height: 1.6;
}

.page-industry-news-market-trends__hero {
  background: linear-gradient(135deg, #1A2E47 0%, #3a506b 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-industry-news-market-trends__hero-content {
  z-index: 10;
  max-width: 900px;
  margin-bottom: 30px;
}

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

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

.page-industry-news-market-trends__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
}

.page-industry-news-market-trends__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0; /* Light grey for subtitle */
}

.page-industry-news-market-trends__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E47; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-industry-news-market-trends__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-industry-news-market-trends__cta-button--secondary {
  background-color: #1A2E47; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-industry-news-market-trends__cta-button--secondary:hover {
  background-color: #0d1a29; /* Even darker blue on hover */
  border-color: #e6c200;
}

.page-industry-news-market-trends__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-industry-news-market-trends__section {
  padding: 60px 20px;
  background-color: #f8f8f8; /* Light background for sections */
  border-bottom: 1px solid #eee;
}

.page-industry-news-market-trends__section:nth-of-type(even) {
  background-color: #ffffff;
}

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

.page-industry-news-market-trends__section-title {
  font-size: 2.2em;
  color: #1A2E47; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-industry-news-market-trends__sub-section-title {
  font-size: 1.8em;
  color: #1A2E47; /* Dark blue for sub-section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: left;
}

.page-industry-news-market-trends__text {
  font-size: 1.1em;
  color: #333; /* Slightly lighter dark text for paragraphs */
  margin-bottom: 20px;
  text-align: justify;
}

.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__image--left {
  float: left;
  margin-right: 30px;
  max-width: 40%;
}

.page-industry-news-market-trends__image--right {
  float: right;
  margin-left: 30px;
  max-width: 40%;
}

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

.page-industry-news-market-trends__trend-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-industry-news-market-trends__trend-item:hover {
  transform: translateY(-5px);
}

.page-industry-news-market-trends__trend-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for trend titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-industry-news-market-trends__cta-bottom {
  background-color: #1A2E47; /* Dark blue background */
  color: #FFFFFF; /* White text */
  padding: 80px 20px;
  text-align: center;
}

.page-industry-news-market-trends__cta-bottom .page-industry-news-market-trends__section-title {
  color: #FFD700; /* Gold for title */
}

.page-industry-news-market-trends__cta-bottom .page-industry-news-market-trends__text {
  color: #e0e0e0; /* Light grey for text */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-industry-news-market-trends__title {
    font-size: 2.2em;
  }
  .page-industry-news-market-trends__subtitle {
    font-size: 1.1em;
  }
  .page-industry-news-market-trends__section-title {
    font-size: 1.8em;
  }
  .page-industry-news-market-trends__sub-section-title {
    font-size: 1.5em;
  }
  .page-industry-news-market-trends__text {
    font-size: 1em;
  }
  .page-industry-news-market-trends__image--left,
  .page-industry-news-market-trends__image--right {
    float: none;
    margin: 30px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-industry-news-market-trends__hero {
    padding: 60px 15px;
  }
  .page-industry-news-market-trends__title {
    font-size: 1.8em;
  }
  .page-industry-news-market-trends__subtitle {
    font-size: 1em;
  }
  .page-industry-news-market-trends__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news-market-trends__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-industry-news-market-trends__section {
    padding: 40px 15px;
  }
  .page-industry-news-market-trends__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-industry-news-market-trends__sub-section-title {
    font-size: 1.3em;
  }
  .page-industry-news-market-trends__grid {
    grid-template-columns: 1fr;
  }
  .page-industry-news-market-trends__cta-bottom {
    padding: 60px 15px;
  }
  .page-industry-news-market-trends__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-industry-news-market-trends__title {
    font-size: 1.5em;
  }
  .page-industry-news-market-trends__subtitle {
    font-size: 0.9em;
  }
  .page-industry-news-market-trends__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-industry-news-market-trends__section-title {
    font-size: 1.4em;
  }
  .page-industry-news-market-trends__sub-section-title {
    font-size: 1.2em;
  }
  .page-industry-news-market-trends__text {
    font-size: 0.9em;
  }
}