/* style/betting-guides.css */
.page-betting-guides {
  font-family: 'Arial', sans-serif;
  color: #1A2E4E; /* Main text color based on primary brand color */
  line-height: 1.6;
}

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

.page-betting-guides__hero-section {
  background: linear-gradient(135deg, #1A2E4E 0%, #3a5c8c 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.page-betting-guides__hero-section .page-betting-guides__container {
  position: relative;
  z-index: 2;
}

.page-betting-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-betting-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-guides__section {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background for content sections */
}

.page-betting-guides__section:nth-of-type(even) {
  background-color: #e9ecef; /* Slightly darker light background for alternating sections */
}

.page-betting-guides__section-title {
  font-size: 2.5em;
  color: #1A2E4E; /* Main brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-betting-guides__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent under titles */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-betting-guides__sub-title {
  font-size: 1.8em;
  color: #1A2E4E;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-betting-guides__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-betting-guides__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-betting-guides__content-block ul,
.page-betting-guides__content-block ol {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333;
}

.page-betting-guides__content-block ol {
  list-style-type: decimal;
}

.page-betting-guides__content-block li {
  margin-bottom: 8px;
}

.page-betting-guides__image-block {
  text-align: center;
}

.page-betting-guides__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-betting-guides__card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guides__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-betting-guides__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.page-betting-guides__card-title {
  font-size: 1.4em;
  color: #1A2E4E;
  margin-bottom: 10px;
  min-height: 40px;
}

.page-betting-guides__card p {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.page-betting-guides__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-betting-guides__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E4E; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-betting-guides__btn--primary:hover {
  background-color: #e6c200;
  color: #1A2E4E;
}

.page-betting-guides__btn--secondary {
  background-color: transparent;
  color: #1A2E4E;
  border: 2px solid #1A2E4E;
}

.page-betting-guides__btn--secondary:hover {
  background-color: #1A2E4E;
  color: #FFFFFF;
}

.page-betting-guides__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-betting-guides__center-btn {
  display: block;
  margin: 30px auto 0;
  width: fit-content;
}

.page-betting-guides__full-width-text {
    grid-column: 1 / -1; /* Spans across all columns in a grid */
    margin-top: 20px;
}

.page-betting-guides__cta-section {
  background-color: #1A2E4E; /* Dark blue background */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-betting-guides__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-betting-guides__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-betting-guides__cta-section .page-betting-guides__btn {
  margin: 0 10px;
}

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

.page-betting-guides__guide-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guides__guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-betting-guides__guide-title {
  font-size: 1.5em;
  color: #1A2E4E;
  margin-bottom: 10px;
}

.page-betting-guides__guide-title a {
  color: #1A2E4E;
  text-decoration: none;
}

.page-betting-guides__guide-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-betting-guides__guide-description {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 20px;
  min-height: 60px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-betting-guides__hero-title {
    font-size: 2.5em;
  }
  .page-betting-guides__section-title {
    font-size: 2em;
  }
  .page-betting-guides__sub-title {
    font-size: 1.5em;
  }
  .page-betting-guides__grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-betting-guides__reverse-on-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .page-betting-guides__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-betting-guides__hero-section {
    padding: 60px 0;
  }
  .page-betting-guides__hero-title {
    font-size: 2em;
  }
  .page-betting-guides__hero-description {
    font-size: 1em;
  }
  .page-betting-guides__section {
    padding: 40px 0;
  }
  .page-betting-guides__section-title {
    font-size: 1.8em;
  }
  .page-betting-guides__grid-3-cols {
    grid-template-columns: 1fr;
  }
  .page-betting-guides__card-image {
    height: 150px;
  }
  .page-betting-guides__cta-title {
    font-size: 1.8em;
  }
  .page-betting-guides__cta-section .page-betting-guides__btn {
    display: block;
    margin: 15px auto;
  }
  .page-betting-guides__guide-list {
    grid-template-columns: 1fr;
  }
  .page-betting-guides__guide-description {
    min-height: auto;
  }
}