/* style/gambling-news-regulatory-updates.css */

/* Variables for colors */
:root {
  --page-gambling-news-regulatory-updates-primary-color: #007bff;
  --page-gambling-news-regulatory-updates-secondary-color: #ffc107;
  --page-gambling-news-regulatory-updates-text-dark: #333;
  --page-gambling-news-regulatory-updates-text-light: #fff;
  --page-gambling-news-regulatory-updates-bg-light: #f8f9fa;
  --page-gambling-news-regulatory-updates-bg-dark: #212529;
  --page-gambling-news-regulatory-updates-link-color: #0056b3; /* Darker blue for contrast */
}

.page-gambling-news-regulatory-updates {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--page-gambling-news-regulatory-updates-text-dark);
  background-color: var(--page-gambling-news-regulatory-updates-bg-light);
}

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

/* Hero Section */
.page-gambling-news-regulatory-updates__hero {
  background: linear-gradient(135deg, var(--page-gambling-news-regulatory-updates-primary-color) 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: var(--page-gambling-news-regulatory-updates-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gambling-news-regulatory-updates__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-gambling-news-regulatory-updates__hero > .page-gambling-news-regulatory-updates__container {
  position: relative;
  z-index: 1;
}

.page-gambling-news-regulatory-updates__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--page-gambling-news-regulatory-updates-text-light);
}

.page-gambling-news-regulatory-updates__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  font-weight: 300;
  color: #e0e0e0; /* Slightly off-white for softer look */
}

