/* style/betting-news-future-trends.css */
.page-betting-news-future-trends {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2463; /* Deep blue background */
}

.page-betting-news-future-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-news-future-trends__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3F87 100%); /* Gradient from deep blue to a slightly lighter blue */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

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

.page-betting-news-future-trends__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-betting-news-future-trends__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-betting-news-future-trends__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-betting-news-future-trends__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-betting-news-future-trends__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-betting-news-future-trends__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-betting-news-future-trends__btn--link {
  background: none;
  border: none;
  color: #FFD700;
  text-decoration: underline;
  padding: 15px 0;
}

.page-betting-news-future-trends__btn--link:hover {
  color: #e6c200;
}

.page-betting-news-future-trends__btn--outline {
  background: none;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-betting-news-future-trends__btn--outline:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-betting-news-future-trends__content-section {
  padding: 80px 0;
  background-color: #0A2463;
}

.page-betting-news-future-trends__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-betting-news-future-trends__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-betting-news-future-trends__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
  color: #E0E0E0;
}

.page-betting-news-future-trends__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-news-future-trends__feature-item {
  background-color: #1A3F87; /* Slightly lighter blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-betting-news-future-trends__feature-item:hover {
  transform: translateY(-10px);
}

.page-betting-news-future-trends__feature-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-betting-news-future-trends__feature-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-betting-news-future-trends__feature-text {
  font-size: 1em;
  line-height: 1.7;
  color: #CCCCCC;
}

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

.page-betting-news-future-trends__article-card {
  background-color: #1A3F87;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-betting-news-future-trends__article-card:hover {
  transform: translateY(-10px);
}

.page-betting-news-future-trends__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-betting-news-future-trends__article-title {
  font-size: 1.4em;
  padding: 20px;
  margin-bottom: 0;
}

.page-betting-news-future-trends__article-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-betting-news-future-trends__article-title a:hover {
  color: #e6c200;
}

.page-betting-news-future-trends__article-excerpt {
  padding: 0 20px 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #CCCCCC;
}

.page-betting-news-future-trends__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-betting-news-future-trends__list-item {
  background-color: #1A3F87;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-betting-news-future-trends__list-item strong {
  color: #FFD700;
}

.page-betting-news-future-trends__cta-banner {
  background-color: #1A3F87; /* Darker blue for CTA banner */
  padding: 50px;
  border-radius: 15px;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-betting-news-future-trends__cta-image {
  flex: 1 1 300px;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-betting-news-future-trends__cta-content {
  flex: 2 1 400px;
}

.page-betting-news-future-trends__cta-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-betting-news-future-trends__cta-text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #CCCCCC;
}

.page-betting-news-future-trends__final-cta {
  background-color: #0A2463;
  padding: 80px 0;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-betting-news-future-trends__hero-title {
    font-size: 2.8em;
  }
  .page-betting-news-future-trends__section-title {
    font-size: 2em;
  }
  .page-betting-news-future-trends__cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .page-betting-news-future-trends__cta-image {
    max-width: 100%;
  }
  .page-betting-news-future-trends__btn--secondary {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .page-betting-news-future-trends__hero-title {
    font-size: 2.2em;
  }
  .page-betting-news-future-trends__hero-description {
    font-size: 1.1em;
  }
  .page-betting-news-future-trends__section-title {
    font-size: 1.8em;
  }
  .page-betting-news-future-trends__feature-grid, 
  .page-betting-news-future-trends__article-list {
    grid-template-columns: 1fr;
  }
  .page-betting-news-future-trends__cta-banner {
    padding: 30px;
  }
  .page-betting-news-future-trends__cta-title {
    font-size: 1.8em;
  }
  .page-betting-news-future-trends__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}