/* style/news-latest-industry-trends.css */
.page-news-latest-industry-trends {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-news-latest-industry-trends__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-latest-industry-trends__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-news-latest-industry-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  color: #FFCC00; /* Ensure high contrast */
}

.page-news-latest-industry-trends__hero-title .highlight {
  color: #FFCC00;
}

.page-news-latest-industry-trends__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #e0e0e0; /* Sufficient contrast with dark blue */
}

.page-news-latest-industry-trends__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

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

.page-news-latest-industry-trends__btn--primary {
  background-color: #FFCC00;
  color: #003366; /* High contrast text */
  border: 2px solid #FFCC00;
}

.page-news-latest-industry-trends__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-news-latest-industry-trends__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-news-latest-industry-trends__btn--secondary:hover {
  background-color: rgba(255, 204, 0, 0.1);
  transform: translateY(-3px);
}

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

.page-news-latest-industry-trends__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-news-latest-industry-trends__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-news-latest-industry-trends__article {
  background-color: #f0f6fa;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #003366;
}

.page-news-latest-industry-trends__article:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 51, 102, 0.15);
}

.page-news-latest-industry-trends__article-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news-latest-industry-trends__article p {
  margin-bottom: 15px;
  color: #444;
}

.page-news-latest-industry-trends__article ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #555;
}

.page-news-latest-industry-trends__article ul li {
  margin-bottom: 8px;
}

.page-news-latest-industry-trends__image-wrapper {
  margin-bottom: 20px;
  text-align: center;
}

.page-news-latest-industry-trends__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-news-latest-industry-trends__link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-news-latest-industry-trends__link:hover {
  color: #FFCC00;
}

.page-news-latest-industry-trends__keyword {
  font-weight: bold;
  color: #003366;
}

.page-news-latest-industry-trends__cta-single {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-news-latest-industry-trends__final-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

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

  .page-news-latest-industry-trends__hero-description {
    font-size: 1.1em;
  }

  .page-news-latest-industry-trends__cta-group,
  .page-news-latest-industry-trends__final-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-news-latest-industry-trends__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-news-latest-industry-trends__section-title {
    font-size: 2em;
  }

  .page-news-latest-industry-trends__article-title {
    font-size: 1.5em;
  }

  .page-news-latest-industry-trends__article {
    padding: 20px;
  }
}

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

  .page-news-latest-industry-trends__hero-description {
    font-size: 1em;
  }

  .page-news-latest-industry-trends__btn {
    font-size: 1em;
    padding: 12px 25px;
  }

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

  .page-news-latest-industry-trends__article-title {
    font-size: 1.3em;
  }
}