/* style/industry-news-latest-regulations.css */
.page-industry-news-latest-regulations {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  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, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-industry-news-latest-regulations__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0) 70%);
  opacity: 0.3;
  animation: rotateGradient 15s linear infinite;
}

@keyframes rotateGradient {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-industry-news-latest-regulations__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Gold for emphasis */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-latest-regulations__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-industry-news-latest-regulations__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color */
  color: #003366; /* Dark blue for text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.page-industry-news-latest-regulations__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

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

.page-industry-news-latest-regulations__article h2 {
  font-size: 2.2em;
  color: #003366; /* Main color */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFCC00;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-industry-news-latest-regulations__article h3 {
  font-size: 1.8em;
  color: #004488; /* Slightly lighter dark blue */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-industry-news-latest-regulations__article h4 {
  font-size: 1.4em;
  color: #0055aa;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}

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

.page-industry-news-latest-regulations__article ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-industry-news-latest-regulations__article ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-industry-news-latest-regulations__image {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-latest-regulations__image--full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.page-industry-news-latest-regulations__cta-section {
  background-color: #003366; /* Main color */
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-industry-news-latest-regulations__cta-title {
  font-size: 2.5em;
  color: #FFCC00; /* Auxiliary color */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-industry-news-latest-regulations__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-industry-news-latest-regulations__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

/* 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__article h2 {
    font-size: 1.8em;
  }
  .page-industry-news-latest-regulations__article h3 {
    font-size: 1.5em;
  }
  .page-industry-news-latest-regulations__cta-title {
    font-size: 2em;
  }
  .page-industry-news-latest-regulations__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-industry-news-latest-regulations__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@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__article h2 {
    font-size: 1.6em;
  }
  .page-industry-news-latest-regulations__article h3 {
    font-size: 1.3em;
  }
  .page-industry-news-latest-regulations__article p,
  .page-industry-news-latest-regulations__article ul li {
    font-size: 0.95em;
  }
  .page-industry-news-latest-regulations__cta-title {
    font-size: 1.8em;
  }
  .page-industry-news-latest-regulations__cta-description {
    font-size: 1em;
  }
  .page-industry-news-latest-regulations__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-industry-news-latest-regulations__cta-button--large {
    width: auto;
  }
}