/* ============================================================
   Spellen / Gokken Section — telstarbeach.nl/spellen/
   Dark surf theme + orange gambling accent
   ============================================================ */

:root {
  --sp-bg:          #0d1117;
  --sp-surface:     #161b22;
  --sp-surface2:    #21262d;
  --sp-accent:      #00b4d8;
  --sp-casino:      #e8890c;
  --sp-casino-hover:#d4780a;
  --sp-green:       #2ecc71;
  --sp-red:         #e74c3c;
  --sp-text:        #e6edf3;
  --sp-text-muted:  #8b949e;
  --sp-border:      #30363d;
  --sp-radius:      10px;
  --sp-shadow:      0 2px 16px rgba(0,0,0,.35);
  --sp-font:        'Inter', system-ui, -apple-system, sans-serif;
  --sp-font-head:   'Barlow Condensed', 'Inter', system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
.spellen-page *, .spellen-page *::before, .spellen-page *::after { box-sizing: border-box; }
.spellen-page { font-family: var(--sp-font); color: var(--sp-text); background: var(--sp-bg); margin: 0; min-height: 100vh; }
.spellen-page a:not(.sp-offer-cta):not(.sp-btn):not(.sp-btn-outline) { color: var(--sp-accent); text-decoration: none; }
.spellen-page a:hover { color: var(--sp-casino); }
.spellen-page img { max-width: 100%; height: auto; display: block; }

/* ── Header ─────────────────────────────────────────────────── */
.sp-header {
  background: rgba(13,17,23,.97);
  border-bottom: 2px solid var(--sp-casino);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
}
.sp-header-inner {
  display: flex; align-items: center; gap: 16px;
  height: 58px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.sp-logo { display: flex; align-items: baseline; gap: 0; flex-shrink: 0; }
.sp-logo-telstar { font-family: var(--sp-font-head); font-weight: 700; font-size: 22px; color: var(--sp-accent); line-height: 1; }
.sp-logo-beach   { font-family: var(--sp-font-head); font-weight: 700; font-size: 22px; color: #fff; line-height: 1; }
.sp-logo-tagline { font-size: 9px; color: var(--sp-text-muted); letter-spacing: 1px; text-transform: uppercase; margin-left: 10px; }
.sp-nav { display: flex; gap: 2px; margin-left: auto; }
.sp-nav a { color: rgba(255,255,255,.65); font-size: 13px; font-weight: 500; padding: 7px 12px; border-radius: 6px; transition: all .15s; white-space: nowrap; }
.sp-nav a:hover  { background: rgba(255,255,255,.08); color: #fff; }
.sp-nav a.active { color: var(--sp-casino); background: rgba(243,156,18,.1); }
.sp-nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.sp-nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ── Hero — FULL WIDTH TEXT ─────────────────────────────────── */
.sp-hero {
  background: linear-gradient(135deg, #0a1628 0%, var(--sp-bg) 60%);
  border-bottom: 1px solid var(--sp-border);
  padding: 36px 20px 28px;
}
.sp-hero-inner { max-width: 1200px; margin: 0 auto; }
.sp-breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.sp-breadcrumb a { color: rgba(255,255,255,.5); }
.sp-breadcrumb a:hover { color: var(--sp-casino); }
.sp-breadcrumb .sp-bc-current { color: var(--sp-casino); }
/* H1 — full width, no max-width constraint */
.sp-hero h1 {
  font-family: var(--sp-font-head);
  font-size: 38px; font-weight: 700; line-height: 1.15;
  margin: 0 0 12px; color: #fff;
  /* NO max-width — full width */
}
.sp-hero-meta { display: flex; gap: 20px; font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 16px; flex-wrap: wrap; }
.sp-hero-meta span { display: flex; align-items: center; gap: 4px; }
/* Hero summary — full width */
.sp-hero-summary {
  font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.72);
  /* NO max-width — full width across the whole container */
  margin: 0;
}

/* ── Main container ─────────────────────────────────────────── */
.sp-main { max-width: 1200px; margin: 0 auto; padding: 32px 20px; }
.sp-layout { display: block; } /* single column — no sidebar */
.sp-content { min-width: 0; }

/* ══════════════════════════════════════════════════════════════
   OFFER CARDS
══════════════════════════════════════════════════════════════ */
.sp-offers-section { margin-bottom: 36px; }
.sp-offers-grid { display: flex; flex-direction: column; gap: 12px; }

.sp-offer-card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  align-items: center;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}
.sp-offer-card:hover { border-color: var(--sp-casino); box-shadow: 0 4px 20px rgba(243,156,18,.15); }

/* Top keuze badge */
.sp-offer-card.top-keuze {
  border-color: var(--sp-casino);
  background: linear-gradient(135deg, var(--sp-surface) 0%, rgba(243,156,18,.06) 100%);
}
.sp-offer-card.top-keuze::before {
  content: '⭐ Top keuze';
  position: absolute; top: -11px; left: 16px;
  background: var(--sp-casino); color: #fff;
  font-size: 11px; font-weight: 700; padding: 2px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .04em;
}

/* Rank number */
.sp-offer-rank {
  position: absolute; top: 12px; right: 16px;
  font-size: 11px; font-weight: 700; color: var(--sp-text-muted);
}

.sp-offer-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 8px; padding: 8px;
  height: 52px; width: 100px;
}
.sp-offer-logo { width: 84px; height: 36px; object-fit: contain; display: block; }
.sp-offer-logo-placeholder {
  width: 84px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sp-surface2); border-radius: 6px;
  font-size: 11px; color: var(--sp-text-muted); font-weight: 700;
}

.sp-offer-info { min-width: 0; }
.sp-offer-name  { font-weight: 700; font-size: 16px; margin-bottom: 4px; color: var(--sp-text); }
.sp-offer-bonus { font-size: 14px; color: var(--sp-casino); font-weight: 600; margin-bottom: 6px; }

.sp-offer-tags  { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 6px; }
.sp-offer-tag   {
  font-size: 11px; padding: 2px 8px;
  background: var(--sp-surface2); border: 1px solid var(--sp-border);
  border-radius: 20px; color: var(--sp-text-muted); white-space: nowrap;
}
.sp-offer-tag.tag-license { color: var(--sp-accent); border-color: var(--sp-accent); background: rgba(0,180,216,.08); }

.sp-offer-meta  { font-size: 12px; color: var(--sp-text-muted); }
.sp-offer-score { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; margin-top: 6px; }
.sp-offer-score-num { color: var(--sp-casino); font-size: 16px; font-weight: 800; }

.sp-offer-cta {
  background: var(--sp-casino); color: #fff !important; font-weight: 700;
  font-size: 14px; padding: 12px 22px; border-radius: 8px;
  text-align: center; white-space: nowrap; display: block;
  transition: background .15s, transform .1s;
  flex-shrink: 0;
}
.sp-offer-cta:hover { background: var(--sp-casino-hover); color: #fff !important; transform: translateY(-1px); }
.sp-offer-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sp-offer-disclaimer { font-size: 10px; color: var(--sp-text-muted); text-align: center; }

/* ══════════════════════════════════════════════════════════════
   BODY CONTENT STYLES
══════════════════════════════════════════════════════════════ */
.sp-body {
  font-size: 15px; line-height: 1.8; color: var(--sp-text);
}
.sp-body > * + * { margin-top: 14px; }
.sp-body h2 {
  font-family: var(--sp-font-head); font-size: 26px; font-weight: 700;
  color: var(--sp-text); margin: 36px 0 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--sp-casino);
  line-height: 1.2;
}
.sp-body h3 {
  font-family: var(--sp-font-head); font-size: 20px; font-weight: 700;
  color: var(--sp-text); margin: 24px 0 10px;
}
.sp-body h4 { font-size: 17px; font-weight: 600; color: var(--sp-casino); margin: 20px 0 8px; }
.sp-body p   { margin: 0 0 16px; }

/* Lists */
.sp-body ul, .sp-body ol { margin: 0 0 16px 0; padding-left: 0; list-style: none; }
.sp-body ul li, .sp-body ol li {
  position: relative; padding: 4px 0 4px 24px; font-size: 14px; line-height: 1.6;
}
.sp-body ul li::before {
  content: '▸'; position: absolute; left: 0; top: 4px;
  color: var(--sp-casino); font-size: 12px;
}
.sp-body ol { counter-reset: sp-ol; }
.sp-body ol li::before {
  counter-increment: sp-ol; content: counter(sp-ol) '.';
  position: absolute; left: 0; top: 4px;
  color: var(--sp-casino); font-size: 12px; font-weight: 700;
}

/* Tables — mobile optimized */
.sp-body table, .wp-block-table table {
  width: 100%; border-collapse: collapse; font-size: 13px;
  margin: 20px 0;
}
.sp-table-wrap, .wp-block-table {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--sp-border); border-radius: var(--sp-radius);
  margin: 20px 0;
}
.sp-body table th {
  background: var(--sp-surface2); color: var(--sp-casino);
  padding: 10px 14px; text-align: left; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  border-bottom: 2px solid var(--sp-casino);
  white-space: nowrap;
}
.sp-body table td {
  padding: 10px 14px; border-bottom: 1px solid var(--sp-border);
  vertical-align: middle; color: var(--sp-text-muted);
}
.sp-body table tr:last-child td { border-bottom: none; }
.sp-body table tr:hover td { background: rgba(255,255,255,.02); }
.sp-body table td:first-child { color: var(--sp-text); font-weight: 500; }

