/* style/industry-news.css */

/* Base styles for the page */
.page-industry-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Default text color for dark backgrounds */
}

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

.page-industry-news__hero-section {
  background-color: #0A192F; /* Dark primary background */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold text for hero title */
}

.page-industry-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-industry-news__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto;
  color: #E0E0E0;
}

.page-industry-news__content-section {
  padding: 80px 0;
}

.page-industry-news__bg-dark {
  background-color: #0A192F;
  color: #F0F0F0;
}

.page-industry-news__bg-light {
  background-color: #1A2B47; /* Slightly lighter dark blue for contrast */
  color: #F0F0F0;
}

.page-industry-news__bg-gold {
  background-color: #FFD700; /* Auxiliary gold background */
  color: #0A192F; /* Dark text on gold background */
}

.page-industry-news__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: #FFD700; /* Gold for main section titles */
}

.page-industry-news__bg-dark .page-industry-news__section-title,
.page-industry-news__bg-dark .page-industry-news__sub-title {
  color: #FFD700;
}

.page-industry-news__bg-light .page-industry-news__section-title,
.page-industry-news__bg-light .page-industry-news__sub-title {
  color: #FFD700; /* Gold on lighter dark blue */
}

.page-industry-news__sub-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-industry-news p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-industry-news__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-industry-news__list li {
  margin-bottom: 10px;
}

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

.page-industry-news__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 30px;
  cursor: pointer;
  text-align: center;
}

.page-industry-news__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

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

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

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

.page-industry-news__btn--dark {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #0A192F;
}

.page-industry-news__btn--dark:hover {
  background-color: #2c3e50;
  border-color: #2c3e50;
}

.page-industry-news__cta-section {
  text-align: center;
  padding: 80px 0;
}

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

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

  .page-industry-news__hero-subtitle,
  .page-industry-news p,
  .page-industry-news__list li {
    font-size: 1em;
  }

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

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

  .page-industry-news__hero-section,
  .page-industry-news__content-section,
  .page-industry-news__cta-section {
    padding: 60px 0;
  }

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

  .page-industry-news__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-industry-news__hero-section,
  .page-industry-news__content-section,
  .page-industry-news__cta-section {
    padding: 40px 0;
  }

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

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

  .page-industry-news__btn {
    width: 100%;
    max-width: 280px;
  }
}