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

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

.page-industry-news__hero {
  background: linear-gradient(135deg, #0A2463, #3f518b);
  color: #fff;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* WCAG AA contrast with #0A2463 */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.page-industry-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Good contrast with #0A2463 */
}

.page-industry-news__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-industry-news__section {
  padding: 60px 0;
  background-color: #fff;
}

.page-industry-news__section--dark {
  background-color: #0A2463;
  color: #e0e0e0;
}

.page-industry-news__section--dark .page-industry-news__section-title,
.page-industry-news__section--dark .page-industry-news__subsection-title {
  color: #FFD700; /* WCAG AA contrast with #0A2463 */
}

.page-industry-news__section--light-grey {
  background-color: #f8f8f8;
  color: #333; /* Good contrast with #f8f8f8 */
}

.page-industry-news__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Good contrast with #fff or #f8f8f8 */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-industry-news__section-title--center {
  text-align: center;
}

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

.page-industry-news__section--dark .page-industry-news__section-title::after {
  background-color: #FFD700;
}

.page-industry-news__content-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-industry-news__subsection-title {
  font-size: 1.8em;
  color: #0A2463; /* Good contrast with #fff or #f8f8f8 */
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-industry-news__section--dark .page-industry-news__subsection-title {
  color: #FFD700; /* WCAG AA contrast with #0A2463 */
}

.page-industry-news__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin: 30px 0;
}

.page-industry-news__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news__cta-block {
  background-color: #f0f0f0; /* Light background for CTA */
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin: 40px 0;
  border-radius: 5px;
  text-align: center;
  color: #333; /* Good contrast with #f0f0f0 */
}

.page-industry-news__section--dark .page-industry-news__cta-block {
  background-color: #1a3a7c; /* Darker background for CTA in dark section */
  color: #e0e0e0; /* Good contrast with #1a3a7c */
}

.page-industry-news__cta-block p {
  font-size: 1.2em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-industry-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-industry-news__btn--primary {
  background-color: #FFD700;
  color: #0A2463; /* WCAG AA contrast with #FFD700 */
  border: 2px solid #FFD700;
}

.page-industry-news__btn--primary:hover {
  background-color: #e6c200;
  color: #0A2463;
}

.page-industry-news__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* WCAG AA contrast with #0A2463 */
  border: 2px solid #FFD700;
}

.page-industry-news__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-industry-news__btn--link {
  background-color: #0A2463;
  color: #FFD700; /* WCAG AA contrast with #0A2463 */
  border: 1px solid #0A2463;
  padding: 8px 15px;
  font-size: 1em;
}

.page-industry-news__btn--link:hover {
  background-color: #FFD700;
  color: #0A2463;
  border-color: #FFD700;
}

.page-industry-news__conclusion-text {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.page-industry-news__detail-list {
  background-color: #f0f4f7;
  padding-bottom: 80px;
}

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

.page-industry-news__detail-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-industry-news__detail-title {
  font-size: 1.4em;
  color: #0A2463; /* Good contrast with #fff */
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-industry-news__detail-title a {
  text-decoration: none;
  color: #0A2463; /* Good contrast with #fff */
  transition: color 0.3s ease;
}

.page-industry-news__detail-title a:hover {
  color: #FFD700; /* WCAG AA contrast with #fff */
}

.page-industry-news__detail-description {
  font-size: 1em;
  color: #555; /* Good contrast with #fff */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Animation for sections */
.page-industry-news__section--hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-industry-news__section--visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .page-industry-news__hero-subtitle {
    font-size: 1.1em;
  }

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

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

  .page-industry-news__content-block p {
    font-size: 1em;
  }

  .page-industry-news__cta-block p {
    font-size: 1.1em;
  }
}

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

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

  .page-industry-news__hero-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-industry-news__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-industry-news__subsection-title {
    font-size: 1.3em;
    margin-top: 25px;
  }

  .page-industry-news__cta-block {
    padding: 20px;
    margin: 30px 0;
  }

  .page-industry-news__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

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

  .page-industry-news__detail-item {
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .page-industry-news__hero-title {
    font-size: 1.8em;
  }

  .page-industry-news__hero-subtitle {
    font-size: 0.9em;
  }

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

  .page-industry-news__subsection-title {
    font-size: 1.2em;
  }

  .page-industry-news__btn {
    width: 100%;
    margin-top: 10px;
  }
  .page-industry-news__cta-block .page-industry-news__btn {
    display: block;
  }
}