/* CTA Button */
.page-gambling-news-regulatory-updates__cta-button {
  display: inline-block;
  background-color: var(--page-gambling-news-regulatory-updates-secondary-color);
  color: var(--page-gambling-news-regulatory-updates-text-dark);
  padding: 15px 35px;
  border-radius: 5px;
  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-gambling-news-regulatory-updates__cta-button:hover {
  background-color: #e6b000; /* Slightly darker gold */
  transform: translateY(-3px);
}

/* General Section Styling */
.page-gambling-news-regulatory-updates__section {
  padding: 60px 0;
}

.page-gambling-news-regulatory-updates__section:nth-of-type(even) {
  background-color: #f0f4f8; /* Light blue-grey for alternating sections */
}

.page-gambling-news-regulatory-updates__section-title {
  font-size: 2.5em;
  color: var(--page-gambling-news-regulatory-updates-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}

.page-gambling-news-regulatory-updates__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-gambling-news-regulatory-updates-secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gambling-news-regulatory-updates__overview p,
.page-gambling-news-regulatory-updates__latest-updates p,
.page-gambling-news-regulatory-updates__player-protection p,
.page-gambling-news-regulatory-updates__technology p,
.page-gambling-news-regulatory-updates__future-outlook p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #555;
}

.page-gambling-news-regulatory-updates__overview h3,
.page-gambling-news-regulatory-updates__player-protection h3,
.page-gambling-news-regulatory-updates__technology h3,
.page-gambling-news-regulatory-updates__future-outlook h3 {
  font-size: 1.8em;
  color: var(--page-gambling-news-regulatory-updates-primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gambling-news-regulatory-updates__overview ul,
.page-gambling-news-regulatory-updates__player-protection ul,
.page-gambling-news-regulatory-updates__technology ul,
.page-gambling-news-regulatory-updates__future-outlook ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-gambling-news-regulatory-updates__overview ul li,
.page-gambling-news-regulatory-updates__player-protection ul li,
.page-gambling-news-regulatory-updates__technology ul li,
.page-gambling-news-regulatory-updates__future-outlook ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gambling-news-regulatory-updates__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

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

/* Latest Updates Grid */
.page-gambling-news-regulatory-updates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gambling-news-regulatory-updates__article-card {
  background-color: var(--page-gambling-news-regulatory-updates-text-light);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-news-regulatory-updates__article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gambling-news-regulatory-updates__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-gambling-news-regulatory-updates__article-card > div {
  padding: 25px;
}

.page-gambling-news-regulatory-updates__article-title {
  font-size: 1.5em;
  color: var(--page-gambling-news-regulatory-updates-primary-color);
  margin: 20px 0 10px;
  padding: 0 25px;
}

.page-gambling-news-regulatory-updates__article-excerpt {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  padding: 0 25px;
}

.page-gambling-news-regulatory-updates__read-more {
  display: inline-block;
  color: var(--page-gambling-news-regulatory-updates-link-color);
  text-decoration: none;
  font-weight: bold;
  margin-left: 25px;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.page-gambling-news-regulatory-updates__read-more:hover {
  color: var(--page-gambling-news-regulatory-updates-secondary-color);
}

.page-gambling-news-regulatory-updates__more-info {
  text-align: center;
  margin-top: 50px;
  font-style: italic;
  color: #666;
}

/* Secondary CTA button */
.page-gambling-news-regulatory-updates__cta-button--secondary {
  background-color: var(--page-gambling-news-regulatory-updates-primary-color);
  color: var(--page-gambling-news-regulatory-updates-text-light);
  margin-top: 20px;
}

.page-gambling-news-regulatory-updates__cta-button--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* CTA Banner */
.page-gambling-news-regulatory-updates__cta-banner {
  background: linear-gradient(90deg, var(--page-gambling-news-regulatory-updates-primary-color) 0%, #0056b3 100%);
  color: var(--page-gambling-news-regulatory-updates-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-gambling-news-regulatory-updates__cta-content {
  max-width: 900px;
}

.page-gambling-news-regulatory-updates__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-gambling-news-regulatory-updates-text-light);
}

.page-gambling-news-regulatory-updates__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-gambling-news-regulatory-updates__cta-banner .page-gambling-news-regulatory-updates__cta-button {
  margin: 0 10px;
}

.page-gambling-news-regulatory-updates__cta-banner .page-gambling-news-regulatory-updates__cta-button--primary {
  background-color: var(--page-gambling-news-regulatory-updates-secondary-color);
  color: var(--page-gambling-news-regulatory-updates-text-dark);
}

.page-gambling-news-regulatory-updates__cta-banner .page-gambling-news-regulatory-updates__cta-button--primary:hover {
  background-color: #e6b000;
}

.page-gambling-news-regulatory-updates__cta-banner .page-gambling-news-regulatory-updates__cta-button--secondary {
  background-color: transparent;
  border: 2px solid var(--page-gambling-news-regulatory-updates-secondary-color);
  color: var(--page-gambling-news-regulatory-updates-secondary-color);
}

.page-gambling-news-regulatory-updates__cta-banner .page-gambling-news-regulatory-updates__cta-button--secondary:hover {
  background-color: var(--page-gambling-news-regulatory-updates-secondary-color);
  color: var(--page-gambling-news-regulatory-updates-text-dark);
  transform: translateY(-3px);
}

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

  .page-gambling-news-regulatory-updates__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-gambling-news-regulatory-updates__article-title {
    font-size: 1.3em;
  }

  .page-gambling-news-regulatory-updates__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-gambling-news-regulatory-updates__hero {
    padding: 80px 0;
  }

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

  .page-gambling-news-regulatory-updates__hero-subtitle {
    font-size: 1em;
  }

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

  .page-gambling-news-regulatory-updates__section {
    padding: 40px 0;
  }

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

  .page-gambling-news-regulatory-updates__grid {
    grid-template-columns: 1fr;
  }

  .page-gambling-news-regulatory-updates__article-image {
    height: 180px;
  }

  .page-gambling-news-regulatory-updates__cta-banner {
    padding: 60px 0;
  }

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

  .page-gambling-news-regulatory-updates__cta-text {
    font-size: 1em;
  }

  .page-gambling-news-regulatory-updates__cta-banner .page-gambling-news-regulatory-updates__cta-button {
    margin: 10px 0;
    display: block;
    width: 80%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

  .page-gambling-news-regulatory-updates__hero-subtitle {
    font-size: 0.9em;
  }

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

  .page-gambling-news-regulatory-updates__article-title {
    font-size: 1.2em;
  }

  .page-gambling-news-regulatory-updates__overview ul,
  .page-gambling-news-regulatory-updates__player-protection ul,
  .page-gambling-news-regulatory-updates__technology ul,
  .page-gambling-news-regulatory-updates__future-outlook ul {
    margin-left: 15px;
  }
}