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

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

.page-gambling-news__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Adjusted for better contrast with text */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gambling-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-gambling-news__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #e0e0e0;
}

.page-gambling-news__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #000; /* High contrast for text on yellow */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-gambling-news__cta-button:hover {
  background-color: #e0a800; /* Darker yellow on hover */
  transform: translateY(-3px);
}

.page-gambling-news__section {
  padding: 60px 0;
}

.page-gambling-news__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-gambling-news__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gambling-news__articles-grid,
.page-gambling-news__insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gambling-news__article,
.page-gambling-news__insight-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-gambling-news__article:hover,
.page-gambling-news__insight-card:hover {
  transform: translateY(-5px);
}

.page-gambling-news__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-gambling-news__article-title {
  font-size: 1.6em;
  color: #0056b3; /* Darker primary for contrast */
  padding: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gambling-news__article-excerpt {
  font-size: 1em;
  color: #666;
  padding: 0 20px 20px;
}

.page-gambling-news__read-more {
  display: inline-block;
  color: #007bff; /* Primary color */
  text-decoration: none;
  font-weight: bold;
  padding: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-gambling-news__read-more:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-gambling-news__pg88-updates {
  background-color: #e9f7fe; /* Light blue background */
}

.page-gambling-news__updates-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-gambling-news__update-item {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  align-items: center;
}

.page-gambling-news__update-image {
  width: 350px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-gambling-news__update-content {
  padding: 30px;
}

.page-gambling-news__update-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gambling-news__update-text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.page-gambling-news__btn-secondary {
  display: inline-block;
  background-color: #007bff; /* Primary color */
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gambling-news__btn-secondary:hover {
  background-color: #0056b3;
}

.page-gambling-news__insight-card {
  padding: 30px;
  text-align: center;
}

.page-gambling-news__insight-title {
  font-size: 1.5em;
  color: #0056b3;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gambling-news__insight-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-gambling-news__cta-bottom {
  background-color: #007bff; /* Primary color */
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-gambling-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffc107; /* Auxiliary color for highlight */
}

.page-gambling-news__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-gambling-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-gambling-news__btn-outline {
  display: inline-block;
  border: 2px solid #ffc107; /* Auxiliary color */
  color: #ffc107; /* Auxiliary color */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gambling-news__btn-outline:hover {
  background-color: #ffc107; /* Auxiliary color */
  color: #000; /* High contrast text */
}

.highlight {
  color: #ffc107; /* Auxiliary color */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gambling-news__hero-title {
    font-size: 2.8em;
  }
  .page-gambling-news__hero-subtitle {
    font-size: 1.3em;
  }
  .page-gambling-news__section-title {
    font-size: 2em;
  }
  .page-gambling-news__update-item {
    flex-direction: column;
    text-align: center;
  }
  .page-gambling-news__update-image {
    width: 100%;
    height: 250px;
  }
  .page-gambling-news__cta-title {
    font-size: 2.2em;
  }
  .page-gambling-news__cta-description {
    font-size: 1.1em;
  }
  .page-gambling-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gambling-news__cta-button, .page-gambling-news__btn-outline {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-gambling-news__hero {
    padding: 80px 0;
  }
  .page-gambling-news__hero-title {
    font-size: 2.2em;
  }
  .page-gambling-news__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gambling-news__section {
    padding: 40px 0;
  }
  .page-gambling-news__section-title {
    font-size: 1.8em;
  }
  .page-gambling-news__article-title, .page-gambling-news__insight-title {
    font-size: 1.4em;
  }
  .page-gambling-news__update-title {
    font-size: 1.6em;
  }
  .page-gambling-news__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-gambling-news__hero-title {
    font-size: 1.8em;
  }
  .page-gambling-news__hero-subtitle {
    font-size: 1em;
  }
  .page-gambling-news__section-title {
    font-size: 1.5em;
  }
  .page-gambling-news__cta-button, .page-gambling-news__btn-outline {
    width: 95%;
  }
}