/* Images in content */
.sp-body img, .sp-body figure img {
  border-radius: var(--sp-radius);
  box-shadow: var(--sp-shadow);
  margin: 20px 0;
  max-width: 100%;
}
.sp-body figure { margin: 24px 0; }
.sp-body figcaption {
  font-size: 12px; color: var(--sp-text-muted); text-align: center;
  margin-top: 8px; font-style: italic;
}
/* Floated images */
.sp-body .alignleft  { float: left; margin: 0 24px 16px 0; max-width: 45%; }
.sp-body .alignright { float: right; margin: 0 0 16px 24px; max-width: 45%; }
.sp-body .aligncenter { display: block; margin: 20px auto; }

/* Blockquote */
.sp-body blockquote {
  border-left: 4px solid var(--sp-casino); margin: 24px 0;
  padding: 16px 20px; background: rgba(243,156,18,.06);
  border-radius: 0 var(--sp-radius) var(--sp-radius) 0;
  font-size: 15px; font-style: italic; color: var(--sp-text-muted);
}
.sp-body blockquote p { margin: 0; }

/* ══════════════════════════════════════════════════════════════
   PROS / CONS BLOCK
══════════════════════════════════════════════════════════════ */
.sp-pros-cons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 24px 0;
}
.sp-pros, .sp-cons {
  border-radius: var(--sp-radius); padding: 18px 20px;
}
.sp-pros { background: rgba(46,204,113,.08); border: 1px solid rgba(46,204,113,.3); }
.sp-cons { background: rgba(231,76,60,.08); border: 1px solid rgba(231,76,60,.3); }
.sp-pros-title, .sp-cons-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; display: flex; align-items: center; gap: 6px;
  margin-bottom: 12px;
}
.sp-pros-title { color: var(--sp-green); }
.sp-cons-title { color: var(--sp-red); }
.sp-pros ul, .sp-cons ul { margin: 0; padding: 0; list-style: none; }
.sp-pros li, .sp-cons li {
  font-size: 13px; line-height: 1.55; padding: 4px 0 4px 20px;
  position: relative; color: var(--sp-text);
}
.sp-pros li::before { content: '✓'; position: absolute; left: 0; top: 4px; color: var(--sp-green); font-weight: 700; font-size: 12px; }
.sp-cons li::before { content: '✕'; position: absolute; left: 0; top: 4px; color: var(--sp-red); font-weight: 700; font-size: 12px; }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.sp-body details {
  border: 1px solid var(--sp-border); border-radius: 8px;
  margin-bottom: 8px; overflow: hidden; background: var(--sp-surface);
}
.sp-body details[open] { border-color: var(--sp-casino); }
.sp-body summary {
  padding: 14px 18px; font-weight: 600; font-size: 15px;
  cursor: pointer; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  color: var(--sp-text);
}
.sp-body summary::-webkit-details-marker { display: none; }
.sp-body summary::after {
  content: '+'; font-size: 20px; color: var(--sp-text-muted);
  transition: transform .2s; flex-shrink: 0; margin-left: 12px;
}
.sp-body details[open] summary::after { transform: rotate(45deg); color: var(--sp-casino); }
.sp-body summary:hover { color: var(--sp-casino); }
.sp-body details > *:not(summary) {
  padding: 14px 18px; font-size: 14px; color: var(--sp-text-muted);
  line-height: 1.7; border-top: 1px solid var(--sp-border);
}
.sp-body details > p { margin: 0; }

