/* style/blog-nextbet-sports-betting-trends.css */

/* Base styles for the page */
.page-blog-nextbet-sports-betting-trends {
  color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-nextbet-sports-betting-trends__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-nextbet-sports-betting-trends__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0a0a0a; /* Match body bg for seamless blend */
  padding-top: 10px; /* Small top padding as body handles --header-offset */
}

.page-blog-nextbet-sports-betting-trends__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-nextbet-sports-betting-trends__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-nextbet-sports-betting-trends__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-nextbet-sports-betting-trends__main-title {
  font-weight: bold;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 20px;
  /* clamp for responsive font-size, avoiding fixed large values */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-nextbet-sports-betting-trends__subtitle {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-nextbet-sports-betting-trends__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-nextbet-sports-betting-trends__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-nextbet-sports-betting-trends__btn-primary:hover {
  background-color: #1e87c0;
  transform: translateY(-2px);
}

.page-blog-nextbet-sports-betting-trends__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-nextbet-sports-betting-trends__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Content Area */
.page-blog-nextbet-sports-betting-trends__content-area {
  padding: 60px 0;
  background-color: #0a0a0a; /* Dark background for content sections */
  color: #ffffff;
}

.page-blog-nextbet-sports-betting-trends__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-blog-nextbet-sports-betting-trends__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-nextbet-sports-betting-trends__sub-section-title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-nextbet-sports-betting-trends__paragraph {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-blog-nextbet-sports-betting-trends__keyword {
  color: #26A9E0;
  font-weight: bold;
}

.page-blog-nextbet-sports-betting-trends__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-nextbet-sports-betting-trends__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-blog-nextbet-sports-betting-trends__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce min-size */
}

.page-blog-nextbet-sports-betting-trends__image-text-block .page-blog-nextbet-sports-betting-trends__paragraph {
  flex: 1;
  max-width: 50%;
}

.page-blog-nextbet-sports-betting-trends__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-nextbet-sports-betting-trends__numbered-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 30px;
}

.page-blog-nextbet-sports-betting-trends__list-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for list items */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid #26A9E0;
}

.page-blog-nextbet-sports-betting-trends__list-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-nextbet-sports-betting-trends__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-nextbet-sports-betting-trends__feature-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.page-blog-nextbet-sports-betting-trends__feature-card:hover {
  transform: translateY(-5px);
}

.page-blog-nextbet-sports-betting-trends__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-size */
}

.page-blog-nextbet-sports-betting-trends__feature-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-nextbet-sports-betting-trends__feature-description {
  font-size: 1rem;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-blog-nextbet-sports-betting-trends__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: rgba(38, 169, 224, 0.1); /* Light blue tint */
  border-radius: 10px;
  border: 1px solid #26A9E0;
}

.page-blog-nextbet-sports-betting-trends__cta-heading {
  font-size: 2rem;
  color: #26A9E0;
  margin-bottom: 30px;
}

.page-blog-nextbet-sports-betting-trends__cta-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-nextbet-sports-betting-trends__cta-link:hover {
  color: #1e87c0;
}

/* FAQ Section */
.page-blog-nextbet-sports-betting-trends__faq-section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Dark background for FAQ */
  color: #ffffff;
}

.page-blog-nextbet-sports-betting-trends__faq-list {
  margin-top: 30px;
}

.page-blog-nextbet-sports-betting-trends__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-blog-nextbet-sports-betting-trends__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: bold;
  color: #26A9E0;
}

.page-blog-nextbet-sports-betting-trends__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-nextbet-sports-betting-trends__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-blog-nextbet-sports-betting-trends__faq-item[open] .page-blog-nextbet-sports-betting-trends__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-nextbet-sports-betting-trends__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-nextbet-sports-betting-trends__image-text-block {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-nextbet-sports-betting-trends__image-text-block--reverse {
    flex-direction: column;
  }

  .page-blog-nextbet-sports-betting-trends__content-image,
  .page-blog-nextbet-sports-betting-trends__image-text-block .page-blog-nextbet-sports-betting-trends__paragraph {
    max-width: 100%;
    flex: none;
  }
}

@media (max-width: 768px) {
  .page-blog-nextbet-sports-betting-trends {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-nextbet-sports-betting-trends__hero-content {
    padding: 30px 15px;
  }

  .page-blog-nextbet-sports-betting-trends__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-nextbet-sports-betting-trends__subtitle {
    font-size: 1rem;
  }

  .page-blog-nextbet-sports-betting-trends__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }

  .page-blog-nextbet-sports-betting-trends__cta-section .page-blog-nextbet-sports-betting-trends__cta-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-nextbet-sports-betting-trends__content-area,
  .page-blog-nextbet-sports-betting-trends__faq-section {
    padding: 40px 0;
  }

  .page-blog-nextbet-sports-betting-trends__container {
    padding: 0 15px;
  }

  .page-blog-nextbet-sports-betting-trends__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-nextbet-sports-betting-trends__sub-section-title {
    font-size: 1.5rem;
  }

  .page-blog-nextbet-sports-betting-trends__paragraph,
  .page-blog-nextbet-sports-betting-trends__list-item p,
  .page-blog-nextbet-sports-betting-trends__feature-description,
  .page-blog-nextbet-sports-betting-trends__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-nextbet-sports-betting-trends__features-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-nextbet-sports-betting-trends__feature-card {
    min-height: auto;
  }

  /* Image responsiveness for all images */
  .page-blog-nextbet-sports-betting-trends img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All image containers in mobile */
  .page-blog-nextbet-sports-betting-trends__hero-image-wrapper,
  .page-blog-nextbet-sports-betting-trends__image-text-block,
  .page-blog-nextbet-sports-betting-trends__feature-card,
  .page-blog-nextbet-sports-betting-trends__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-nextbet-sports-betting-trends__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-nextbet-sports-betting-trends__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-nextbet-sports-betting-trends__cta-buttons,
  .page-blog-nextbet-sports-betting-trends__button-group,
  .page-blog-nextbet-sports-betting-trends__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-nextbet-sports-betting-trends__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Specific button container for CTA section to allow column layout on mobile */
.page-blog-nextbet-sports-betting-trends__cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.page-blog-nextbet-sports-betting-trends__cta-section .page-blog-nextbet-sports-betting-trends__cta-button {
  margin: 0;
}

/* Ensure no filter is used on images */
.page-blog-nextbet-sports-betting-trends img {
  filter: none !important;
}