/* style/resources-mobile-betting-advantages.css */
.page-resources-mobile-betting-advantages {
  color: #333333; /* Default dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-mobile-betting-advantages__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 0;
}

.page-resources-mobile-betting-advantages__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-resources-mobile-betting-advantages__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-resources-mobile-betting-advantages__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  text-align: center;
  z-index: 1;
}

.page-resources-mobile-betting-advantages__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-mobile-betting-advantages__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-mobile-betting-advantages__hero-cta-button,
.page-resources-mobile-betting-advantages__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-mobile-betting-advantages__hero-cta-button:hover,
.page-resources-mobile-betting-advantages__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-mobile-betting-advantages__content-area {
  max-width: 800px; /* Optimal reading width for long articles */
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: -60px; /* Pull content up slightly over hero section */
  position: relative;
  z-index: 2;
}

.page-resources-mobile-betting-advantages__article-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-resources-mobile-betting-advantages__back-link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.page-resources-mobile-betting-advantages__back-link:hover {
  color: #FFD700;
}

.page-resources-mobile-betting-advantages__section-title {
  font-size: 2em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-mobile-betting-advantages__sub-section-title {
  font-size: 1.5em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-mobile-betting-advantages__paragraph {
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-resources-mobile-betting-advantages__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-mobile-betting-advantages__hero-title {
    font-size: 2.2em;
  }
  .page-resources-mobile-betting-advantages__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-mobile-betting-advantages {
    padding-top: var(--header-offset, 80px);
  }
  .page-resources-mobile-betting-advantages__hero-title {
    font-size: 1.8em;
  }
  .page-resources-mobile-betting-advantages__hero-description {
    font-size: 1em;
  }
  .page-resources-mobile-betting-advantages__hero-content {
    padding: 15px;
  }
  .page-resources-mobile-betting-advantages__hero-cta-button,
  .page-resources-mobile-betting-advantages__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-mobile-betting-advantages__content-area {
    padding: 30px 15px;
    margin-top: -40px;
  }
  .page-resources-mobile-betting-advantages__section-title {
    font-size: 1.8em;
  }
  .page-resources-mobile-betting-advantages__sub-section-title {
    font-size: 1.3em;
  }
  .page-resources-mobile-betting-advantages__paragraph {
    font-size: 1em;
  }
  .page-resources-mobile-betting-advantages__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min width for mobile */
    min-height: 200px; /* Ensure min height for mobile */
  }
  /* Ensure no horizontal scroll */
  .page-resources-mobile-betting-advantages__hero-section, 
  .page-resources-mobile-betting-advantages__content-area {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-resources-mobile-betting-advantages__hero-title {
    font-size: 1.5em;
  }
  .page-resources-mobile-betting-advantages__hero-description {
    font-size: 0.9em;
  }
  .page-resources-mobile-betting-advantages__section-title {
    font-size: 1.5em;
  }
  .page-resources-mobile-betting-advantages__sub-section-title {
    font-size: 1.2em;
  }
  .page-resources-mobile-betting-advantages__hero-content {
    width: 90%;
  }
  .page-resources-mobile-betting-advantages__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}