/* style/resources-sports-betting-guide.css */
.page-resources-sports-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Body background from shared.css */
}

.page-resources-sports-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 600px;
  background-color: #017439; /* Use brand color for hero background */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  /* Assume shared.css handles body padding-top for header offset */
  /* padding-top: var(--header-offset, 120px); */ 
}

.page-resources-sports-betting-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-sports-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-sports-betting-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-resources-sports-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.page-resources-sports-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-sports-betting-guide__section {
  padding: 60px 20px;
  background-color: #000000; /* Default dark background for sections */
  color: #ffffff;
}

.page-resources-sports-betting-guide__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-resources-sports-betting-guide__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-resources-sports-betting-guide__dark-text {
  color: #333333;
}

.page-resources-sports-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-sports-betting-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #017439; /* Brand color for section titles */
  position: relative;
  padding-bottom: 15px;
}

.page-resources-sports-betting-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-resources-sports-betting-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-sports-betting-guide__highlight {
  color: #FFFF00; /* Highlight color for keywords */
  font-weight: bold;
}