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

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

.page-industry-news__hero {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  font-weight: bold;
}

.page-industry-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-industry-news__cta-button:hover {
  background-color: #e6b800; /* Darker gold */
  transform: translateY(-3px);
}

.page-industry-news__cta-button--secondary {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
  margin-top: 20px;
}

.page-industry-news__cta-button--secondary:hover {
  background-color: #003366;
  color: #FFCC00;
}

.page-industry-news__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-industry-news__section:nth-of-type(odd) {
  background-color: #f0f4f7; /* Light blue-grey for alternating sections */
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-industry-news__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

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

.page-industry-news__news-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news__news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-industry-news__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-industry-news__card-title {
  font-size: 1.5em;
  color: #003366;
  padding: 20px 20px 10px;
}

.page-industry-news__card-excerpt {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 15px;
}

.page-industry-news__read-more {
  display: inline-block;
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
  padding: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-industry-news__read-more:hover {
  color: #003366;
}

.page-industry-news__in-depth-analysis .page-industry-news__analysis-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.page-industry-news__in-depth-analysis .page-industry-news__analysis-item:last-child {
  margin-bottom: 0;
}

.page-industry-news__item-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-industry-news__item-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-industry-news__new88-updates p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-industry-news__related-articles .page-industry-news__article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-industry-news__list-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.page-industry-news__list-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-industry-news__list-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-industry-news__list-title a:hover {
  color: #FFCC00;
}

.page-industry-news__list-description {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

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

  .page-industry-news__hero-subtitle,
  .page-industry-news__section-description {
    font-size: 1em;
  }

  .page-industry-news__section-title {
    font-size: 2em;
  }

  .page-industry-news__grid {
    grid-template-columns: 1fr;
  }

  .page-industry-news__in-depth-analysis .page-industry-news__analysis-item {
    padding: 20px;
  }

  .page-industry-news__item-title {
    font-size: 1.5em;
  }

  .page-industry-news__article-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-industry-news__hero {
    padding: 60px 0;
  }

  .page-industry-news__hero-title {
    font-size: 2em;
  }

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

  .page-industry-news__section {
    padding: 40px 0;
  }

  .page-industry-news__section-title {
    font-size: 1.8em;
  }

  .page-industry-news__card-title {
    font-size: 1.3em;
  }

  .page-industry-news__item-title {
    font-size: 1.3em;
  }
}