/* General styles for the page */
.page-blog-sports-betting-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: #08162B; /* Deep Navy - Body background from shared.css */
}

.page-blog-sports-betting-tips__content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Top text / Hero section (first block, small top padding) */
.page-blog-sports-betting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above content */
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding for the first block */
  padding-bottom: 40px;
  text-align: center;
  overflow: hidden;
}

.page-blog-sports-betting-tips__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-sports-betting-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-blog-sports-betting-tips__hero-content {
  position: relative; /* Not absolute, to be below the image */
  z-index: 1;
  max-width: 900px;
  padding: 30px 20px;
  margin-top: -100px; /* Pull content up slightly over the image, but not overlapping text */
  background: rgba(16, 35, 63, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-blog-sports-betting-tips__main-title {
  font-size: 44px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-blog-sports-betting-tips__description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-sports-betting-tips__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-sports-betting-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #F2C14E, transparent);
  border-radius: 2px;
}

.page-blog-sports-betting-tips__text-block {
  font-size: 17px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-sports-betting-tips__dark-section {
  background-color: #10233F; /* Card BG */
  color: #F3F8FF;
}

/* CTA Buttons */
.page-blog-sports-betting-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-sports-betting-tips__btn-primary,
.page-blog-sports-betting-tips__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box; /* Crucial for button responsiveness */
}

.page-blog-sports-betting-tips__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 67, 166, 0.4);
}

.page-blog-sports-betting-tips__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 67, 166, 0.6);
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-blog-sports-betting-tips__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-blog-sports-betting-tips__btn-secondary:hover {
  transform: translateY(-3px);
  background-color: rgba(242, 193, 78, 0.1);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* Grid Layouts */
.page-blog-sports-betting-tips__grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

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

/* Images */
.page-blog-sports-betting-tips__image-wrapper {
  text-align: center;
}

.page-blog-sports-betting-tips__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  object-fit: cover;
}

.page-blog-sports-betting-tips__image-centered {
  margin: 40px auto;
  max-width: 800px;
}

/* Lists */
.page-blog-sports-betting-tips__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-blog-sports-betting-tips__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #AFC4E8; /* Text Secondary */
}

.page-blog-sports-betting-tips__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  font-size: 20px;
}

/* Card Styles */
.page-blog-sports-betting-tips__tip-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-sports-betting-tips__tip-card,
.page-blog-sports-betting-tips__strategy-card,
.page-blog-sports-betting-tips__odds-card {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-blog-sports-betting-tips__tip-card:hover,
.page-blog-sports-betting-tips__strategy-card:hover,
.page-blog-sports-betting-tips__odds-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-blog-sports-betting-tips__card-title {
  font-size: 22px;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-sports-betting-tips__card-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  flex-grow: 1; /* Ensure text fills space */
}

/* Link in text */
.page-blog-sports-betting-tips__text-link {
  color: #4FA8FF; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-sports-betting-tips__text-link:hover {
  color: #F2C14E; /* Gold */
}

/* FAQ Section */
.page-blog-sports-betting-tips__faq-list {
  margin-top: 30px;
}