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

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

.page-gambling-news__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.page-gambling-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-gambling-news__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-gambling-news__section {
  padding: 60px 0;
  background-color: #fff;
}

.page-gambling-news__section--alt-bg {
  background-color: #f1f5f9;
}

.page-gambling-news__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-gambling-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-gambling-news__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-gambling-news__content-wrapper {
  font-size: 1.1em;
  line-height: 1.8;
  color: #444;
}

.page-gambling-news__content-wrapper p {
  margin-bottom: 20px;
}

.page-gambling-news__content-wrapper strong {
  color: #007bff;
}

.page-gambling-news__sub-title {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-gambling-news__content-wrapper ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gambling-news__content-wrapper li {
  margin-bottom: 10px;
}

.page-gambling-news__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__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  margin: 10px;
  font-size: 1.1em;
}

.page-gambling-news__btn--primary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-gambling-news__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #fff;
  box-shadow: 0 6px 15px rgba(255,193,7,0.4);
}

.page-gambling-news__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-gambling-news__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  box-shadow: 0 6px 15px rgba(0,123,255,0.4);
}

.page-gambling-news__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-gambling-news__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  margin: 5px;
  border-radius: 25px;
}

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

.page-gambling-news__news-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-gambling-news__news-item h3 {
  font-size: 1.5em;
  margin: 20px 20px 10px 20px;
  color: #007bff;
}

.page-gambling-news__news-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gambling-news__news-item h3 a:hover {
  color: #0056b3;
}

.page-gambling-news__news-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px 15px 20px;
  flex-grow: 1;
}

.page-gambling-news__news-item .page-gambling-news__btn {
  align-self: flex-start;
  margin: 0 20px 20px 20px;
}

.page-gambling-news__cta-banner {
  background: linear-gradient(45deg, #007bff, #ffc107);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-gambling-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gambling-news__hero-title {
    font-size: 2.8em;
  }
  .page-gambling-news__section-title {
    font-size: 2em;
  }
  .page-gambling-news__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-gambling-news__hero {
    padding: 60px 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__sub-title {
    font-size: 1.5em;
  }
  .page-gambling-news__content-wrapper,
  .page-gambling-news__section-description {
    font-size: 1em;
  }
  .page-gambling-news__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 8px;
  }
  .page-gambling-news__btn--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-gambling-news__news-list {
    grid-template-columns: 1fr;
  }
  .page-gambling-news__cta-banner {
    padding: 60px 0;
  }
  .page-gambling-news__cta-title {
    font-size: 2em;
  }
  .page-gambling-news__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-gambling-news__hero-title {
    font-size: 1.8em;
  }
  .page-gambling-news__section-title {
    font-size: 1.6em;
  }
  .page-gambling-news__cta-title {
    font-size: 1.8em;
  }
  .page-gambling-news__btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .page-gambling-news__cta-banner .page-gambling-news__btn {
    width: 80%;
  }
}