/* style/resources-sports-betting-tips.css */

.page-resources-sports-betting-tips {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-sports-betting-tips__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero content */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-sports-betting-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim image for text readability */
}

.page-resources-sports-betting-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 40px 20px;
}

.page-resources-sports-betting-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-resources-sports-betting-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-resources-sports-betting-tips__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-sports-betting-tips__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-resources-sports-betting-tips__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-sports-betting-tips__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-resources-sports-betting-tips__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-sports-betting-tips__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-resources-sports-betting-tips__article-nav {
  background-color: #f5f5f5;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-sports-betting-tips__back-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-sports-betting-tips__back-link:hover {
  color: #FCBC45;
}

.page-resources-sports-betting-tips__container {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-sports-betting-tips__article-content {
  padding: 60px 0;
  line-height: 1.7;
  font-size: 1.1em;
}

.page-resources-sports-betting-tips__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-sports-betting-tips__subsection-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-sports-betting-tips__paragraph {
  margin-bottom: 20px;
}

.page-resources-sports-betting-tips__content-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure content images are not too small */
  min-height: 200px;
}

.page-resources-sports-betting-tips__button--cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
  text-align: center;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-sports-betting-tips__button--cta:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-resources-sports-betting-tips__button--info {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-top: 20px;
  text-align: center;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-sports-betting-tips__button--info:hover {
  background-color: transparent;
  color: #000000;
}

.page-resources-sports-betting-tips__cta-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  align-items: center;
}

.page-resources-sports-betting-tips__button--register-large,
.page-resources-sports-betting-tips__button--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-resources-sports-betting-tips__button--register-large:hover,
.page-resources-sports-betting-tips__button--download:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-resources-sports-betting-tips__related-resources {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

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

.page-resources-sports-betting-tips__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-sports-betting-tips__card:hover {
  transform: translateY(-5px);
}

.page-resources-sports-betting-tips__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  min-width: 200px; /* Ensure card images are not too small */
  min-height: 200px;
}

.page-resources-sports-betting-tips__card-title {
  font-size: 1.5em;
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page-resources-sports-betting-tips__card-title a {
  color: #000000;
  text-decoration: none;
}

.page-resources-sports-betting-tips__card-title a:hover {
  color: #FCBC45;
}

.page-resources-sports-betting-tips__card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
}

.page-resources-sports-betting-tips__card-link {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-resources-sports-betting-tips__card-link:hover {
  background-color: #FCBC45;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-sports-betting-tips__hero-title {
    font-size: 2.8em;
  }
  .page-resources-sports-betting-tips__hero-description {
    font-size: 1.1em;
  }
  .page-resources-sports-betting-tips__section-title {
    font-size: 2em;
  }
  .page-resources-sports-betting-tips__subsection-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-sports-betting-tips__hero-title {
    font-size: 2.2em;
  }
  .page-resources-sports-betting-tips__hero-description {
    font-size: 1em;
  }
  .page-resources-sports-betting-tips__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-sports-betting-tips__button {
    width: 100%;
    max-width: 250px;
  }
  .page-resources-sports-betting-tips__article-content {
    padding: 40px 0;
  }
  .page-resources-sports-betting-tips__section-title {
    font-size: 1.8em;
  }
  .page-resources-sports-betting-tips__subsection-title {
    font-size: 1.4em;
  }
  .page-resources-sports-betting-tips__container {
    padding: 0 15px;
  }
  .page-resources-sports-betting-tips__cta-section {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-sports-betting-tips__button--register-large,
  .page-resources-sports-betting-tips__button--download {
    width: 100%;
    max-width: 300px;
  }
  .page-resources-sports-betting-tips__resource-cards {
    grid-template-columns: 1fr;
  }
  /* Mobile content area images must be constrained */
  .page-resources-sports-betting-tips__hero-image,
  .page-resources-sports-betting-tips__content-image,
  .page-resources-sports-betting-tips__card-image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-sports-betting-tips__article-content img,
  .page-resources-sports-betting-tips__related-resources img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-resources-sports-betting-tips__hero-title {
    font-size: 1.8em;
  }
  .page-resources-sports-betting-tips__hero-description {
    font-size: 0.9em;
  }
  .page-resources-sports-betting-tips__button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-resources-sports-betting-tips__section-title {
    font-size: 1.5em;
  }
  .page-resources-sports-betting-tips__subsection-title {
    font-size: 1.2em;
  }
  .page-resources-sports-betting-tips__card-title {
    font-size: 1.2em;
  }
  .page-resources-sports-betting-tips__card-description {
    font-size: 0.9em;
  }
}