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

.page-industry-news__hero {
  background: linear-gradient(135deg, #003366 0%, #0055aa 100%); /* JJ88 Blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-industry-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-industry-news__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Glory Gold for emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-industry-news__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-industry-news__btn--primary {
  background-color: #FFD700; /* Glory Gold */
  color: #003366; /* JJ88 Blue */
  border: 2px solid #FFD700;
}

.page-industry-news__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-industry-news__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-industry-news__section--alt-bg {
  background-color: #f0f5fa; /* Lighter shade of JJ88 Blue */
}

.page-industry-news__heading {
  font-size: 2.2em;
  color: #003366; /* JJ88 Blue */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-industry-news__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

.page-industry-news__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-industry-news__list-item {
  background-color: #e6f0f9; /* Lighter blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #003366;
  border-radius: 5px;
  font-size: 1em;
  color: #222;
}

.page-industry-news__list-item strong {
  color: #003366;
}

.page-industry-news__cta-box {
  background-color: #003366;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-industry-news__cta-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-industry-news__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-industry-news__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-industry-news__btn--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

.page-industry-news__section--related-articles {
  background-color: #f8f8f8;
}

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

.page-industry-news__article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-industry-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.page-industry-news__article-title {
  font-size: 1.4em;
  color: #003366;
  padding: 15px 20px 10px;
  min-height: 70px;
}

.page-industry-news__article-title a {
  text-decoration: none;
  color: #003366;
}

.page-industry-news__article-title a:hover {
  color: #FFD700;
}

.page-industry-news__article-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-industry-news__btn--link {
  display: inline-block;
  margin: 0 20px 20px;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #003366;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-industry-news__btn--link:hover {
  background-color: #003366;
  color: #FFD700;
}

/* Floating promotion button */
.page-industry-news__floating-promo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-industry-news__floating-promo.is-active {
  opacity: 1;
  transform: translateY(0);
}

.page-industry-news__floating-btn {
  background-color: #FFD700; /* Glory Gold */
  color: #003366; /* JJ88 Blue */
  border-radius: 50px;
  padding: 15px 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.page-industry-news__floating-btn:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.page-industry-news__floating-text {
  font-weight: bold;
  margin-right: 10px;
  white-space: nowrap;
}

.page-industry-news__floating-icon {
  font-size: 1.5em;
  line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-industry-news__title {
    font-size: 2.2em;
  }

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

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

  .page-industry-news__paragraph,
  .page-industry-news__list-item {
    font-size: 0.95em;
  }

  .page-industry-news__cta-title {
    font-size: 1.6em;
  }

  .page-industry-news__cta-text {
    font-size: 1em;
  }

  .page-industry-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-industry-news__btn {
    width: 100%;
    box-sizing: border-box;
  }

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

  .page-industry-news__floating-promo {
    bottom: 20px;
    right: 20px;
  }
}

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

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

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

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

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

  .page-industry-news__cta-box {
    padding: 30px;
  }

  .page-industry-news__floating-btn {
    padding: 12px 20px;
  }

  .page-industry-news__floating-text {
    font-size: 0.9em;
  }
}