/* 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, #0A2239 0%, #2a4a6b 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.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__hero-btn {
  display: inline-block;
  background-color: #E0B400; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  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 8px rgba(0, 0, 0, 0.2);
}

.page-industry-news-latest-regulations__hero-btn:hover {
  background-color: #f0c800; /* Slightly brighter gold on hover */
  transform: translateY(-2px);
}

.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;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

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

.page-industry-news-latest-regulations__article p a {
  color: #0A2239;
  text-decoration: underline;
}

.page-industry-news-latest-regulations__article p a:hover {
  color: #E0B400;
}

.page-industry-news-latest-regulations__heading {
  font-size: 2.2em;
  color: #0A2239; /* Dark blue for main headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #E0B400; /* Gold underline */
  padding-bottom: 10px;
  font-weight: bold;
}

.page-industry-news-latest-regulations__sub-heading {
  font-size: 1.8em;
  color: #0A2239; /* Dark blue for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-industry-news-latest-regulations__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-industry-news-latest-regulations__image--full-width {
  width: 100%;
}

.page-industry-news-latest-regulations__image--medium {
  width: 75%; /* Adjust as needed */
}

.page-industry-news-latest-regulations__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-industry-news-latest-regulations__cta-btn {
  display: inline-block;
  background-color: #0A2239; /* Dark blue button */
  color: #E0B400; /* Gold text on dark blue */
  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, color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 200px;
}

.page-industry-news-latest-regulations__cta-btn:hover {
  background-color: #E0B400; /* Gold on hover */
  color: #0A2239; /* Dark blue text on gold */
  transform: translateY(-2px);
}

/* Responsive Design */
@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__heading {
    font-size: 1.8em;
  }

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

  .page-industry-news-latest-regulations__article {
    padding: 20px;
  }

  .page-industry-news-latest-regulations__list {
    margin-left: 20px;
  }

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

  .page-industry-news-latest-regulations__image--medium {
    width: 90%;
  }
}

@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__hero-btn,
  .page-industry-news-latest-regulations__cta-btn {
    padding: 12px 20px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
  }

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

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

  .page-industry-news-latest-regulations__article {
    padding: 15px;
  }
}