/* style/resources-sports-betting-tips.css */
.page-resources-sports-betting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #ffffff); /* Ensure body background is respected */
}

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

/* Hero Section */
.page-resources-sports-betting-tips__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background-color: #26A9E0; /* Fallback background */
  color: #ffffff;
}

.page-resources-sports-betting-tips__hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-resources-sports-betting-tips__hero-content {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.page-resources-sports-betting-tips__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-sports-betting-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

/* Video Section */
.page-resources-sports-betting-tips__video-section {
  padding: 60px 0;
  text-align: center;
  background-color: #ffffff; /* Light background */
  color: #333333;
}

.page-resources-sports-betting-tips__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for the video player */
  margin: 20px auto;
  box-sizing: border-box;
  overflow: hidden; /* Ensure no overflow */
}

.page-resources-sports-betting-tips__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer; /* Indicate clickability */
}

.page-resources-sports-betting-tips__video-caption {
  margin-top: 10px;
  font-style: italic;
  color: #555555;
}

/* Content Sections */
.page-resources-sports-betting-tips__content-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background */
  color: #333333;
}

.page-resources-sports-betting-tips__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-sports-betting-tips__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-sports-betting-tips__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: #26A9E0; /* Brand color for titles */
}
.page-resources-sports-betting-tips__dark-bg .page-resources-sports-betting-tips__section-title {
  color: #ffffff; /* White title on dark background */
}

.page-resources-sports-betting-tips__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
}
.page-resources-sports-betting-tips__dark-bg .page-resources-sports-betting-tips__sub-title {
  color: #ffffff;
}

.page-resources-sports-betting-tips__text-block {
  margin-bottom: 30px;
}

.page-resources-sports-betting-tips__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-sports-betting-tips__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #333333;
}

.page-resources-sports-betting-tips__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, will be responsive */
  object-fit: cover;
  display: block;
}

.page-resources-sports-betting-tips__card-content {
  padding: 25px;
  flex-grow: 1;
}

.page-resources-sports-betting-tips__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-sports-betting-tips__full-width-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* CTA Section */
.page-resources-sports-betting-tips__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #f8f8f8; /* Slightly different light background */
  color: #333333;
}

.page-resources-sports-betting-tips__cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-sports-betting-tips__cta-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
}

.page-resources-sports-betting-tips__cta-card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-sports-betting-tips__cta-card p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-sports-betting-tips__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* FAQ Section */
.page-resources-sports-betting-tips__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-sports-betting-tips__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-resources-sports-betting-tips__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-sports-betting-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  color: #26A9E0;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}
.page-resources-sports-betting-tips__faq-item[open] .page-resources-sports-betting-tips__faq-question {
  border-bottom: none;
}
.page-resources-sports-betting-tips__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker */
}
.page-resources-sports-betting-tips__faq-question::marker {
  display: none; /* Hide default marker */
}

.page-resources-sports-betting-tips__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: #555555;
  background-color: #f9f9f9;
}
.page-resources-sports-betting-tips__faq-answer p {
  margin: 0;
}

/* Conclusion Section */
.page-resources-sports-betting-tips__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: #26A9E0; /* Dark background */
  color: #ffffff;
}

.page-resources-sports-betting-tips__conclusion-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}