/* ══════════════════════════════════════════════════════════════
   RATING STARS
══════════════════════════════════════════════════════════════ */
.sp-stars { display: inline-flex; gap: 2px; }
.sp-stars .star { font-size: 14px; color: var(--sp-border); }
.sp-stars .star.filled { color: var(--sp-casino); }
.sp-stars .star.half { position: relative; color: var(--sp-border); }
.sp-stars .star.half::after {
  content: '★'; position: absolute; left: 0; top: 0;
  color: var(--sp-casino); overflow: hidden; width: 50%; display: block;
}

/* ══════════════════════════════════════════════════════════════
   AUTHOR BOX
══════════════════════════════════════════════════════════════ */
.sp-author {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--sp-surface); border: 1px solid var(--sp-border);
  border-left: 4px solid var(--sp-accent);
  border-radius: var(--sp-radius); padding: 22px; margin: 36px 0;
}
.sp-author-avatar-placeholder {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sp-accent), var(--sp-casino));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 20px; color: #fff; flex-shrink: 0;
}
.sp-author-name  { font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.sp-author-title { font-size: 12px; color: var(--sp-casino); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.sp-author-bio   { font-size: 13px; color: var(--sp-text-muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIBLE GAMBLING BLOCK
══════════════════════════════════════════════════════════════ */
.sp-responsible {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--sp-surface); border: 1px solid var(--sp-border);
  border-left: 4px solid var(--sp-casino);
  border-radius: var(--sp-radius); padding: 22px; margin: 28px 0;
}
.sp-responsible-icon { font-size: 32px; flex-shrink: 0; }
.sp-responsible-body h3 { font-size: 16px; font-weight: 700; margin: 0 0 10px; color: var(--sp-casino); }
.sp-responsible-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.sp-responsible-links a {
  font-size: 12px; padding: 4px 10px; background: var(--sp-surface2);
  border: 1px solid var(--sp-border); border-radius: 6px; color: var(--sp-text);
}
.sp-responsible-links a:hover { border-color: var(--sp-casino); color: var(--sp-casino); }
.sp-responsible-warning { font-size: 13px; color: var(--sp-text-muted); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════════════
   HUB PAGE SECTIONS
══════════════════════════════════════════════════════════════ */
.sp-hub-hero {
  background: linear-gradient(135deg, #0a1628 0%, var(--sp-bg) 100%);
  padding: 48px 20px 36px;
}
.sp-hub-hero-inner { max-width: 1200px; margin: 0 auto; }
.sp-hub-hero h1 { font-family: var(--sp-font-head); font-size: 48px; font-weight: 700; margin: 0 0 12px; color: #fff; }
.sp-hub-hero p  { font-size: 17px; color: rgba(255,255,255,.7); max-width: 600px; }

.sp-section { padding: 40px 0; }
.sp-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sp-section-alt { background: var(--sp-surface); }
.sp-section-title {
  font-family: var(--sp-font-head); font-size: 28px; font-weight: 700;
  margin: 0 0 20px; color: var(--sp-casino);
}
.sp-section-subtitle { font-size: 15px; color: var(--sp-text-muted); margin-bottom: 24px; }

.sp-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.sp-card {
  background: var(--sp-surface); border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius); padding: 22px;
  transition: border-color .2s, transform .15s;
  display: flex; flex-direction: column;
}
.sp-card:hover { border-color: var(--sp-casino); transform: translateY(-2px); color: inherit; }
.sp-card-icon  { font-size: 32px; margin-bottom: 12px; }
.sp-card-title { font-weight: 700; font-size: 17px; margin-bottom: 6px; color: var(--sp-text); }
.sp-card-excerpt { font-size: 13px; color: var(--sp-text-muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.sp-card-link  { font-size: 13px; color: var(--sp-casino); font-weight: 600; }
.sp-card-date  { font-size: 11px; color: var(--sp-text-muted); margin-bottom: 6px; }
.sp-section-more { text-align: center; margin-top: 24px; }
.sp-empty { color: var(--sp-text-muted); font-size: 14px; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.sp-btn {
  display: inline-block; background: var(--sp-casino); color: #fff !important;
  font-weight: 700; font-size: 14px; padding: 12px 24px;
  border-radius: 8px; transition: background .15s, transform .1s;
}
.sp-btn:hover { background: var(--sp-casino-hover); color: #fff !important; transform: translateY(-1px); }
.sp-btn-outline {
  display: inline-block; background: transparent; color: var(--sp-casino);
  border: 2px solid var(--sp-casino); font-weight: 700; font-size: 14px;
  padding: 10px 22px; border-radius: 8px; transition: all .15s;
}
.sp-btn-outline:hover { background: var(--sp-casino); color: #fff !important; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.sp-footer {
  background: #010409; border-top: 2px solid var(--sp-casino);
  padding: 28px 20px;
}
.sp-footer-inner { max-width: 1200px; margin: 0 auto; }
.sp-footer-badges {
  display: flex; justify-content: center; align-items: center;
  gap: 20px; margin-bottom: 16px; flex-wrap: wrap;
}
.sp-footer-badge     { font-size: 13px; color: var(--sp-text-muted); display: flex; align-items: center; gap: 6px; }
.sp-footer-badge-18  {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sp-red); color: #fff; font-weight: 800; font-size: 13px;
  border: 2px solid #fff; flex-shrink: 0;
}
.sp-footer-responsible { font-size: 13px; color: var(--sp-text-muted); text-align: center; margin-bottom: 10px; line-height: 1.6; }
.sp-footer-responsible a { color: var(--sp-accent); }
.sp-footer-responsible a:hover { color: var(--sp-casino); }
.sp-footer-disclaimer { font-size: 11px; color: var(--sp-text-muted); text-align: center; opacity: .6; margin-bottom: 10px; max-width: 700px; margin-left: auto; margin-right: auto; }
.sp-footer-copy { font-size: 11px; color: var(--sp-text-muted); text-align: center; opacity: .4; }

/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .sp-nav-toggle { display: flex; }
  .sp-nav {
    display: none; flex-direction: column;
    position: absolute; top: 58px; left: 0; right: 0;
    background: var(--sp-bg); border-bottom: 1px solid var(--sp-border);
    padding: 8px 20px 16px; z-index: 99;
  }
  .sp-nav.open { display: flex; }
  .sp-nav a { padding: 10px 0; border-bottom: 1px solid var(--sp-border); }
  .sp-offer-card { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .sp-offer-cta-wrap { grid-column: 1 / -1; }
  .sp-offer-cta { width: 100%; }
  .sp-hero h1 { font-size: 28px; }
  .sp-pros-cons { grid-template-columns: 1fr; }
  .sp-cards-grid { grid-template-columns: 1fr 1fr; }
  .sp-hub-hero h1 { font-size: 36px; }
  .sp-body .alignleft, .sp-body .alignright { float: none; max-width: 100%; margin: 16px 0; }
}

@media (max-width: 600px) {
  .sp-offer-card { grid-template-columns: 1fr; text-align: center; padding: 16px; gap: 12px; }
  .sp-offer-logo-wrap { margin: 0 auto; }
  .sp-offer-tags { justify-content: center; }
  .sp-offer-score { justify-content: center; }
  .sp-hero { padding: 24px 16px; }
  .sp-hero h1 { font-size: 24px; }
  .sp-main { padding: 20px 16px; }
  .sp-cards-grid { grid-template-columns: 1fr; }
  .sp-logo-tagline { display: none; }
  .sp-author { flex-direction: column; align-items: center; text-align: center; }
  .sp-responsible { flex-direction: column; }
  .sp-hub-hero h1 { font-size: 28px; }
}

/* Author avatar image */
.sp-author-avatar-img {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--sp-accent);
  flex-shrink: 0;
}

/* ── Content Images (in article body) ───────────────────── */
.sp-body figure.wp-block-image,
.sp-body .wp-block-image {
  margin: 24px auto;
  max-width: 480px;        /* max 480px wide — not full width */
  border-radius: var(--sp-radius);
  overflow: hidden;
  border: 1px solid var(--sp-border);
  border-top: 3px solid var(--sp-casino);
  background: var(--sp-surface);
  padding-bottom: 10px;
}
.sp-body figure.wp-block-image img,
.sp-body .wp-block-image img {
  width: 100%;
  height: auto;
  max-height: 320px;       /* cap height */
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  transition: transform .3s;
}
.sp-body figure.wp-block-image:hover img { transform: scale(1.02); }
.sp-body figcaption,
.sp-body .wp-element-caption {
  font-size: 12px;
  color: var(--sp-text-muted);
  text-align: center;
  padding: 8px 14px 0;
  font-style: italic;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   BET TYPE CARDS — for weddenschappen / sections
══════════════════════════════════════════════════════════════ */
.sp-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.sp-bet-card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  border-top: 3px solid var(--sp-casino);
  padding: 18px 20px;
  transition: border-color .2s, transform .15s;
}
.sp-bet-card:hover {
  border-color: var(--sp-casino);
  transform: translateY(-2px);
}
.sp-bet-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.sp-bet-card-title {
  font-family: var(--sp-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--sp-casino);
  margin-bottom: 8px;
}
.sp-bet-card-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--sp-text-muted);
}
.sp-bet-card-body strong {
  color: var(--sp-text);
}
.sp-bet-card-stat {
  display: inline-block;
  background: var(--sp-surface2);
  border: 1px solid var(--sp-border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sp-accent);
  margin-top: 10px;
  margin-right: 4px;
}

/* Info cards — for generic content blocks */
.sp-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.sp-info-card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 16px 18px;
}
.sp-info-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--sp-text-muted);
  margin-bottom: 6px;
}
.sp-info-card-value {
  font-family: var(--sp-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--sp-casino);
}
.sp-info-card-sub {
  font-size: 12px;
  color: var(--sp-text-muted);
  margin-top: 4px;
}

/* Step cards — numbered process */
.sp-step-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.sp-step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  padding: 16px 18px;
  transition: border-color .2s;
}
.sp-step-card:hover { border-color: var(--sp-casino); }
.sp-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sp-casino);
  color: #fff;
  font-family: var(--sp-font-head);
  font-size: 18px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sp-step-content h4 {
  font-family: var(--sp-font-head);
  font-size: 17px; font-weight: 700;
  margin: 0 0 6px; color: var(--sp-text);
}
.sp-step-content p {
  font-size: 13px; color: var(--sp-text-muted);
  line-height: 1.6; margin: 0;
}

