/* style/news-gambling-regulations-updates.css */
.page-news-gambling-regulations-updates {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-news-gambling-regulations-updates__hero {
  background: linear-gradient(135deg, #0A2342 0%, #0A2342 60%, #E6B325 100%);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news-gambling-regulations-updates__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-news-gambling-regulations-updates__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #E6B325;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-gambling-regulations-updates__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-gambling-regulations-updates__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-news-gambling-regulations-updates__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news-gambling-regulations-updates__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-news-gambling-regulations-updates__section:nth-of-type(even) {
  background-color: #fff;
}

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

.page-news-gambling-regulations-updates__section-title {
  font-size: 2.2em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news-gambling-regulations-updates__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E6B325;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-news-gambling-regulations-updates__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-news-gambling-regulations-updates__image--full-width {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-news-gambling-regulations-updates__image--centered {
  display: block;
  margin: 30px auto;
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-news-gambling-regulations-updates__grid-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-gambling-regulations-updates__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-news-gambling-regulations-updates__grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-news-gambling-regulations-updates__grid-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-news-gambling-regulations-updates__grid-text {
  font-size: 1em;
  color: #555;
}

.page-news-gambling-regulations-updates__list,
.page-news-gambling-regulations-updates__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-news-gambling-regulations-updates__ordered-list {
  list-style-type: decimal;
}

.page-news-gambling-regulations-updates__list li,
.page-news-gambling-regulations-updates__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-news-gambling-regulations-updates__list-highlight {
  color: #0A2342;
}

.page-news-gambling-regulations-updates__cta-wrapper {
  background-color: #0A2342;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-news-gambling-regulations-updates__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-news-gambling-regulations-updates__cta-button {
  display: inline-block;
  background-color: #E6B325;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-gambling-regulations-updates__cta-button:hover {
  background-color: #d1a320;
  transform: translateY(-3px);
}

.page-news-gambling-regulations-updates__cta-button--large {
  font-size: 1.3em;
  padding: 18px 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-news-gambling-regulations-updates__hero {
    padding: 60px 15px;
  }

  .page-news-gambling-regulations-updates__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-news-gambling-regulations-updates__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-news-gambling-regulations-updates__text,
  .page-news-gambling-regulations-updates__list li,
  .page-news-gambling-regulations-updates__ordered-list li {
    font-size: 1em;
  }

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

  .page-news-gambling-regulations-updates__cta-text {
    font-size: 1.3em;
  }

  .page-news-gambling-regulations-updates__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

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

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

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

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

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