/* style/resources-sports-betting-tips.css */
.page-resources-sports-betting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A2E36; /* Primary dark background */
}

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

.page-resources-sports-betting-tips__hero {
  background: linear-gradient(135deg, #0A2E36 0%, #1f4cb3 100%); /* Dark blue/green to a slightly brighter blue for depth */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-resources-sports-betting-tips__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-resources-sports-betting-tips__hero-title {
  font-size: 3.5em;
  color: #E0B34C; /* Secondary accent color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sports-betting-tips__hero-subtitle {
  font-size: 1.5em;
  color: #F8F8F8;
  margin-bottom: 30px;
}

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

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

.page-resources-sports-betting-tips__section {
  padding: 60px 0;
  background-color: #0A2E36;
}

.page-resources-sports-betting-tips__section--alt-bg {
  background-color: #1A3E46; /* Slightly lighter dark background for contrast */
}

.page-resources-sports-betting-tips__section-title {
  font-size: 2.5em;
  color: #E0B34C; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-sports-betting-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B34C;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-resources-sports-betting-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #F8F8F8;
}

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

.page-resources-sports-betting-tips__grid-item {
  background-color: #0A2E36;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sports-betting-tips__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-sports-betting-tips__grid-title {
  font-size: 1.6em;
  color: #E0B34C;
  margin-bottom: 15px;
}

.page-resources-sports-betting-tips__grid-text {
  color: #CCCCCC;
  font-size: 1em;
}

.page-resources-sports-betting-tips__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F8F8F8;
}

.page-resources-sports-betting-tips__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-sports-betting-tips__list li strong {
  color: #E0B34C;
}

.page-resources-sports-betting-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-sports-betting-tips__image-full-width {
  margin-top: 40px;
  text-align: center;
}

.page-resources-sports-betting-tips__image-centered {
  text-align: center;
  margin-top: 40px;
}

.page-resources-sports-betting-tips__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-resources-sports-betting-tips__cta-button {
  display: inline-block;
  background-color: #E0B34C; /* Secondary accent color */
  color: #0A2E36; /* Dark text for contrast */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-tips__cta-button:hover {
  background-color: #FFC757; /* Lighter shade on hover */
  transform: translateY(-3px);
}

.page-resources-sports-betting-tips__cta-button--large {
  padding: 18px 45px;
  font-size: 1.4em;
}

.page-resources-sports-betting-tips__copyright {
  text-align: center;
  padding: 30px 20px;
  background-color: #0A2E36;
  color: #CCCCCC;
  font-size: 0.9em;
  border-top: 1px solid #1A3E46;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-sports-betting-tips__hero {
    padding: 60px 20px;
  }

  .page-resources-sports-betting-tips__hero-title {
    font-size: 2.5em;
  }

  .page-resources-sports-betting-tips__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-sports-betting-tips__section-title {
    font-size: 2em;
  }

  .page-resources-sports-betting-tips__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-sports-betting-tips__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-resources-sports-betting-tips__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-resources-sports-betting-tips__hero-title {
    font-size: 2em;
  }

  .page-resources-sports-betting-tips__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-sports-betting-tips__section-title {
    font-size: 1.8em;
  }

  .page-resources-sports-betting-tips__paragraph,
  .page-resources-sports-betting-tips__list li,
  .page-resources-sports-betting-tips__grid-text {
    font-size: 0.95em;
  }
}