@media (max-width: 600px) {
  .sp-cards-row, .sp-info-cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   SP-NAV DROPDOWN (added 2026-04-29) — submenus per category
══════════════════════════════════════════════════════════════ */
.sp-nav { position: relative; align-items: center; }
.sp-nav-item { position: relative; }
.sp-nav-item .sp-nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.65); font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 6px; transition: all .15s; white-space: nowrap;
}
.sp-nav-item .sp-nav-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.sp-nav-item .sp-nav-link.active { color: var(--sp-casino); background: rgba(243,156,18,.1); }
.sp-nav-caret { font-size: 10px; opacity: .7; transition: transform .15s; line-height: 1; }
.sp-nav-item.sp-has-children:hover .sp-nav-caret,
.sp-nav-item.sp-has-children:focus-within .sp-nav-caret { transform: rotate(180deg); }

.sp-submenu {
  position: absolute; top: 100%; left: 0;
  display: none; flex-direction: column; min-width: 240px;
  background: #1a1a1a;
  border: 1px solid var(--sp-border, rgba(255,255,255,.08));
  border-radius: 8px; padding: 6px; margin-top: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
  z-index: 100;
}
.sp-nav-item.sp-has-children:hover > .sp-submenu,
.sp-nav-item.sp-has-children:focus-within > .sp-submenu { display: flex; }

.sp-nav .sp-submenu-link {
  color: rgba(255,255,255,.78); font-size: 13px; font-weight: 500;
  padding: 8px 12px; border-radius: 6px; white-space: nowrap;
  text-decoration: none; transition: all .15s; display: block;
}
.sp-nav .sp-submenu-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.sp-nav .sp-submenu-link.active { color: var(--sp-casino); background: rgba(243,156,18,.1); }

@media (max-width: 900px) {
  .sp-nav-item { width: 100%; }
  .sp-nav-item .sp-nav-link { padding: 10px 0; border-bottom: 1px solid var(--sp-border, rgba(255,255,255,.08)); width: 100%; }
  .sp-submenu {
    position: static; display: flex;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 6px 14px; margin: 0; min-width: 0;
  }
  .sp-nav .sp-submenu-link { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
  .sp-nav-caret { display: inline-block; opacity: .5; }
}
