/* style/sports-football-betting-guide.css */

/* Body background color is #0a0a0a (dark), so text color should be light */
.page-sports-football-betting-guide {
  color: #ffffff; /* Default light text for dark background */
  background-color: #0a0a0a;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-sports-football-betting-guide__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-sports-football-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #1a1a1a; /* Slightly lighter dark background for hero */
}

.page-sports-football-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit height for hero image */
}

.page-sports-football-betting-guide__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-sports-football-betting-guide__main-title {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-sports-football-betting-guide__hero-description {
  color: #f0f0f0;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-sports-football-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%; /* Ensure container takes full width for wrapping */
  max-width: 100%;
  box-sizing: border-box;
}

.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
}

.page-sports-football-betting-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-sports-football-betting-guide__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-sports-football-betting-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-sports-football-betting-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports-football-betting-guide__section-title {
  color: #26A9E0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.page-sports-football-betting-guide__sub-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-sports-football-betting-guide__paragraph {
  color: #f0f0f0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.page-sports-football-betting-guide__unordered-list,
.page-sports-football-betting-guide__ordered-list {
  list-style-position: inside;
  text-align: left;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-sports-football-betting-guide__list-item {
  color: #f0f0f0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.page-sports-football-betting-guide__list-item strong {
  color: #ffffff;
}

.page-sports-football-betting-guide__dark-section {
  background-color: #1a1a1a; /* Darker background for contrast */
  color: #ffffff;
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__section-title {
  color: #26A9E0;
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__paragraph,
.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__list-item {
  color: #f0f0f0;
}

.page-sports-football-betting-guide__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-sports-football-betting-guide__image-text-layout--reversed {
  flex-direction: row-reverse;
}

.page-sports-football-betting-guide__image {
  flex: 1;
  min-width: 300px; /* Minimum width for image */
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-sports-football-betting-guide__image--left {
  margin-right: auto;
}

.page-sports-football-betting-guide__image--right {
  margin-left: auto;
}

.page-sports-football-betting-guide__image--center {
  margin: 40px auto;
  max-width: 800px; /* Max width for standalone image */
}

.page-sports-football-betting-guide__text-block {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

/* FAQ Section */
.page-sports-football-betting-guide__faq-list {
  margin-top: 30px;
  text-align: left;
}

.page-sports-football-betting-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports-football-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-sports-football-betting-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-sports-football-betting-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-sports-football-betting-guide__faq-qtext {
  flex-grow: 1;
}

.page-sports-football-betting-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-sports-football-betting-guide__faq-answer {
  padding: 0 20px 20px;
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-sports-football-betting-guide__image-text-layout {
    flex-direction: column;
  }
  .page-sports-football-betting-guide__image-text-layout--reversed {
    flex-direction: column;
  }
  .page-sports-football-betting-guide__image--left,
  .page-sports-football-betting-guide__image--right {
    margin: 0 auto;
  }
  .page-sports-football-betting-guide__text-block {
    text-align: center;
  }
  .page-sports-football-betting-guide__unordered-list,
  .page-sports-football-betting-guide__ordered-list {
    padding-left: 0;
    list-style-position: outside;
  }
}

@media (max-width: 768px) {
  .page-sports-football-betting-guide__hero-section,
  .page-sports-football-betting-guide__section {
    padding: 40px 0;
  }
  .page-sports-football-betting-guide__container {
    padding: 0 15px;
  }
  .page-sports-football-betting-guide__main-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .page-sports-football-betting-guide__hero-description {
    font-size: 1rem;
  }
  .page-sports-football-betting-guide__section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
  .page-sports-football-betting-guide__sub-title {
    font-size: clamp(1.3rem, 4vw, 1.7rem);
    text-align: center;
  }
  .page-sports-football-betting-guide__paragraph,
  .page-sports-football-betting-guide__list-item {
    font-size: 0.95rem;
    text-align: center;
  }
  .page-sports-football-betting-guide__unordered-list,
  .page-sports-football-betting-guide__ordered-list {
    padding-left: 0;
  }
  .page-sports-football-betting-guide__list-item {
    padding-left: 10px; /* Indent for list items */
  }
  .page-sports-football-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-sports-football-betting-guide__btn-primary,
  .page-sports-football-betting-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Mobile image responsiveness */
  .page-sports-football-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-sports-football-betting-guide__section,
  .page-sports-football-betting-guide__container,
  .page-sports-football-betting-guide__hero-section,
  .page-sports-football-betting-guide__image-text-layout {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure text blocks also adapt */
  .page-sports-football-betting-guide__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-sports-football-betting-guide__hero-content {
    padding: 0 15px;
  }
  .page-sports-football-betting-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-sports-football-betting-guide__faq-answer {
    padding: 0 15px 15px;
  }
}