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

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

.page-industry-news-latest-regulations__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #3a4a5f 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-industry-news-latest-regulations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-industry-news-latest-regulations__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-industry-news-latest-regulations__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-industry-news-latest-regulations__cta-button:hover {
  background-color: #e0b800; /* Slightly darker gold on hover */
  color: #000000;
}

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

.page-industry-news-latest-regulations__article {
  max-width: 900px;
  margin: 0 auto;
}

.page-industry-news-latest-regulations__section-title {
  font-size: 2.5em;
  color: #0A192F; /* Dark blue heading */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-industry-news-latest-regulations__sub-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-industry-news-latest-regulations__article p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #333333;
}

.page-industry-news-latest-regulations__article ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #333333;
}

.page-industry-news-latest-regulations__article li {
  margin-bottom: 0.5em;
}

.page-industry-news-latest-regulations__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

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

.page-industry-news-latest-regulations__image-caption {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}

.page-industry-news-latest-regulations__cta-group {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-industry-news-latest-regulations__cta-button--primary {
  background-color: #FFD700;
  color: #0A192F;
  margin-right: 15px;
  border: none;
}

.page-industry-news-latest-regulations__cta-button--primary:hover {
  background-color: #e0b800;
  color: #000000;
}

.page-industry-news-latest-regulations__cta-button--secondary {
  background-color: #0A192F;
  color: #ffffff;
  border: 2px solid #0A192F;
}

.page-industry-news-latest-regulations__cta-button--secondary:hover {
  background-color: #1a2a42;
  border-color: #1a2a42;
  color: #FFD700;
}

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

  .page-industry-news-latest-regulations__hero-subtitle {
    font-size: 1.2em;
  }

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

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

  .page-industry-news-latest-regulations__cta-group {
    flex-direction: column;
  }

  .page-industry-news-latest-regulations__cta-button {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
  }
}

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

  .page-industry-news-latest-regulations__hero-subtitle {
    font-size: 1em;
  }

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

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