/* style/news-regulatory-changes.css */
.page-news-regulatory-changes {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #1A1A2E; /* Main brand dark background */
}

.page-news-regulatory-changes__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news-regulatory-changes__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #301934 100%); /* Gradient with main color */
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #E94560;
}

.page-news-regulatory-changes__hero-title {
  font-size: 3.5em;
  color: #E94560; /* Accent color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-regulatory-changes__hero-description {
  font-size: 1.3em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-news-regulatory-changes__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-news-regulatory-changes__btn {
  display: inline-block;
  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;
  border: none;
  cursor: pointer;
}

.page-news-regulatory-changes__btn--primary {
  background-color: #E94560; /* Accent color */
  color: #FFFFFF;
}

.page-news-regulatory-changes__btn--primary:hover {
  background-color: #D43A52;
  transform: translateY(-3px);
}

.page-news-regulatory-changes__btn--secondary {
  background-color: #301934; /* Darker variant of main color */
  color: #E94560;
  border: 2px solid #E94560;
}

.page-news-regulatory-changes__btn--secondary:hover {
  background-color: #E94560;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-news-regulatory-changes__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(233, 69, 96, 0.2);
}

.page-news-regulatory-changes__section--alt-bg {
  background-color: #151525; /* Slightly lighter dark background */
}

.page-news-regulatory-changes__section-title {
  font-size: 2.5em;
  color: #E94560; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-news-regulatory-changes__article {
  margin-bottom: 50px;
  padding: 30px;
  background-color: #202030;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-news-regulatory-changes__article-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
  border-bottom: 2px solid #E94560;
  padding-bottom: 10px;
}

.page-news-regulatory-changes__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #B0B0B0;
}

.page-news-regulatory-changes__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #B0B0B0;
}

.page-news-regulatory-changes__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-news-regulatory-changes__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-news-regulatory-changes__link {
  color: #E94560;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-regulatory-changes__link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-news-regulatory-changes__cta-section {
  background: linear-gradient(45deg, #E94560 0%, #D43A52 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-news-regulatory-changes__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-news-regulatory-changes__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
}

.page-news-regulatory-changes__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.page-news-regulatory-changes__image--cta {
  max-width: 600px;
  margin-top: 0;
}

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

  .page-news-regulatory-changes__hero-description {
    font-size: 1.1em;
  }

  .page-news-regulatory-changes__section-title {
    font-size: 2em;
  }

  .page-news-regulatory-changes__article-title {
    font-size: 1.5em;
  }

  .page-news-regulatory-changes__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-news-regulatory-changes__hero-cta-group, .page-news-regulatory-changes__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-news-regulatory-changes__cta-title {
    font-size: 2em;
  }

  .page-news-regulatory-changes__cta-description {
    font-size: 1em;
  }
}

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

  .page-news-regulatory-changes__hero {
    padding: 60px 0 40px;
  }

  .page-news-regulatory-changes__section-title {
    font-size: 1.8em;
  }

  .page-news-regulatory-changes__article {
    padding: 20px;
  }

  .page-news-regulatory-changes__cta-title {
    font-size: 1.8em;
  }
}