/* style/blog-mm886-sports-betting-tips-and-strategies.css */

/* Base styles for the page */
.page-blog-mm886-sports-betting-tips-and-strategies {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color from custom palette */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-mm886-sports-betting-tips-and-strategies__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-blog-mm886-sports-betting-tips-and-strategies__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-mm886-sports-betting-tips-and-strategies__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-mm886-sports-betting-tips-and-strategies__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Pull content up slightly over the bottom of the image for visual flow */
  background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-blog-mm886-sports-betting-tips-and-strategies__hero-title {
  color: #F2C14E; /* Gold color for title */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.page-blog-mm886-sports-betting-tips-and-strategies__hero-description {
  color: #A7D9B8; /* Secondary text color */
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.page-blog-mm886-sports-betting-tips-and-strategies__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Content Area */
.page-blog-mm886-sports-betting-tips-and-strategies__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #F2FFF6; /* Main text color */
}

.page-blog-mm886-sports-betting-tips-and-strategies__container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.page-blog-mm886-sports-betting-tips-and-strategies__section-title {
  color: #F2C14E; /* Gold for main section titles */
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  border-bottom: 2px solid #2E7A4E;
  padding-bottom: 15px;
}

.page-blog-mm886-sports-betting-tips-and-strategies__sub-title {
  color: #2AD16F; /* Green for sub-titles */
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-mm886-sports-betting-tips-and-strategies__text-block p {
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-blog-mm886-sports-betting-tips-and-strategies__text-block strong {
  color: #F2C14E;
}

/* Grid Layout for Cards */
.page-blog-mm886-sports-betting-tips-and-strategies__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-mm886-sports-betting-tips-and-strategies__card {
  background: #11271B; /* Card BG color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-mm886-sports-betting-tips-and-strategies__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-mm886-sports-betting-tips-and-strategies__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-mm886-sports-betting-tips-and-strategies__card-title {
  color: #2AD16F; /* Green for card titles */
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-blog-mm886-sports-betting-tips-and-strategies__card-text {
  color: #A7D9B8; /* Secondary text color */
  font-size: 1rem;
}

/* Feature List */
.page-blog-mm886-sports-betting-tips-and-strategies__feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-mm886-sports-betting-tips-and-strategies__feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-blog-mm886-sports-betting-tips-and-strategies__feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Green checkmark */
  font-weight: bold;
}

/* Call to Action Section */
.page-blog-mm886-sports-betting-tips-and-strategies__cta-section {
  background: #0A4B2C; /* Deep Green background */
  border-radius: 10px;
  padding: 50px 30px;
  text-align: center;
  margin-top: 60px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-mm886-sports-betting-tips-and-strategies__cta-title {
  color: #F2C14E; /* Gold for CTA title */
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-blog-mm886-sports-betting-tips-and-strategies__cta-text {
  color: #A7D9B8; /* Secondary text color */
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-mm886-sports-betting-tips-and-strategies__btn-primary,
.page-blog-mm886-sports-betting-tips-and-strategies__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  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 word breaking */
}

.page-blog-mm886-sports-betting-tips-and-strategies__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-blog-mm886-sports-betting-tips-and-strategies__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-mm886-sports-betting-tips-and-strategies__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Green text for secondary button */
  border: 2px solid #2AD16F;
}

.page-blog-mm886-sports-betting-tips-and-strategies__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-mm886-sports-betting-tips-and-strategies__faq-section {
  margin-top: 60px;
  padding-top: 20px;
}

.page-blog-mm886-sports-betting-tips-and-strategies__faq-list {
  margin-top: 30px;
}

.page-blog-mm886-sports-betting-tips-and-strategies__faq-item {
  background: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-mm886-sports-betting-tips-and-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #2AD16F; /* Green for FAQ question */
  background: #11271B;
  list-style: none; /* For details/summary */
}

.page-blog-mm886-sports-betting-tips-and-strategies__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-mm886-sports-betting-tips-and-strategies__faq-item summary {
  list-style: none;
}

.page-blog-mm886-sports-betting-tips-and-strategies__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E; /* Gold for toggle icon */
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-mm886-sports-betting-tips-and-strategies__faq-item[open] .page-blog-mm886-sports-betting-tips-and-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-mm886-sports-betting-tips-and-strategies__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-mm886-sports-betting-tips-and-strategies__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__section-title {
    font-size: 2rem;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-mm886-sports-betting-tips-and-strategies__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__hero-image-wrapper {
    max-height: 400px;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__hero-description {
    font-size: 1rem;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__btn-primary,
  .page-blog-mm886-sports-betting-tips-and-strategies__btn-secondary,
  .page-blog-mm886-sports-betting-tips-and-strategies a[class*="button"],
  .page-blog-mm886-sports-betting-tips-and-strategies a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__content-area,
  .page-blog-mm886-sports-betting-tips-and-strategies__container,
  .page-blog-mm886-sports-betting-tips-and-strategies__cta-section,
  .page-blog-mm886-sports-betting-tips-and-strategies__faq-section,
  .page-blog-mm886-sports-betting-tips-and-strategies__grid-layout {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__section-title {
    font-size: 1.8rem;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__sub-title {
    font-size: 1.4rem;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__card-image {
    height: 180px;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__card-title {
    font-size: 1.3rem;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  /* Image responsiveness */
  .page-blog-mm886-sports-betting-tips-and-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__section,
  .page-blog-mm886-sports-betting-tips-and-strategies__card,
  .page-blog-mm886-sports-betting-tips-and-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-mm886-sports-betting-tips-and-strategies__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

/* Ensure content area images are not too small */
.page-blog-mm886-sports-betting-tips-and-strategies__content-area img {
  min-width: 200px;
  min-height: 200px;
}

/* Color contrast fixes if needed */
.page-blog-mm886-sports-betting-tips-and-strategies__dark-bg {
  color: #F2FFF6; /* Deep Green background, so light text */
}

.page-blog-mm886-sports-betting-tips-and-strategies__text-block {
  color: #F2FFF6;
}

.page-blog-mm886-sports-betting-tips-and-strategies p,
.page-blog-mm886-sports-betting-tips-and-strategies li {
  color: #A7D9B8;
}

.page-blog-mm886-sports-betting-tips-and-strategies__cta-section {
  color: #A7D9B8;
}