.page-betting-news-insights-policy-regulations-analysis {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-betting-news-insights-policy-regulations-analysis .highlight {
  color: #007bff; /* Primary color for highlights */
  font-weight: bold;
}

.page-betting-news-insights-policy-regulations-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-betting-news-insights-policy-regulations-analysis__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-betting-news-insights-policy-regulations-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-betting-news-insights-policy-regulations-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.page-betting-news-insights-policy-regulations-analysis__hero-title .highlight {
  color: #ffc107; /* Auxiliary color for keyword in title */
}

.page-betting-news-insights-policy-regulations-analysis__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-betting-news-insights-policy-regulations-analysis__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for CTA button */
  color: #333; /* Dark text for contrast on light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-news-insights-policy-regulations-analysis__cta-button:hover {
  background-color: #e0a800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-betting-news-insights-policy-regulations-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.15;
}

.page-betting-news-insights-policy-regulations-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(50%);
}

/* Content Section */
.page-betting-news-insights-policy-regulations-analysis__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-betting-news-insights-policy-regulations-analysis__article {
  max-width: 900px;
  margin: 0 auto;
}

.page-betting-news-insights-policy-regulations-analysis__heading {
  font-size: 2.5em;
  color: #007bff; /* Primary color for main headings */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #ffc107; /* Auxiliary color for heading underline */
  padding-bottom: 10px;
}

.page-betting-news-insights-policy-regulations-analysis__sub-heading {
  font-size: 1.8em;
  color: #0056b3; /* Darker primary color for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-betting-news-insights-policy-regulations-analysis__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-betting-news-insights-policy-regulations-analysis__article ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-betting-news-insights-policy-regulations-analysis__article li {
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #444;
}

.page-betting-news-insights-policy-regulations-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-betting-news-insights-policy-regulations-analysis__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #f0f8ff; /* Light background for CTA block */
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.page-betting-news-insights-policy-regulations-analysis__cta-text {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-betting-news-insights-policy-regulations-analysis__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

/* Related Articles Section */
.page-betting-news-insights-policy-regulations-analysis__related-articles {
  padding: 60px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.page-betting-news-insights-policy-regulations-analysis__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-news-insights-policy-regulations-analysis__article-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-betting-news-insights-policy-regulations-analysis__article-card:hover {
  transform: translateY(-5px);
}

.page-betting-news-insights-policy-regulations-analysis__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-betting-news-insights-policy-regulations-analysis__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin: 20px 20px 10px;
}

.page-betting-news-insights-policy-regulations-analysis__card-description {
  font-size: 1em;
  color: #555;
  margin: 0 20px 20px;
}

.page-betting-news-insights-policy-regulations-analysis__read-more {
  display: inline-block;
  color: #ffc107; /* Auxiliary color for read more link */
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  padding-bottom: 3px;
  border-bottom: 2px solid #ffc107;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-betting-news-insights-policy-regulations-analysis__read-more:hover {
  color: #e0a800;
  border-color: #e0a800;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-betting-news-insights-policy-regulations-analysis__hero-title {
    font-size: 2.5em;
  }

  .page-betting-news-insights-policy-regulations-analysis__hero-subtitle {
    font-size: 1.2em;
  }

  .page-betting-news-insights-policy-regulations-analysis__heading {
    font-size: 2em;
  }

  .page-betting-news-insights-policy-regulations-analysis__sub-heading {
    font-size: 1.5em;
  }

  .page-betting-news-insights-policy-regulations-analysis__articles-grid {
    grid-template-columns: 1fr;
  }

  .page-betting-news-insights-policy-regulations-analysis__cta-text {
    font-size: 1.3em;
  }

  .page-betting-news-insights-policy-regulations-analysis__cta-button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}

@media (max-width: 480px) {
  .page-betting-news-insights-policy-regulations-analysis__hero-title {
    font-size: 2em;
  }

  .page-betting-news-insights-policy-regulations-analysis__hero-subtitle {
    font-size: 1em;
  }

  .page-betting-news-insights-policy-regulations-analysis__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-betting-news-insights-policy-regulations-analysis__heading {
    font-size: 1.8em;
  }

  .page-betting-news-insights-policy-regulations-analysis__sub-heading {
    font-size: 1.3em;
  }
}