/* style/gambling-news-industry-trends.css */
.page-gambling-news-industry-trends__hero-section {
  background: linear-gradient(135deg, #004AAD, #0028ff);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gambling-news-industry-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gambling-news-industry-trends__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for emphasis */
}

.page-gambling-news-industry-trends__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-gambling-news-industry-trends__content-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-gambling-news-industry-trends__section-title {
  font-size: 2.2em;
  color: #004AAD;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-gambling-news-industry-trends__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444444;
}

.page-gambling-news-industry-trends__keyword {
  color: #004AAD;
  font-weight: bold;
}

.page-gambling-news-industry-trends__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #555555;
}

.page-gambling-news-industry-trends__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

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

.page-gambling-news-industry-trends__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-gambling-news-industry-trends__btn--primary {
  background-color: #FFD700;
  color: #004AAD;
  border: 2px solid #FFD700;
}

.page-gambling-news-industry-trends__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-gambling-news-industry-trends__btn--secondary {
  background-color: transparent;
  color: #004AAD;
  border: 2px solid #004AAD;
}

.page-gambling-news-industry-trends__btn--secondary:hover {
  background-color: #004AAD;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-gambling-news-industry-trends__cta-group {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

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

  .page-gambling-news-industry-trends__hero-subtitle {
    font-size: 1.2em;
  }

  .page-gambling-news-industry-trends__section-title {
    font-size: 1.8em;
  }

  .page-gambling-news-industry-trends__paragraph {
    font-size: 1em;
  }

  .page-gambling-news-industry-trends__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  .page-gambling-news-industry-trends__hero-subtitle {
    font-size: 1em;
  }

  .page-gambling-news-industry-trends__section-title {
    font-size: 1.5em;
  }

  .page-gambling-news-industry-trends__btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}