.sportsbook-page {
  max-width: var(--editorial-max);
  margin: 0 auto;
  padding: 0 24px 80px;
  overflow-x: hidden;
}

.sportsbook-split {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
}

.sportsbook-image-rail {
  min-height: 360px;
  background-image: url("/images/decorative/decor_7.jpg");
  background-size: cover;
  background-position: center;
}

.sportsbook-prose {
  padding: 40px 36px;
  background: var(--surface);
}

.sportsbook-prose h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.sportsbook-prose h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--primary);
}

.sportsbook-prose p {
  font-family: var(--runway-sans);
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.checklist li {
  font-family: var(--runway-sans);
  font-size: 14px;
  color: var(--muted);
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.checklist li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (max-width: 768px) {
  .sportsbook-split {
    grid-template-columns: 1fr;
  }

  .sportsbook-image-rail {
    min-height: 200px;
  }
}
