/* ==========================================================================
   SisterSitesBelgium.com - Main CSS
   Exact replication of the Lovable React/Tailwind design in pure CSS
   ========================================================================== */

/* ==========================================================================
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
  /* --- Colors (exact HSL from React index.css) --- */
  --belgian-black: #000000;
  --belgian-yellow: #FDDA24;
  --belgian-red: #EF3340;
  --off-white: #F5F3EF;
  --card: #FFFFFF;
  --foreground: #000000;
  --muted: #E8E8E8;
  --muted-foreground: #6B6B6B;
  --soft-black: #1A1A1A;
  --charcoal: #2D2D2D;
  --dark-grey: #3B3B3B;
  --medium-grey: #6B6B6B;
  --deep-red: #C41E2A;
  --dark-gold: #D4A800;
  --border: #E8E8E8;
  --accent-green: #2E9E4F;
  --light-yellow: #FFF0AA;
  --yellow-tint: #FFFBE6;
  --primary-foreground: #FFFFFF;

  /* --- Shadows --- */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-button: 0 4px 15px rgba(239, 51, 64, 0.3);
  --shadow-gold: 0 4px 15px rgba(253, 218, 36, 0.3);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.1);

  /* --- Fonts --- */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-accent: 'Space Mono', 'Courier New', monospace;

  /* --- Radius: 0px EVERYWHERE --- */
  --radius: 0px;
}


/* ==========================================================================
   1. CSS RESET / BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: var(--font-body);
  border-radius: 0;
}

ul, ol {
  list-style: none;
}

/* Remove border-radius from everything */
*,
input,
textarea,
select,
button,
a {
  border-radius: 0 !important;
}


/* ==========================================================================
   2. LAYOUT: Container & Grid System
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }


/* ==========================================================================
   3. HEADER: Sticky, Black bg, h-70px
   ========================================================================== */

.ssb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--belgian-black);
  box-shadow: var(--shadow-nav);
}

.ssb-header__inner {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}

/* Logo: multi-color SisterSitesBelgium.com */
.ssb-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.ssb-logo__sister {
  color: var(--belgian-yellow);
}

.ssb-logo__sites {
  color: var(--primary-foreground);
}

.ssb-logo__belgium {
  color: var(--belgian-red);
}

.ssb-logo__dot {
  color: var(--belgian-yellow);
}

/* Desktop Navigation */
.ssb-nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.ssb-nav__link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-foreground);
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.ssb-nav__link:hover {
  color: var(--belgian-yellow);
}

.ssb-nav__link.active {
  color: var(--belgian-yellow);
  border-bottom-color: var(--belgian-red);
}

.ssb-nav__cta {
  margin-left: 0.75rem;
  background-color: var(--belgian-red);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.ssb-nav__cta:hover {
  background-color: var(--deep-red);
}

/* Hamburger button */
.ssb-hamburger {
  display: block;
  color: var(--primary-foreground);
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.ssb-hamburger svg {
  display: block;
}

/* Mobile overlay */
.ssb-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  z-index: 40;
  background-color: rgba(0, 0, 0, 0.7);
}

.ssb-mobile-overlay.open {
  display: block;
}

/* Mobile navigation drawer */
.ssb-mobile-nav {
  display: none;
  position: fixed;
  right: 0;
  top: 70px;
  z-index: 50;
  height: calc(100vh - 70px);
  width: 18rem;
  background-color: var(--soft-black);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  border-left: 2px solid var(--belgian-yellow);
  overflow-y: auto;
}

.ssb-mobile-nav.open {
  display: flex;
}

.ssb-mobile-nav__link {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--primary-foreground);
  padding: 0.75rem 1rem;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.ssb-mobile-nav__link:hover {
  color: var(--belgian-yellow);
  background-color: var(--charcoal);
}

.ssb-mobile-nav__link.active {
  color: var(--belgian-yellow);
  background-color: var(--charcoal);
  border-left-color: var(--belgian-yellow);
}

.ssb-mobile-nav__cta {
  margin-top: 1rem;
  background-color: var(--belgian-red);
  color: var(--primary-foreground);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s ease;
  display: block;
}

.ssb-mobile-nav__cta:hover {
  background-color: var(--deep-red);
}


/* ==========================================================================
   4. HERO SECTION (Homepage)
   ========================================================================== */

.ssb-hero {
  position: relative;
  overflow: hidden;
}

.ssb-hero__bg {
  position: absolute;
  inset: 0;
}

.ssb-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ssb-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
}

/* Decorative vertical Belgian flag stripe on right */
.ssb-hero__flag-stripe {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  flex-direction: column;
}

.ssb-hero__flag-stripe > div {
  flex: 1;
}

.ssb-hero__flag-stripe > div:nth-child(1) { background-color: var(--belgian-black); }
.ssb-hero__flag-stripe > div:nth-child(2) { background-color: var(--belgian-yellow); }
.ssb-hero__flag-stripe > div:nth-child(3) { background-color: var(--belgian-red); }

.ssb-hero__content {
  position: relative;
  z-index: 10;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.ssb-hero__label,
.ssb-hero__tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--belgian-yellow);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out forwards;
}

.ssb-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 100ms;
  opacity: 0;
}

.ssb-hero__title .yellow,
.ssb-hero__title .text-yellow { color: var(--belgian-yellow); }
.ssb-hero__title .white,
.ssb-hero__title .text-white  { color: var(--primary-foreground); }
.ssb-hero__title .red,
.ssb-hero__title .text-red    { color: var(--belgian-red); }

.ssb-hero__subtitle,
.ssb-hero__text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: #ffffff;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 200ms;
  opacity: 0;
}

.ssb-hero__cta {
  display: inline-block;
  background-color: var(--belgian-red);
  color: var(--primary-foreground);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: var(--shadow-button);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 300ms;
  opacity: 0;
}

.ssb-hero__cta:hover {
  background-color: var(--deep-red);
  transform: scale(1.03);
}


/* ==========================================================================
   5. PAGE HEADER (Inner Pages)
   ========================================================================== */

.ssb-page-header {
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.ssb-page-header__bg {
  position: absolute;
  inset: 0;
}

.ssb-page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ssb-page-header__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
}

/* Decorative vertical Belgian flag stripe (same as hero) */
.ssb-page-header__flag-stripe {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  flex-direction: column;
}

.ssb-page-header__flag-stripe > div {
  flex: 1;
}

.ssb-page-header__flag-stripe > div:nth-child(1) { background-color: var(--belgian-black); }
.ssb-page-header__flag-stripe > div:nth-child(2) { background-color: var(--belgian-yellow); }
.ssb-page-header__flag-stripe > div:nth-child(3) { background-color: var(--belgian-red); }

.ssb-page-header__content {
  position: relative;
  z-index: 10;
}

.ssb-page-header__title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.ssb-page-header__title .yellow { color: var(--belgian-yellow); }
.ssb-page-header__title .white  { color: var(--primary-foreground); }

.ssb-page-header__subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--medium-grey);
  max-width: 42rem;
  line-height: 1.6;
}

/* Single CPT Hero – like homepage: tagline, title (yellow + red), intro, CTA */
.ssb-single-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding-top: 4rem;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
}

.ssb-single-hero__bg {
  position: absolute;
  inset: 0;
}

.ssb-single-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ssb-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.ssb-single-hero .ssb-hero__flag-stripe {
  display: none;
}

.ssb-single-hero__content {
  position: relative;
  z-index: 10;
}

.ssb-single-hero__tagline {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: var(--belgian-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.ssb-single-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
  text-wrap: balance;
}

.ssb-single-hero__title .text-yellow { color: var(--belgian-yellow); }
.ssb-single-hero__title .text-red    { color: var(--belgian-red); }

.ssb-single-hero__text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: #fff;
  max-width: 42rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.ssb-single-hero__text p {
  margin: 0 0 0.5rem;
}

.ssb-single-hero__text p:last-child {
  margin-bottom: 0;
}

.ssb-single-hero__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--belgian-red);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius, 0);
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.ssb-single-hero__cta:hover {
  background-color: var(--deep-red, #C41E2A);
  color: #fff;
}

@media (min-width: 768px) {
  .ssb-single-hero {
    min-height: 380px;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
  .ssb-single-hero .ssb-hero__flag-stripe {
    display: flex;
  }
}


/* ==========================================================================
   6. CASINO LIST SECTION — Responsive Grid
   ========================================================================== */

.ssb-casino-list,
.ssb-casino-section {
  background-color: var(--off-white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.ssb-casino-list__header,
.ssb-casino-section__header {
  margin-bottom: 2rem;
}

.ssb-casino-list__title,
.ssb-casino-section__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ssb-casino-list__title-main {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.125rem;
}
.ssb-casino-list__title-sub {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.ssb-casino-list__title .text-red,
.ssb-casino-section__title .red { color: var(--belgian-red); }
.text-red { color: var(--belgian-red); }

.ssb-casino-list__desc,
.ssb-casino-section__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
}

.ssb-casino-list__header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   7. CASINO GRID — Responsive Cards
   ========================================================================== */

/* Grid: 2 cols on mobile, 3 on tablet, 4 on desktop */
.ssb-casino-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .ssb-casino-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .ssb-casino-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Hide cards beyond initial batch */
.ssb-casino-card--hidden {
  display: none !important;
}

/* Fade in animation for load-more */
@keyframes ssbFadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Casino Card (vertical, single design for all screens) --- */
.ssb-casino-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--belgian-red);
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
  gap: 0.5rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ssb-casino-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* Rank accent colors */
.ssb-casino-card--gold   { border-top-color: var(--belgian-yellow); }
.ssb-casino-card--silver { border-top-color: #C0C0C0; }
.ssb-casino-card--bronze { border-top-color: #CD7F32; }
.ssb-casino-card--default { border-top-color: var(--belgian-red); }

/* Top Row: Rank # + Badge */
.ssb-casino-card__top-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ssb-casino-card__rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--belgian-black);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 6px;
  flex-shrink: 0;
}

.ssb-casino-card__badge-tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.ssb-casino-card__badge-tag--gold   { background: var(--belgian-yellow); color: var(--belgian-black); }
.ssb-casino-card__badge-tag--silver { background: #C0C0C0; color: var(--belgian-black); }
.ssb-casino-card__badge-tag--bronze { background: #CD7F32; color: #fff; }
.ssb-casino-card__badge-tag--default { background: var(--belgian-red); color: #fff; }

/* Logo — BIG, centered */
.ssb-casino-card__logo-wrap {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0.25rem auto;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ssb-casino-card__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ssb-casino-card__logo-initial {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #9ca3af;
}

/* Name */
.ssb-casino-card__name {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin: 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Rating */
.ssb-casino-card__rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.ssb-casino-card__rating-num {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--belgian-black);
  background: var(--belgian-yellow);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
}

/* Bonus text */
.ssb-casino-card__bonus-text {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
  line-height: 1.4;
  margin: 0;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Extras row: no deposit + promo */
.ssb-casino-card__extras-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
  min-height: 1.25rem;
}

.ssb-casino-card__nodep-badge {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 700;
  background: var(--belgian-yellow);
  color: var(--belgian-black);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  white-space: nowrap;
}

/* Promo code button */
.ssb-promo-code {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-accent);
  font-size: 0.5625rem;
  font-weight: 700;
  background-color: var(--belgian-black);
  color: var(--primary-foreground);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease;
}

.ssb-promo-code:hover {
  opacity: 0.85;
}

.ssb-promo-code svg {
  flex-shrink: 0;
  color: var(--primary-foreground);
}

/* CTA button */
.ssb-casino-card__cta-btn {
  display: block;
  width: 100%;
  background: var(--belgian-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  padding: 0.625rem 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  margin-top: auto;
}

.ssb-casino-card__cta-btn:hover {
  background: var(--deep-red);
  transform: scale(1.03);
}

/* "See More" button */
.ssb-casino-list__load-more {
  text-align: center;
  margin-top: 2rem;
}

.ssb-casino-list__see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--belgian-red);
  background: transparent;
  border: 2px solid var(--belgian-red);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ssb-casino-list__see-more-btn:hover {
  background: var(--belgian-red);
  color: #fff;
}

.ssb-casino-list__see-more-btn svg {
  transition: transform 0.2s ease;
}

.ssb-casino-list__see-more-btn:hover svg {
  transform: translateY(2px);
}

/* Responsive card sizing adjustments */
@media (max-width: 639px) {
  .ssb-casino-card {
    padding: 0.75rem;
    gap: 0.375rem;
    border-radius: 10px;
  }

  .ssb-casino-card__logo-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 10px;
  }

  .ssb-casino-card__logo-initial {
    font-size: 1.375rem;
  }

  .ssb-casino-card__rank-num {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.7rem;
  }

  .ssb-casino-card__badge-tag {
    font-size: 0.5rem;
    padding: 0.1rem 0.35rem;
  }

  .ssb-casino-card__name {
    font-size: 0.6875rem;
  }

  .ssb-casino-card__bonus-text {
    font-size: 0.5625rem;
    min-height: 1.75rem;
  }

  .ssb-casino-card__cta-btn {
    font-size: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
  }

  .ssb-casino-card__rating-num {
    font-size: 0.625rem;
    padding: 0.075rem 0.3rem;
  }

  .ssb-casino-card__nodep-badge,
  .ssb-promo-code {
    font-size: 0.5rem;
  }
}

@media (max-width: 374px) {
  .ssb-casino-grid {
    gap: 0.5rem;
  }

  .ssb-casino-card {
    padding: 0.5rem;
    gap: 0.25rem;
  }

  .ssb-casino-card__logo-wrap {
    width: 2.75rem;
    height: 2.75rem;
  }

  .ssb-casino-card__logo-initial {
    font-size: 1.125rem;
  }

  .ssb-casino-card__name {
    font-size: 0.625rem;
  }

  .ssb-casino-card__cta-btn {
    font-size: 0.6875rem;
    padding: 0.4rem;
  }
}

/* (Old mobile card styles removed — using unified .ssb-casino-card grid) */


/* ==========================================================================
   8. STAR RATINGS
   ========================================================================== */

.ssb-stars {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.ssb-star {
  color: var(--dark-grey);
}

.ssb-star path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.ssb-star.filled {
  color: var(--belgian-yellow);
}

.ssb-star.filled path {
  fill: var(--belgian-yellow);
}

/* Small star variant for mobile */
.ssb-stars--sm .ssb-star {
  width: 8px;
  height: 8px;
}


/* ==========================================================================
   9. BODY CONTENT SECTIONS (alternating bg)
   ========================================================================== */

/* Body section class used in single CPT templates and homepage */
.ssb-body-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.ssb-section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.ssb-body-content {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  /* no max-width — fills container */
}

.ssb-body-content p + p {
  margin-top: 1rem;
}

.ssb-body-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  padding-top: 1rem;
  margin-bottom: 0.75rem;
}

.ssb-body-content ul {
  list-style: disc;
  list-style-position: inside;
  padding-left: 0.5rem;
}

.ssb-body-content ul li {
  margin-bottom: 0.75rem;
}

.ssb-body-content ul li strong {
  color: var(--foreground);
}

.ssb-body-content a {
  color: var(--belgian-red);
  font-weight: 700;
}

.ssb-body-content a:hover {
  text-decoration: underline;
}

/* ── Tables inside body sections ── */
.ssb-body-content table,
.ssb-main-body__content table,
.ssb-cpt-body__content table {
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  overflow: hidden;
}

.ssb-body-content table th,
.ssb-body-content table td,
.ssb-main-body__content table th,
.ssb-main-body__content table td,
.ssb-cpt-body__content table th,
.ssb-cpt-body__content table td {
  padding: 14px 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

/* Remove right border on last column */
.ssb-body-content table th:last-child,
.ssb-body-content table td:last-child,
.ssb-main-body__content table th:last-child,
.ssb-main-body__content table td:last-child,
.ssb-cpt-body__content table th:last-child,
.ssb-cpt-body__content table td:last-child {
  border-right: none;
}

/* Remove bottom border on last row */
.ssb-body-content table tbody tr:last-child td,
.ssb-main-body__content table tbody tr:last-child td,
.ssb-cpt-body__content table tbody tr:last-child td,
.ssb-body-content table tr:last-child td,
.ssb-main-body__content table tr:last-child td,
.ssb-cpt-body__content table tr:last-child td {
  border-bottom: none;
}

/* Header row — dark Belgian black, yellow text */
/* Works for <thead><th> AND first <tr><td> (n8n tables often lack <thead>) */
.ssb-body-content table thead th,
.ssb-main-body__content table thead th,
.ssb-cpt-body__content table thead th,
.ssb-body-content table tr:first-child th,
.ssb-main-body__content table tr:first-child th,
.ssb-cpt-body__content table tr:first-child th,
.ssb-body-content table.ssb-table--no-thead tr:first-child td,
.ssb-main-body__content table.ssb-table--no-thead tr:first-child td,
.ssb-cpt-body__content table.ssb-table--no-thead tr:first-child td {
  background: #1a1a2e !important;
  color: #FDDA24 !important;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid #FDDA24;
  border-right-color: rgba(255,255,255,0.12);
}

/* Force yellow on ALL child elements inside header cells (b, strong, a, span) */
.ssb-body-content table thead th *,
.ssb-main-body__content table thead th *,
.ssb-cpt-body__content table thead th *,
.ssb-body-content table.ssb-table--no-thead tr:first-child td *,
.ssb-main-body__content table.ssb-table--no-thead tr:first-child td *,
.ssb-cpt-body__content table.ssb-table--no-thead tr:first-child td * {
  color: #FDDA24 !important;
}

.ssb-body-content table thead th:last-child,
.ssb-main-body__content table thead th:last-child,
.ssb-cpt-body__content table thead th:last-child,
.ssb-body-content table.ssb-table--no-thead tr:first-child td:last-child,
.ssb-main-body__content table.ssb-table--no-thead tr:first-child td:last-child,
.ssb-cpt-body__content table.ssb-table--no-thead tr:first-child td:last-child {
  border-right: none;
}

/* First column highlight — label column (bold, subtle bg) */
.ssb-body-content table td:first-child,
.ssb-main-body__content table td:first-child,
.ssb-cpt-body__content table td:first-child {
  font-weight: 600;
  color: #1a1a2e;
  background: #f8f7f4;
  white-space: nowrap;
}

/* Also handle <strong>/<b> inside td acting as row headers */
.ssb-body-content table td strong,
.ssb-body-content table td b,
.ssb-main-body__content table td strong,
.ssb-main-body__content table td b,
.ssb-cpt-body__content table td strong,
.ssb-cpt-body__content table td b {
  color: #1a1a2e;
  font-weight: 700;
}

/* Alternating row stripes */
.ssb-body-content table tbody tr:nth-child(even),
.ssb-main-body__content table tbody tr:nth-child(even),
.ssb-cpt-body__content table tbody tr:nth-child(even) {
  background: #fafaf8;
}

.ssb-body-content table tbody tr:nth-child(even) td:first-child,
.ssb-main-body__content table tbody tr:nth-child(even) td:first-child,
.ssb-cpt-body__content table tbody tr:nth-child(even) td:first-child {
  background: #f0efe9;
}

/* Hover effect */
.ssb-body-content table tbody tr:hover,
.ssb-main-body__content table tbody tr:hover,
.ssb-cpt-body__content table tbody tr:hover {
  background: #f0eddf;
}

.ssb-body-content table tbody tr:hover td:first-child,
.ssb-main-body__content table tbody tr:hover td:first-child,
.ssb-cpt-body__content table tbody tr:hover td:first-child {
  background: #e8e5d8;
}

/* Caption if present */
.ssb-body-content table caption,
.ssb-main-body__content table caption,
.ssb-cpt-body__content table caption {
  caption-side: bottom;
  padding: 10px 16px;
  font-size: 0.8125rem;
  color: #6b7280;
  text-align: left;
}

/* ── Tables WITHOUT <thead>: JS adds .ssb-table--no-thead class ── */
/* Header styling handled above via .ssb-table--no-thead tr:first-child td */

/* Stripe offset for no-thead tables (skip first row which is header) */
table.ssb-table--no-thead tr:nth-child(even) {
  background: transparent;
}

table.ssb-table--no-thead tr:nth-child(odd):not(:first-child) {
  background: #fafaf8;
}

table.ssb-table--no-thead tr:nth-child(odd):not(:first-child) td:first-child {
  background: #f0efe9;
}

table.ssb-table--no-thead tr:nth-child(even):not(:first-child) td:first-child {
  background: #f8f7f4;
}

/* H3/H2 above a table — comparison title styling */
.ssb-body-content h2 + table,
.ssb-body-content h3 + table,
.ssb-main-body__content h2 + table,
.ssb-main-body__content h3 + table,
.ssb-cpt-body__content h2 + table,
.ssb-cpt-body__content h3 + table {
  margin-top: 0.75rem;
}

/* Static casino grid embedded in mid-content */
.ssb-mid-content-grid {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: var(--off-white);
}

.ssb-mid-content-grid__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.ssb-mid-content-grid__title .text-red {
  color: var(--belgian-red);
}

.ssb-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.ssb-section--card {
  background-color: var(--card);
}

.ssb-section--off-white {
  background-color: var(--off-white);
}

.ssb-section--black {
  background-color: var(--belgian-black);
}

.ssb-section--soft-black {
  background-color: var(--soft-black);
}

.ssb-section__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.ssb-section__content {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.ssb-section__content p + p {
  margin-top: 1rem;
}

.ssb-section__content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  padding-top: 1rem;
  margin-bottom: 0.75rem;
}

.ssb-section__content ul {
  list-style: disc;
  list-style-position: inside;
  padding-left: 0.5rem;
}

.ssb-section__content ul li {
  margin-bottom: 0.75rem;
}

.ssb-section__content ul li strong {
  color: var(--foreground);
}

.ssb-section__content a {
  color: var(--belgian-red);
  font-weight: 700;
}

.ssb-section__content a:hover {
  text-decoration: underline;
}


/* ==========================================================================
   10. FAQ SECTION
   ========================================================================== */

.ssb-faq {
  background-color: var(--belgian-black);
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.ssb-faq__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.ssb-faq__title .yellow { color: var(--belgian-yellow); }
.ssb-faq__title .white  { color: var(--primary-foreground); }

.ssb-faq__list {
  display: flex;
  flex-direction: column;
}

.ssb-faq__item {
  border-left: 4px solid var(--belgian-red);
  background-color: transparent;
  transition: all 0.3s ease;
}

.ssb-faq__item.open {
  border-left-color: var(--belgian-yellow);
  background-color: var(--soft-black);
}

.ssb-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.ssb-faq__trigger-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ssb-faq__number {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: var(--belgian-yellow);
  flex-shrink: 0;
}

.ssb-faq__question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-foreground);
  transition: color 0.3s ease;
}

.ssb-faq__trigger:hover .ssb-faq__question {
  color: var(--belgian-yellow);
}

.ssb-faq__chevron {
  color: var(--belgian-yellow);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}

.ssb-faq__item.open .ssb-faq__chevron {
  transform: rotate(180deg);
}

.ssb-faq__answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  padding-left: 3.5rem;
}

.ssb-faq__item.open .ssb-faq__answer {
  display: block;
}

.ssb-faq__answer p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--medium-grey);
  line-height: 1.6;
}

.ssb-faq__divider {
  margin: 0 1.25rem;
  border-bottom: 1px solid var(--charcoal);
}


/* ==========================================================================
   11. BELGIAN FLAG BAR (used on cards, author box, etc.)
   ========================================================================== */

.belgian-flag-bar {
  display: flex;
  height: 4px;
}

.belgian-flag-bar > div {
  flex: 1;
}

.belgian-flag-bar > div:nth-child(1) { background-color: var(--belgian-black); }
.belgian-flag-bar > div:nth-child(2) { background-color: var(--belgian-yellow); }
.belgian-flag-bar > div:nth-child(3) { background-color: var(--belgian-red); }

/* Absolute positioned version (inside cards) */
.belgian-flag-bar--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}


/* ==========================================================================
   12. NETWORK / SISTER-SITE GRID CARDS
   ========================================================================== */

.ssb-network-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.ssb-network-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ssb-network-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--belgian-yellow);
}

/* Card header: icon + name + tags */
.ssb-network-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.ssb-network-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--belgian-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--belgian-yellow);
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.ssb-network-card__icon span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--belgian-yellow);
}

/* Featured image logo in network/sister-site grid cards */
.ssb-network-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

.ssb-network-card__name {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.ssb-network-card__tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.ssb-network-card__tag {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
}

.ssb-network-card__tag--yellow,
.ssb-tag-yellow {
  background-color: var(--belgian-yellow);
  color: var(--belgian-black);
}

.ssb-network-card__tag--muted,
.ssb-tag-muted {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

/* Rating row */
.ssb-network-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ssb-network-card__rating-num {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--belgian-red);
}

/* Site tags */
.ssb-network-card__sites {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.ssb-network-card__site-tag {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  background-color: var(--muted);
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--border);
}

/* CTA button */
.ssb-network-card__cta {
  width: 100%;
  background-color: var(--belgian-red);
  color: var(--primary-foreground);
  padding: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.15s ease;
  margin-top: auto;
  display: block;
  border-radius: 8px;
}

.ssb-network-card__cta:hover {
  background-color: var(--deep-red);
}


/* ==========================================================================
   13. SEARCH BAR
   ========================================================================== */

.ssb-search,
.ssb-search-bar {
  position: relative;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.ssb-search__icon,
.ssb-search-bar__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.ssb-search__input,
.ssb-search-bar__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 2px solid var(--border);
  background-color: var(--card);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s ease;
}

.ssb-search__input:focus,
.ssb-search-bar__input:focus {
  border-color: var(--belgian-yellow);
}

.ssb-search__input::placeholder,
.ssb-search-bar__input::placeholder {
  color: var(--muted-foreground);
}


/* ==========================================================================
   14. FILTER BUTTONS
   ========================================================================== */

.ssb-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.ssb-filter-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ssb-filter-btn:hover {
  border-color: var(--belgian-yellow);
}

.ssb-filter-btn.active {
  background-color: var(--belgian-black);
  color: var(--belgian-yellow);
  border-color: var(--belgian-black);
}


/* ==========================================================================
   15. RELATED PAGES (3-col grid, flag top bar)
   ========================================================================== */

.ssb-related-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.ssb-related-card {
  background-color: var(--off-white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
}

.ssb-related-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--belgian-yellow);
}

.ssb-related-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.ssb-related-card:hover .ssb-related-card__title {
  color: var(--belgian-red);
}

.ssb-related-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ssb-related-card__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--belgian-red);
}


/* ==========================================================================
   15b. ARCHIVE SECTION
   ========================================================================== */

.ssb-archive-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ==========================================================================
   15c. RELATED PAGES SECTION
   ========================================================================== */

.ssb-related-pages {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ==========================================================================
   15d. AUTHOR SECTION
   ========================================================================== */

/* Author box – spacious, clean (like reference "WRITTEN BY") */
.ssb-author-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #f8f8f8;
}

.ssb-author-box {
  background: #f8f8f8;
  border: none;
  border-radius: 0;
  padding: 2rem 0 0;
  max-width: 42rem;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  box-shadow: none;
}

.ssb-author-box__flag-bar {
  margin-bottom: 1.5rem;
}

.ssb-author-box .belgian-flag-bar {
  display: flex;
  flex-direction: row;
  height: 6px;
  border-radius: 0;
  overflow: hidden;
}

.ssb-author-box .belgian-flag-bar > div {
  flex: 1;
}

.ssb-author-box .belgian-flag-bar > div:nth-child(1) { background: var(--belgian-black); }
.ssb-author-box .belgian-flag-bar > div:nth-child(2) { background: var(--belgian-yellow); }
.ssb-author-box .belgian-flag-bar > div:nth-child(3) { background: var(--belgian-red); }

.ssb-author-box__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0;
}

.ssb-author-box__avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  background-color: var(--belgian-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid #e5e7eb;
}

.ssb-author-box__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ssb-author-box__avatar svg {
  color: var(--belgian-yellow);
  width: 32px;
  height: 32px;
}

.ssb-author-box__initials {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--belgian-yellow);
  letter-spacing: 0.05em;
  user-select: none;
}

.ssb-author-box__content {
  flex: 1;
  min-width: 0;
}

.ssb-author-box__regalia {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.ssb-author-box__label {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ssb-author-box__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ssb-author-box__bio {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  max-width: 55ch;
}

@media (max-width: 480px) {
  .ssb-author-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .ssb-author-box__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
  }
  .ssb-author-box__avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
  }
  .ssb-author-box__name {
    font-size: 1.125rem;
  }
  .ssb-author-box__bio {
    font-size: 0.875rem;
  }
}

/* ==========================================================================
   16. AUTHOR BOX (legacy)
   ========================================================================== */

.ssb-author {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  max-width: 48rem;
  position: relative;
  overflow: hidden;
}

.ssb-author__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.ssb-author__avatar {
  width: 4rem;
  height: 4rem;
  background-color: var(--belgian-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ssb-author__avatar svg {
  color: var(--belgian-yellow);
  width: 28px;
  height: 28px;
}

.ssb-author__label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.ssb-author__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.ssb-author__bio {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}


/* ==========================================================================
   17. CONTACT FORM
   ========================================================================== */

.ssb-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
}

.ssb-contact-form {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
}

.ssb-contact-form__group {
  margin-bottom: 1.25rem;
}

.ssb-contact-form__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.ssb-contact-form__input,
.ssb-contact-form__select,
.ssb-contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.3s ease;
}

.ssb-contact-form__input:focus,
.ssb-contact-form__select:focus,
.ssb-contact-form__textarea:focus {
  border-color: var(--belgian-yellow);
}

.ssb-contact-form__textarea {
  resize: none;
  min-height: 9rem;
}

.ssb-contact-form__submit {
  background-color: var(--belgian-red);
  color: var(--primary-foreground);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 0.875rem 2.25rem;
  box-shadow: var(--shadow-button);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.ssb-contact-form__submit:hover {
  background-color: var(--deep-red);
  transform: scale(1.02);
}

/* Contact Info Sidebar */
.ssb-contact-info {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  height: fit-content;
}

.ssb-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ssb-contact-info__item:last-child {
  margin-bottom: 0;
}

.ssb-contact-info__icon {
  color: var(--belgian-red);
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 20px;
  height: 20px;
}

.ssb-contact-info__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.ssb-contact-info__value {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Social icons in contact */
.ssb-contact-social {
  margin-top: 2rem;
}

.ssb-contact-social__title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.ssb-contact-social__icons {
  display: flex;
  gap: 0.75rem;
}

.ssb-contact-social__icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.ssb-contact-social__icon:hover {
  color: var(--belgian-yellow);
  background-color: var(--charcoal);
}

.ssb-contact-social__icon svg {
  width: 16px;
  height: 16px;
}


/* ==========================================================================
   18. BLOG
   ========================================================================== */

/* Featured blog card (2-col layout) */
.ssb-blog-featured {
  background-color: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
}

.ssb-blog-featured:hover {
  box-shadow: var(--shadow-card-hover);
}

.ssb-blog-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.ssb-blog-featured__image {
  background-color: var(--muted);
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssb-blog-featured__image span {
  font-size: 2.5rem;
}

.ssb-blog-featured__content {
  padding: 2rem;
}

.ssb-blog-featured__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.ssb-blog-featured__excerpt {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ssb-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ssb-blog-featured__meta span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.ssb-blog-featured__link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--belgian-red);
  background: none;
  border: none;
  cursor: pointer;
}

.ssb-blog-featured__link:hover {
  text-decoration: underline;
}

/* Blog grid cards */
.ssb-blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.ssb-blog-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.ssb-blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--belgian-yellow);
}

.ssb-blog-card__image {
  background-color: var(--muted);
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ssb-blog-card__image span {
  font-size: 1.875rem;
}

.ssb-blog-card__body {
  padding: 1.25rem;
}

.ssb-blog-card__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ssb-blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ssb-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ssb-blog-card__meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.ssb-blog-card__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--belgian-red);
  background: none;
  border: none;
  cursor: pointer;
}

.ssb-blog-card__link:hover {
  text-decoration: underline;
}


/* ==========================================================================
   19. HOW WE RATE
   ========================================================================== */

/* Criteria cards */
.ssb-criteria-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.ssb-criteria-card {
  background-color: var(--off-white);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.ssb-criteria-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ssb-criteria-card__icon {
  font-size: 1.875rem;
}

.ssb-criteria-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

/* Progress bar */
.ssb-criteria-card__bar {
  width: 100%;
  height: 0.625rem;
  background-color: var(--muted);
  margin-bottom: 0.75rem;
}

.ssb-criteria-card__bar-fill {
  height: 100%;
  background-color: var(--belgian-yellow);
}

.ssb-criteria-card__weight {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.ssb-criteria-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.ssb-criteria-card__scoring {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--dark-grey);
}

/* Process steps (dark section) */
.ssb-process-steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.ssb-process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--charcoal);
  border: 1px solid var(--dark-grey);
  padding: 1.25rem;
  transition: border-color 0.3s ease;
}

.ssb-process-step:hover {
  border-color: var(--belgian-yellow);
}

.ssb-process-step__num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--belgian-yellow);
  width: 2rem;
  flex-shrink: 0;
}

.ssb-process-step__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary-foreground);
}


/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.ssb-footer__flag {
  display: flex;
  height: 4px;
}

.ssb-footer__flag > div {
  flex: 1;
}

.ssb-footer__flag > div:nth-child(1) { background-color: var(--belgian-black); }
.ssb-footer__flag > div:nth-child(2) { background-color: var(--belgian-yellow); }
.ssb-footer__flag > div:nth-child(3) { background-color: var(--belgian-red); }

.ssb-footer {
  background-color: var(--belgian-black);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.ssb-footer__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* Footer brand block */
.ssb-footer__brand-logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.ssb-footer__brand-desc,
.ssb-footer__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--medium-grey);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Social icons (alternating yellow/red bg) */
.ssb-footer__socials {
  display: flex;
  gap: 0.75rem;
}

.ssb-footer__social {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ssb-footer__social--yellow {
  background-color: var(--belgian-yellow);
  color: var(--belgian-black);
}

.ssb-footer__social--yellow:hover {
  opacity: 0.8;
}

.ssb-footer__social--red {
  background-color: var(--belgian-red);
  color: var(--primary-foreground);
}

.ssb-footer__social--red:hover {
  background-color: var(--deep-red);
}

.ssb-footer__social svg {
  width: 16px;
  height: 16px;
}

/* Footer column headings */
.ssb-footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--belgian-yellow);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ssb-footer__links {
  list-style: none;
}

.ssb-footer__links li {
  margin-bottom: 0.5rem;
}

.ssb-footer__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--medium-grey);
  transition: color 0.3s ease;
}

.ssb-footer__links a:hover {
  color: var(--belgian-yellow);
}

/* Footer bottom bar */
.ssb-footer__bottom {
  border-top: 1px solid var(--charcoal);
  padding-top: 1.5rem;
}

.ssb-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.ssb-footer__badge {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--charcoal);
  color: var(--medium-grey);
  border: 1px solid var(--dark-grey);
}

.ssb-footer__disclaimer {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--medium-grey);
  text-align: center;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto 0.75rem;
}

.ssb-footer__copyright {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--dark-grey);
  text-align: center;
}


/* ==========================================================================
   21. RESPONSIBLE GAMBLING SECTION
   ========================================================================== */

.ssb-responsible {
  background-color: var(--belgian-black);
  border-top: 4px solid var(--belgian-red);
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.ssb-responsible__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ssb-responsible__title .red   { color: var(--belgian-red); }
.ssb-responsible__title .white { color: var(--primary-foreground); }

.ssb-responsible__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--medium-grey);
  line-height: 1.6;
  max-width: 42rem;
  margin-bottom: 2rem;
}

.ssb-responsible__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.ssb-responsible__card {
  background-color: var(--charcoal);
  border-left: 4px solid var(--belgian-yellow);
  padding: 1.25rem;
  text-align: left;
  transition: background-color 0.3s ease;
  display: block;
}

.ssb-responsible__card:hover {
  background-color: var(--dark-grey);
}

.ssb-responsible__card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.25rem;
}

.ssb-responsible__card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--medium-grey);
}


/* ==========================================================================
   22. TERMS PAGE (alternating section colors)
   ========================================================================== */

/* Uses .ssb-section--card and .ssb-section--off-white alternating */
/* Already handled by the section utility classes */


/* ==========================================================================
   23. GRADIENTS & UTILITY CLASSES
   ========================================================================== */

.belgian-flag-gradient {
  background: linear-gradient(90deg, #000000 33.33%, #FDDA24 33.33%, #FDDA24 66.66%, #EF3340 66.66%);
}

.gradient-hero {
  background: linear-gradient(135deg, #000000 0%, #1A1A1A 40%, #2D2D2D 100%);
}

.gradient-cta {
  background: linear-gradient(135deg, #EF3340 0%, #C41E2A 100%);
}

.gradient-gold {
  background: linear-gradient(135deg, #FDDA24 0%, #D4A800 100%);
}

.gradient-dark-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 100%);
}

/* Text colors */
.text-belgian-yellow { color: var(--belgian-yellow); }
.text-belgian-red    { color: var(--belgian-red); }
.text-belgian-black  { color: var(--belgian-black); }
.text-white          { color: var(--primary-foreground); }
.text-muted          { color: var(--muted-foreground); }
.text-medium-grey    { color: var(--medium-grey); }
.text-dark-grey      { color: var(--dark-grey); }
.text-accent-green   { color: var(--accent-green); }
.text-foreground     { color: var(--foreground); }

/* Background colors */
.bg-belgian-black   { background-color: var(--belgian-black); }
.bg-belgian-yellow  { background-color: var(--belgian-yellow); }
.bg-belgian-red     { background-color: var(--belgian-red); }
.bg-off-white       { background-color: var(--off-white); }
.bg-card            { background-color: var(--card); }
.bg-soft-black      { background-color: var(--soft-black); }
.bg-charcoal        { background-color: var(--charcoal); }
.bg-muted           { background-color: var(--muted); }

/* Shadows */
.shadow-card       { box-shadow: var(--shadow-card); }
.shadow-card-hover { box-shadow: var(--shadow-card-hover); }
.shadow-button     { box-shadow: var(--shadow-button); }
.shadow-gold       { box-shadow: var(--shadow-gold); }

/* Line clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Text balance */
.text-balance {
  text-wrap: balance;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ==========================================================================
   24. ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-delay {
  animation-delay: calc(var(--i, 0) * 100ms);
}

@keyframes accordion-down {
  from { max-height: 0; opacity: 0; }
  to   { max-height: 500px; opacity: 1; }
}

@keyframes accordion-up {
  from { max-height: 500px; opacity: 1; }
  to   { max-height: 0; opacity: 0; }
}


/* ==========================================================================
   25. TEAM / ABOUT PAGE SPECIFICS
   ========================================================================== */

.ssb-team-member {
  margin-top: 3rem;
}

.ssb-team-member__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.ssb-team-member__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50% !important;
  object-fit: cover;
}

.ssb-team-member__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}


/* ==========================================================================
   26. GENERIC BUTTON STYLES
   ========================================================================== */

.ssb-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.ssb-btn--red {
  background-color: var(--belgian-red);
  color: var(--primary-foreground);
  padding: 0.875rem 2.25rem;
  box-shadow: var(--shadow-button);
}

.ssb-btn--red:hover {
  background-color: var(--deep-red);
  transform: scale(1.02);
}

.ssb-btn--yellow {
  background-color: var(--belgian-yellow);
  color: var(--belgian-black);
  padding: 0.875rem 2.25rem;
  box-shadow: var(--shadow-gold);
}

.ssb-btn--yellow:hover {
  background-color: var(--dark-gold);
}

.ssb-btn--black {
  background-color: var(--belgian-black);
  color: var(--belgian-yellow);
  padding: 0.875rem 2.25rem;
}

.ssb-btn--black:hover {
  background-color: var(--soft-black);
}

.ssb-btn--outline {
  background-color: transparent;
  color: var(--belgian-red);
  border: 2px solid var(--belgian-red);
  padding: 0.75rem 2rem;
}

.ssb-btn--outline:hover {
  background-color: var(--belgian-red);
  color: var(--primary-foreground);
}


/* ==========================================================================
   27. BREADCRUMBS (optional)
   ========================================================================== */

.ssb-breadcrumbs {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.ssb-breadcrumbs a {
  color: var(--belgian-red);
  transition: color 0.3s ease;
}

.ssb-breadcrumbs a:hover {
  color: var(--deep-red);
  text-decoration: underline;
}

.ssb-breadcrumbs__sep {
  margin: 0 0.5rem;
  color: var(--muted-foreground);
}


/* ==========================================================================
   28. TABLES (for WordPress content)
   ========================================================================== */

.ssb-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.ssb-table th {
  background-color: var(--belgian-black);
  color: var(--belgian-yellow);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1rem;
}

.ssb-table td {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--foreground);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.ssb-table tr:nth-child(even) td {
  background-color: var(--off-white);
}

.ssb-table tr:hover td {
  background-color: var(--muted);
}


/* ==========================================================================
   29. PAGINATION
   ========================================================================== */

.ssb-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 2rem;
}

.ssb-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  border: 1px solid var(--border);
  background-color: var(--card);
  transition: all 0.3s ease;
}

.ssb-pagination__link:hover {
  border-color: var(--belgian-yellow);
  color: var(--belgian-yellow);
}

.ssb-pagination__link.active {
  background-color: var(--belgian-black);
  color: var(--belgian-yellow);
  border-color: var(--belgian-black);
}

.ssb-pagination__link--prev,
.ssb-pagination__link--next {
  width: auto;
  padding: 0 1rem;
}


/* ==========================================================================
   30. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Small screens (min-width: 640px) --- */
@media (min-width: 640px) {
  .ssb-responsible__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Medium screens (min-width: 768px) --- */
@media (min-width: 768px) {
  /* Hero */
  .ssb-hero__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .ssb-hero__label {
    font-size: 0.875rem;
  }

  .ssb-hero__flag-stripe {
    display: flex;
  }

  /* Page header */
  .ssb-page-header__title {
    font-size: 3rem;
  }

  .ssb-page-header__flag-stripe {
    display: flex;
  }

  /* Section titles */
  .ssb-section__title,
  .ssb-section-title,
  .ssb-faq__title,
  .ssb-casino-list__title,
  .ssb-casino-section__title,
  .ssb-responsible__title {
    font-size: 2.25rem;
  }

  /* Body sections */
  .ssb-body-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .ssb-section__content h3 {
    font-size: 1.5rem;
  }

  /* FAQ padding */
  .ssb-faq__trigger {
    padding: 1.5rem;
  }

  .ssb-faq__answer {
    padding: 0 1.5rem 1.5rem;
    padding-left: 4rem;
  }

  .ssb-faq__question {
    font-size: 1.125rem;
  }

  /* Blog featured: 2-col */
  .ssb-blog-featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ssb-blog-featured__image {
    height: auto;
  }

  /* Blog grid: 2-col */
  .ssb-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Network grid: 2-col */
  .ssb-network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Related grid: 3-col */
  .ssb-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Criteria: 2-col */
  .ssb-criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process steps: 2-col */
  .ssb-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer: 2-col */
  .ssb-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Large screens (min-width: 1024px) --- */
@media (min-width: 1024px) {
  /* Desktop nav: show */
  .ssb-nav {
    display: flex;
  }

  /* Hamburger: hide */
  .ssb-hamburger {
    display: none;
  }

  /* Casino grid: 4-col on desktop (already handled above) */

  /* Network grid: 3-col */
  .ssb-network-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Blog grid: 3-col */
  .ssb-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Criteria: 3-col */
  .ssb-criteria-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact form: 5-col (3+2) */
  .ssb-contact-grid {
    grid-template-columns: 3fr 2fr;
  }

  .ssb-contact-form__submit {
    width: auto;
  }

  /* Footer: 4-col */
  .ssb-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Responsible: max-w-4xl centered */
  .ssb-responsible > .container {
    max-width: 56rem;
  }
}


/* ==========================================================================
   31. WORDPRESS-SPECIFIC OVERRIDES
   ========================================================================== */

/* Ensure WP admin bar doesn't break sticky header */
body.admin-bar .ssb-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .ssb-header {
    top: 46px;
  }
}

/* WordPress gallery alignment */
.wp-block-gallery {
  margin-bottom: 1.5rem;
}

/* WordPress caption */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  padding-top: 0.5rem;
}

/* Alignments */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

/* Navigation menus from wp_nav_menu (fallback styling) */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.menu-item a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-foreground);
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
}

.menu-item a:hover {
  color: var(--belgian-yellow);
}

.current-menu-item a {
  color: var(--belgian-yellow);
  border-bottom: 2px solid var(--belgian-red);
}


/* ==========================================================================
   32. SCROLL TO TOP BUTTON
   ========================================================================== */

.ssb-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--belgian-black);
  color: var(--belgian-yellow);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--belgian-yellow);
  z-index: 40;
  transition: all 0.3s ease;
}

.ssb-scroll-top.visible {
  display: flex;
}

.ssb-scroll-top:hover {
  background-color: var(--belgian-yellow);
  color: var(--belgian-black);
}

.ssb-scroll-top svg {
  width: 20px;
  height: 20px;
}


/* ==========================================================================
   33. COOKIE NOTICE (optional)
   ========================================================================== */

.ssb-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background-color: var(--soft-black);
  border-top: 2px solid var(--belgian-yellow);
  padding: 1.5rem;
}

.ssb-cookie-notice__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ssb-cookie-notice__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--medium-grey);
  flex: 1;
}

.ssb-cookie-notice__accept {
  background-color: var(--belgian-yellow);
  color: var(--belgian-black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.ssb-cookie-notice__accept:hover {
  opacity: 0.9;
}

.ssb-cookie-notice__decline {
  background-color: transparent;
  color: var(--medium-grey);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--dark-grey);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ssb-cookie-notice__decline:hover {
  border-color: var(--medium-grey);
  color: var(--primary-foreground);
}


/* ==========================================================================
   34. HOW WE REVIEW (Homepage simplified version)
   ========================================================================== */

.ssb-how-review {
  background-color: var(--card);
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.ssb-how-review__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 2.5rem;
}

.ssb-how-review__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 56.25rem;
  margin: 0 auto;
}

.ssb-how-review__item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.ssb-how-review__item p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .ssb-how-review__title {
    font-size: 2.25rem;
  }
}


/* ==========================================================================
   35. PRINT STYLES
   ========================================================================== */

@media print {
  .ssb-header,
  .ssb-mobile-nav,
  .ssb-mobile-overlay,
  .ssb-scroll-top,
  .ssb-cookie-notice,
  .ssb-footer {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}


/* ==========================================================================
   UTILITY CLASSES (Tailwind-compatible for hardcoded page templates)
   ========================================================================== */

/* --- Display --- */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* --- Flex --- */
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* --- Grid columns --- */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

/* --- Gap --- */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* --- Padding --- */
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pt-4 { padding-top: 1rem; }

/* --- Margin --- */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-auto { margin-top: auto; }
.ml-6 { margin-left: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Width --- */
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-32 { width: 8rem; }
.max-w-3xl { max-width: 48rem; }

/* --- Height --- */
.h-3 { height: 0.75rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.min-h-\[280px\] { min-height: 280px; }

/* --- Typography --- */
.font-heading { font-family: var(--font-heading); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-center { text-align: center; }
.underline { text-decoration: underline; }
.list-disc { list-style-type: disc; }

/* --- Colors (text) --- */
.text-black { color: #000; }
.text-white { color: #fff; }
.text-yellow { color: var(--belgian-yellow); }
.text-yellow-600 { color: #CA8A04; }
.text-yellow-700 { color: #A16207; }
.text-yellow-800 { color: #854D0E; }
.text-gray-300 { color: #D1D5DB; }
.text-gray-400 { color: #9CA3AF; }
.text-gray-500 { color: #6B7280; }
.text-gray-600 { color: #4B5563; }

/* --- Colors (bg) --- */
.bg-white { background-color: #fff; }
.bg-card { background-color: var(--card); }
.bg-off-white { background-color: var(--off-white); }
.bg-soft-black { background-color: var(--soft-black); }
.bg-gray-100 { background-color: #F3F4F6; }
.bg-gray-200 { background-color: #E5E7EB; }
.bg-yellow-100 { background-color: #FEF9C3; }
.bg-yellow-500 { background-color: #EAB308; }
.bg-yellow-600 { background-color: #CA8A04; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }

/* --- Border --- */
.border { border: 1px solid var(--border); }
.border-gray-100 { border-color: #F3F4F6; }
.border-gray-300 { border-color: #D1D5DB; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }

/* --- Border Radius --- */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* --- Shadow --- */
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }

/* --- Transitions --- */
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; }

/* --- Overflow --- */
.overflow-hidden { overflow: hidden; }

/* --- Object --- */
.object-cover { object-fit: cover; }

/* --- Resize --- */
.resize-vertical { resize: vertical; }

/* --- Space --- */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* --- Focus --- */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--belgian-yellow); }
.focus\:ring-yellow-400:focus { box-shadow: 0 0 0 2px #FACC15; }
.focus\:border-transparent:focus { border-color: transparent; }

/* --- Hover states --- */
.hover\:bg-yellow-100:hover { background-color: #FEF9C3; }
.hover\:bg-yellow-600:hover { background-color: #CA8A04; }
.hover\:text-yellow-600:hover { color: #CA8A04; }
.hover\:text-yellow-700:hover { color: #A16207; }

/* --- Responsive: md (768px) --- */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

/* --- Responsive: lg (1024px) --- */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
}

/* ==========================================================================
   Single CPT: intro → grid → main_body → faq_html (n8n structure)
   Clean report-style layout with clear section separation
   ========================================================================== */

/* Section separation – generous vertical spacing like reference */
.ssb-section-spacing {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .ssb-section-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.ssb-single-cpt {
  padding-bottom: 4rem;
}

.ssb-single-header {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.ssb-single-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111827;
  margin: 0;
  max-width: 42ch;
}

.ssb-intro {
  background: #fafafa;
}

.ssb-intro__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
  margin: 0;
  max-width: 72ch;
}

.ssb-intro__text p {
  margin-bottom: 1rem;
}

.ssb-intro__text p:first-child { margin-top: 0; }
.ssb-intro__text p:last-child { margin-bottom: 0; }

.container--prose {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.ssb-main-body {
  background: #fff;
}

.ssb-main-body__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #1f2937;
}

/* Paragraphs – clear spacing between blocks */
.ssb-main-body__content p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.ssb-main-body__content p:last-child {
  margin-bottom: 0;
}

/* Headings – clear separation from content */
.ssb-main-body__content h2 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #111827;
  line-height: 1.3;
}

.ssb-main-body__content h2:first-child {
  margin-top: 0;
}

.ssb-main-body__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #111827;
}

.ssb-main-body__content ul,
.ssb-main-body__content ol {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.ssb-main-body__content a {
  color: var(--belgian-red, #c8102e);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ssb-main-body__content a:hover {
  color: #9e0d24;
}

/* Tables – old main-body rules consolidated into unified table styles above */

/* FAQ section */
.ssb-faq-html {
  background: #f8fafc;
  border-radius: 0;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .ssb-faq-html {
    padding: 3rem 0;
  }
}

.ssb-faq-html__title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.ssb-faq-html__content {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}

/* details/summary fallback in FAQ – dark theme to match .faq-container */
.ssb-faq-html__content details {
  margin-bottom: 0;
  border: none;
  border-left: 4px solid var(--belgian-red);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.ssb-faq-html__content details[open] {
  border-left-color: var(--belgian-yellow);
}

.ssb-faq-html__content summary {
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  background: #202020;
  color: #f0f0f0;
  list-style: none;
  user-select: none;
  border-bottom: 1px solid #333;
}

.ssb-faq-html__content summary::-webkit-details-marker {
  display: none;
}

.ssb-faq-html__content details[open] summary {
  border-bottom: 1px solid #333;
}

.ssb-faq-html__content details > *:not(summary) {
  padding: 20px;
  border-bottom: 1px solid #333;
  background: #303030;
  color: #cccccc;
}

.ssb-faq-html__content details p {
  margin: 0 0 0.5rem;
}

.ssb-faq-html__content details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ssb-single-header {
    padding-top: 1.5rem;
    padding-bottom: 0.75rem;
  }
  .ssb-single-title {
    font-size: 1.5rem;
  }
  .ssb-section-spacing {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .ssb-intro__text {
    font-size: 1rem;
  }
  .container--prose {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* table mobile sizing handled by unified table styles below */
}

/* faq_html accordion – dark theme, Belgian flag left border (yellow open / red closed) */
.ssb-faq-html__content {
  background: #000;
  padding: 1.5rem;
  border-radius: 0;
  font-family: var(--font-body, 'DM Sans', sans-serif);
}

.ssb-faq-html__content .faq-container {
  margin-bottom: 0;
  border-radius: 0;
  overflow: visible;
  border: none;
  border-left: 4px solid var(--belgian-red);
  box-shadow: none;
  background: transparent;
}

.ssb-faq-html__content .faq-container.active {
  border-left-color: var(--belgian-yellow);
}

.ssb-faq-html__content .faq-container .quest {
  background: #202020;
  color: #f0f0f0;
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.9375rem;
  line-height: 1.4;
  border-bottom: 1px solid #333;
}

.ssb-faq-html__content .faq-container .quest:hover {
  background: #282828;
  color: #fff;
}

.ssb-faq-html__content .faq-container .quest .faq-num,
.ssb-faq-dynamic .faq-container .quest .faq-num {
  color: var(--belgian-yellow);
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.ssb-faq-html__content .faq-container .quest .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--belgian-yellow);
  background: transparent;
  border-radius: 0;
  font-size: 0;
  line-height: 1;
}

.ssb-faq-html__content .faq-container .quest .icon::after {
  content: '▼';
  font-size: 0.875rem;
  color: var(--belgian-yellow);
}

.ssb-faq-html__content .faq-container.active .quest .icon::after {
  content: '▲';
}

.ssb-faq-html__content .faq-container .answ {
  display: none;
  background: #303030;
  color: #cccccc;
  padding: 20px;
  border-bottom: 1px solid #333;
  line-height: 1.65;
  font-size: 0.9375rem;
  font-weight: 400;
}

.ssb-faq-html__content .faq-container .answ p:first-child {
  margin-top: 0;
}

.ssb-faq-html__content .faq-container .answ p:last-child {
  margin-bottom: 0;
}

.ssb-faq-html__content .faq-container.active .answ {
  display: block;
}

.ssb-faq-html__title {
  color: #111;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .ssb-faq-html__content {
    padding: 1rem;
  }
  .ssb-faq-html__content .faq-container .quest {
    padding: 14px 16px;
    font-size: 0.875rem;
  }
  .ssb-faq-html__content .faq-container .answ {
    padding: 16px;
  }
}


/* ==========================================================================
   CPT BODY SECTIONS – main_body content from n8n
   Sectioned with ssb-block classes for visual structure
   ========================================================================== */

/* ── Base body wrapper ── */
.ssb-cpt-body {
  background: var(--off-white);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .ssb-cpt-body {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

.ssb-cpt-body__content {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #1f2937;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Generic section block ── */
.ssb-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.ssb-block:last-child {
  border-bottom: none;
}

.ssb-block__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.25rem;
  line-height: 1.3;
}

.ssb-block__text {
  margin: 0 0 1.25rem;
}

.ssb-block__text:last-child {
  margin-bottom: 0;
}

/* ── Section: Overview ── */
.ssb-block--overview {
  background: #fafafa;
  padding: 2rem 2rem;
  border-left: 4px solid var(--belgian-yellow);
  margin-bottom: 1.5rem;
  border-bottom: none;
}

.ssb-block--overview .ssb-block__title {
  color: var(--belgian-red);
}

/* ── Section: Licensing ── */
.ssb-block--licensing { background: #fff; padding:25px; }

/* ── Section: Game Portfolio ── */
.ssb-block--games { background: #fafafa; padding:25px; }

/* ── Section: Bonuses ── */
.ssb-block--bonuses { background: #fff; padding:25px;}

/* ── Section: Payment Methods ── */
.ssb-block--payments { background: #fafafa; padding:25px;}

/* ── Section: Customer Support ── */
.ssb-block--support { background: #fff; padding:25px;}

/* ── Section: Responsible Gambling ── */
.ssb-block--responsible { background: #fafafa; padding:25px;}

/* ── Section: Mobile ── */
.ssb-block--mobile { background: #fff; padding:25px;}

/* ── Section: Verdict ── */
.ssb-block--verdict {
  background: var(--belgian-black);
  color: #e5e7eb;
  padding: 2.5rem 2rem;
  margin-top: 1.5rem;
  border-bottom: none;
}

.ssb-block--verdict .ssb-block__title,
.ssb-block--verdict h2,
.ssb-block--verdict h3 {
  color: var(--belgian-yellow) !important;
}

.ssb-block--verdict .ssb-block__text,
.ssb-block--verdict p {
  color: #d1d5db;
}

.ssb-block--verdict a {
  color: var(--belgian-yellow);
}

.ssb-block--verdict a:hover {
  color: #fff;
}

/* ── Section: Pros & Cons ── */
.ssb-block--pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

/* ── ssb-pros-cons-grid wrapper (n8n output) ── */
.ssb-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  grid-column: 1 / -1;
}

@media (max-width: 767px) {
  .ssb-pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

/* H2 title and trailing <p> span full width across both columns */
.ssb-block--pros-cons > h2,
.ssb-block--pros-cons > p,
.ssb-block--pros-cons > hr {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
}

/* Summary paragraph at bottom */
.ssb-block--pros-cons > p {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 767px) {
  .ssb-block--pros-cons {
    grid-template-columns: 1fr;
  }
  .ssb-block--pros-cons > h2,
  .ssb-block--pros-cons > p {
    grid-column: 1;
  }
}

.ssb-block--pros-cons .ssb-pros,
.ssb-block--pros-cons .ssb-cons {
  padding: 1.75rem 2rem;
  border-radius: 12px;
}

.ssb-block--pros-cons .ssb-pros {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-left: 5px solid #22c55e;
}

.ssb-block--pros-cons .ssb-cons {
  background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
  border: 1px solid #fecaca;
  border-left: 5px solid var(--belgian-red);
}

.ssb-block--pros-cons h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}

.ssb-block--pros-cons .ssb-pros h3 { color: #15803d; }
.ssb-block--pros-cons .ssb-cons h3 { color: #b91c1c; }

.ssb-block--pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ssb-block--pros-cons ul li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ssb-block--pros-cons ul li:last-child {
  border-bottom: none;
}

.ssb-block--pros-cons .ssb-pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #22c55e;
  font-weight: 800;
  font-size: 1.0625rem;
}

.ssb-block--pros-cons .ssb-cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--belgian-red);
  font-weight: 800;
  font-size: 1.0625rem;
  font-weight: 700;
}

/* ── Section: Info Table ── */
.ssb-block--info-table {
  background: #fff;
  padding: 25px;
}

.ssb-block--info-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.ssb-block--info-table table th,
.ssb-block--info-table table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.ssb-block--info-table table th {
  background-color: #1a1a2e;
  color: #FDDA24;
  font-weight: 700;
  border-bottom: 2px solid #FDDA24;
}

.ssb-block--info-table table tbody tr:hover {
  background-color: #f9fafb;
}

.ssb-block--info-table table tr:nth-child(even) td {
  background-color: #fafafa;
}

/* ── Section: Highlight ── */
.ssb-block--highlight {
  background: var(--yellow-tint);
  border-left: 4px solid var(--belgian-yellow);
  padding: 2rem;
  margin: 1.5rem 0;
  border-bottom: none;
}

.ssb-block--highlight .ssb-block__title {
  color: #92400e;
  font-size: 1.25rem;
}

/* ── Generic typography inside body ── */
.ssb-cpt-body__content p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.ssb-cpt-body__content p:last-child {
  margin-bottom: 0;
}

.ssb-cpt-body__content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #111827;
  line-height: 1.3;
}

.ssb-cpt-body__content h2:first-child {
  margin-top: 0;
}

.ssb-cpt-body__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #111827;
}

.ssb-cpt-body__content ul,
.ssb-cpt-body__content ol {
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.ssb-cpt-body__content li {
  margin-bottom: 0.375rem;
}

.ssb-cpt-body__content a {
  color: var(--belgian-red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ssb-cpt-body__content a:hover {
  color: #9e0d24;
}

/* cpt-body table styles consolidated into unified table rules above */


/* ==========================================================================
   80px spacer between main_body and FAQ
   ========================================================================== */

.ssb-body-faq-spacer {
  height: 80px;
  background: var(--off-white);
}


/* ==========================================================================
   CPT FAQ – n8n outputs faq-container > quest/answ (inside .ssb-faq-dynamic)
   Dark accordion matching homepage ssb-faq style exactly.
   ========================================================================== */

.ssb-faq-dynamic {
  background: #000;
  padding: 1.5rem;
  border-radius: 0;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  counter-reset: faq-counter;
}

/* Each faq-container = one Q/A pair */
.ssb-faq-dynamic .faq-container {
  margin-bottom: 0;
  border-radius: 0;
  overflow: visible;
  border: none;
  border-left: 4px solid var(--belgian-red);
  box-shadow: none;
  background: transparent;
  counter-increment: faq-counter;
}

.ssb-faq-dynamic .faq-container.active {
  border-left-color: var(--belgian-yellow);
}

/* Question row */
.ssb-faq-dynamic .faq-container .quest {
  background: #202020;
  color: #f0f0f0;
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 0.9375rem;
  line-height: 1.4;
  border-bottom: 1px solid #333;
  text-align: left;
}

.ssb-faq-dynamic .faq-container .quest:hover {
  background: #282828;
  color: #fff;
}

/* Auto-number before question text (only when no .faq-num span exists) */
.ssb-faq-dynamic .faq-container .quest::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: var(--belgian-yellow);
  flex-shrink: 0;
  margin-right: 0.5rem;
}

/* Hide CSS counter when n8n already provides .faq-num span (JS adds .ssb-quest--has-num) */
.ssb-faq-dynamic .faq-container .quest.ssb-quest--has-num::before {
  display: none;
}

/* Ensure .faq-num is always yellow in ALL FAQ contexts */
.faq-num {
  color: var(--belgian-yellow) !important;
  flex-shrink: 0;
  font-family: var(--font-accent);
}

/* +/- icon – pushed to far right with margin-left:auto */
.ssb-faq-dynamic .faq-container .quest .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--belgian-yellow);
  background: transparent;
  border-radius: 0;
  font-size: 0;
  line-height: 1;
  margin-left: auto;
}

.ssb-faq-dynamic .faq-container .quest .icon::after {
  content: '▼';
  font-size: 0.875rem;
  color: var(--belgian-yellow);
  transition: transform 0.3s ease;
  display: inline-block;
}

.ssb-faq-dynamic .faq-container.active .quest .icon::after {
  content: '▲';
}

/* Answer – hidden by default */
.ssb-faq-dynamic .faq-container .answ {
  display: none;
  background: #303030;
  color: #cccccc;
  padding: 20px;
  border-bottom: 1px solid #333;
  line-height: 1.65;
  font-size: 0.9375rem;
  font-weight: 400;
}

.ssb-faq-dynamic .faq-container .answ p:first-child { margin-top: 0; }
.ssb-faq-dynamic .faq-container .answ p:last-child { margin-bottom: 0; }

.ssb-faq-dynamic .faq-container.active .answ {
  display: block;
}


/* ==========================================================================
   Author Box – Extra spacing for CPT pages
   ========================================================================== */

.ssb-single-cpt .ssb-author-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 0;
}


/* ==========================================================================
   Mobile overrides for CPT sections
   ========================================================================== */

@media (max-width: 767px) {
  .ssb-cpt-body {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .ssb-block {
    padding: 1.5rem 0;
  }
  .ssb-block--overview,
  .ssb-block--verdict,
  .ssb-block--highlight {
    padding: 1.5rem 1rem;
  }
  .ssb-block__title {
    font-size: 1.25rem;
  }
  .ssb-block--pros-cons .ssb-pros,
  .ssb-block--pros-cons .ssb-cons {
    padding: 1rem;
  }
  .ssb-cpt-body__content table {
    font-size: 0.8125rem;
    margin: 1.5rem 0;
  }
  .ssb-cpt-body__content table th,
  .ssb-cpt-body__content table td {
    padding: 10px 12px;
  }
  .ssb-body-faq-spacer {
    height: 48px;
  }
  .ssb-faq-dynamic {
    padding: 1rem;
  }
  .ssb-faq-dynamic .faq-container .quest {
    padding: 14px 16px;
    font-size: 0.875rem;
  }
  .ssb-faq-dynamic .faq-container .answ {
    padding: 16px;
    font-size: 0.875rem;
  }
  .ssb-single-cpt .ssb-author-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* ── Extra small (< 375px) ── */
@media (max-width: 374px) {
  .ssb-faq-dynamic {
    padding: 0.75rem;
  }
  .ssb-faq-dynamic .faq-container .quest {
    padding: 12px 14px;
    font-size: 0.8125rem;
    gap: 8px;
  }
  .ssb-faq-dynamic .faq-container .answ {
    padding: 14px;
    font-size: 0.8125rem;
  }
  .ssb-block__title {
    font-size: 1.125rem;
  }
  .ssb-block--overview,
  .ssb-block--verdict,
  .ssb-block--highlight {
    padding: 1.25rem 0.75rem;
  }
  .ssb-cpt-body__content table th,
  .ssb-cpt-body__content table td {
    padding: 8px 10px;
    font-size: 0.75rem;
  }
}


/* ==========================================================================
   CPT HERO – Responsive rules for ssb-hero--cpt
   Ensures flag stripe, min-height, and padding scale properly
   ========================================================================== */

/* Mobile: compact hero, no flag stripe (inherited display:none is correct) */
.ssb-hero--cpt {
  min-height: 280px;
  display: flex;
  align-items: center;
}

.ssb-hero--cpt .ssb-hero__content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.ssb-hero--cpt .ssb-hero__tagline {
  font-size: 0.6875rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.ssb-hero--cpt .ssb-hero__text {
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.ssb-hero--cpt .ssb-hero__cta {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Tablet and up */
@media (min-width: 768px) {
  .ssb-hero--cpt {
    min-height: 380px;
  }
  .ssb-hero--cpt .ssb-hero__content {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
  .ssb-hero--cpt .ssb-hero__flag-stripe {
    display: flex;
  }
  .ssb-hero--cpt .ssb-hero__tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
  }
  .ssb-hero--cpt .ssb-hero__text {
    font-size: 1.125rem;
    max-width: 700px;
  }
}

/* Large desktop */
@media (min-width: 1024px) {
  .ssb-hero--cpt {
    min-height: 420px;
  }
  .ssb-hero--cpt .ssb-hero__content {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}


/* ==========================================================================
   TABLE OVERFLOW – Ensure horizontal scroll on mobile for all ssb-block tables
   ========================================================================== */

/* ssb-block: no overflow-x here — table scroll handled by .ssb-table-scroll-wrap */

.ssb-block table {
  width: 100%;
  min-width: 420px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  overflow: hidden;
}

.ssb-block table th,
.ssb-block table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  vertical-align: top;
  word-break: normal;
}

.ssb-block table th:last-child,
.ssb-block table td:last-child {
  border-right: none;
}

.ssb-block table tr:last-child td {
  border-bottom: none;
}

.ssb-block table th {
  background-color: #1a1a2e;
  color: #FDDA24;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-weight: 700;
  border-bottom: 2px solid #FDDA24;
  border-right-color: rgba(255,255,255,0.12);
  white-space: nowrap;
}

.ssb-block table th:last-child {
  border-right: none;
}

/* Yellow for all child elements in header */
.ssb-block table th * {
  color: #FDDA24 !important;
}

.ssb-block table td:first-child {
  font-weight: 600;
  color: #1a1a2e;
  background: #f8f7f4;
}

.ssb-block table tbody tr:nth-child(even) {
  background: #fafaf8;
}

.ssb-block table tbody tr:nth-child(even) td:first-child {
  background: #f0efe9;
}

.ssb-block table tbody tr:hover {
  background: #f0eddf;
}

.ssb-block table tbody tr:hover td:first-child {
  background: #e8e5d8;
}

/* Scroll hint shadow for overflowing tables */
.ssb-block--info-table,
.ssb-block--payments {
  position: relative;
}


/* ==========================================================================
   FAQ TITLE – Mobile size reduction
   ========================================================================== */

.ssb-faq--cpt .ssb-faq__title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .ssb-faq--cpt .ssb-faq__title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 374px) {
  .ssb-faq--cpt .ssb-faq__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}


/* ==========================================================================
   MEDIUM TABLET BREAKPOINT (481px – 767px)
   Fill the gap between existing mobile (≤480px) and desktop (≥768px) rules
   ========================================================================== */

@media (min-width: 481px) and (max-width: 767px) {
  /* Author box: medium spacing */
  .ssb-single-cpt .ssb-author-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  /* Body sections: moderate padding */
  .ssb-cpt-body {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .ssb-block {
    padding: 2rem 0;
  }

  .ssb-block--overview,
  .ssb-block--verdict,
  .ssb-block--highlight {
    padding: 1.75rem 1.25rem;
  }

  /* Tables: medium cell padding */
  .ssb-cpt-body__content table th,
  .ssb-cpt-body__content table td,
  .ssb-block table th,
  .ssb-block table td {
    padding: 12px 14px;
    font-size: 0.875rem;
  }

  /* FAQ: medium sizing */
  .ssb-faq-dynamic {
    padding: 1.25rem;
  }

  .ssb-faq-dynamic .faq-container .quest {
    padding: 15px 18px;
    font-size: 0.875rem;
  }

  .ssb-faq-dynamic .faq-container .answ {
    padding: 18px;
    font-size: 0.875rem;
  }

  /* Body spacer */
  .ssb-body-faq-spacer {
    height: 60px;
  }
}


/* ==========================================================================
   EXTRA SMALL DEVICE FIXES (≤ 374px) – Additional coverage
   ========================================================================== */

@media (max-width: 374px) {
  /* Hero compact on very small screens */
  .ssb-hero--cpt {
    min-height: 240px;
  }
  .ssb-hero--cpt .ssb-hero__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .ssb-hero--cpt .ssb-hero__title {
    font-size: 1.5rem;
  }
  .ssb-hero--cpt .ssb-hero__text {
    font-size: 0.875rem;
  }
  .ssb-hero--cpt .ssb-hero__cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }

  /* Prose container extra small padding */
  .container--prose {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Author box stacked layout */
  .ssb-single-cpt .ssb-author-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  /* Pros/cons: tighter padding */
  .ssb-block--pros-cons .ssb-pros,
  .ssb-block--pros-cons .ssb-cons {
    padding: 0.875rem;
  }

  .ssb-block--pros-cons h3 {
    font-size: 1rem;
  }

  .ssb-block--pros-cons ul li {
    font-size: 0.8125rem;
    padding-left: 1.25rem;
  }

  /* Table minimum width reduced for tiny screens */
  .ssb-block table,
  .ssb-cpt-body__content table {
    min-width: 300px;
  }
}


/* ==========================================================================
   LANDSCAPE PHONE fix (short height, wide screen)
   ========================================================================== */

@media (max-height: 500px) and (orientation: landscape) {
  .ssb-hero--cpt {
    min-height: 220px;
  }
  .ssb-hero--cpt .ssb-hero__content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}


/* ==========================================================================
   PLAIN HTML MAIN_BODY – Beautiful styling for n8n content WITHOUT classes
   When n8n sends plain <h2>, <p>, <table>, <ul> without ssb-block classes,
   these rules auto-style everything inside .ssb-cpt-body__content
   ========================================================================== */

/* ── H2 section dividers – visual separation between content blocks ── */
.ssb-cpt-body__content > h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--belgian-black);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
  border-top: 3px solid var(--belgian-yellow);
  line-height: 1.25;
  position: relative;
}

.ssb-cpt-body__content > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Yellow accent line under h2 */
.ssb-cpt-body__content > h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--belgian-red);
  margin-top: 0.75rem;
}

/* ── H3 sub-headings ── */
.ssb-cpt-body__content > h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  padding-left: 1rem;
  border-left: 4px solid var(--belgian-red);
  line-height: 1.35;
}

/* ── Paragraphs ── */
.ssb-cpt-body__content > p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #374151;
}

.ssb-cpt-body__content > p:last-child {
  margin-bottom: 0;
}

/* ── Unordered & ordered lists ── */
.ssb-cpt-body__content > ul,
.ssb-cpt-body__content > ol {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.ssb-cpt-body__content > ul > li,
.ssb-cpt-body__content > ol > li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  line-height: 1.75;
  color: #374151;
  font-size: 1rem;
}

.ssb-cpt-body__content > ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 8px;
  height: 8px;
  background: var(--belgian-red);
  border-radius: 0;
}

.ssb-cpt-body__content > ol {
  counter-reset: body-list;
}

.ssb-cpt-body__content > ol > li {
  counter-increment: body-list;
}

.ssb-cpt-body__content > ol > li::before {
  content: counter(body-list, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  color: var(--belgian-yellow);
  font-weight: 700;
}

/* ── Tables (plain, no class) – dark header, zebra, hover ── */
.ssb-cpt-body__content table {
  width: 100%;
  min-width: 380px;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.ssb-cpt-body__content table th {
  background-color: var(--belgian-black);
  color: var(--belgian-yellow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 3px solid var(--belgian-red);
  vertical-align: middle;
}

.ssb-cpt-body__content table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
  color: #1f2937;
}

.ssb-cpt-body__content table tbody tr:nth-child(even) td {
  background-color: #f8f9fa;
}

.ssb-cpt-body__content table tbody tr:hover td {
  background-color: #fef9e7;
}

/* first column bold in info-style tables */
.ssb-cpt-body__content table td:first-child {
  font-weight: 600;
  color: #111827;
}

/* ── Links ── */
.ssb-cpt-body__content a {
  color: var(--belgian-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.ssb-cpt-body__content a:hover {
  color: #9e0d24;
  text-decoration-thickness: 2px;
}

/* table scroll handled by .ssb-table-scroll-wrap (JS wrapper) */


/* ==========================================================================
   FAQ – faq-item/h3 FORMAT inside .ssb-faq-dynamic
   n8n sends: <div class="faq-container"><div class="faq-item"><h3>Q</h3>answer</div></div>
   This is the ACTUAL format currently on the live site.
   ========================================================================== */

/* faq-container in faq-item mode */
.ssb-faq-dynamic .faq-container .faq-item {
  /* each faq-item is a Q/A pair */
}

.ssb-faq-dynamic .faq-container .faq-item h3 {
  background: #202020;
  color: #f0f0f0;
  padding: 16px 50px 16px 55px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  cursor: pointer;
  display: block;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid #333;
  margin: 0;
  position: relative;
}

/* Auto-number before question */
.ssb-faq-dynamic .faq-container {
  counter-increment: faq-counter;
}

.ssb-faq-dynamic .faq-container .faq-item h3::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: var(--belgian-yellow);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Chevron after – absolute right */
.ssb-faq-dynamic .faq-container .faq-item h3::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--belgian-yellow);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.ssb-faq-dynamic .faq-container.active .faq-item h3::after {
  content: '▲';
}

.ssb-faq-dynamic .faq-container .faq-item h3:hover {
  background: #282828;
  color: #fff;
}

/* Answer – hidden by default (everything after h3 inside faq-item) */
.ssb-faq-dynamic .faq-container .faq-item > *:not(h3) {
  display: none;
  background: #303030;
  color: #ccc;
  padding: 20px;
  border-bottom: 1px solid #333;
  line-height: 1.65;
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0;
}

.ssb-faq-dynamic .faq-container.active .faq-item > *:not(h3) {
  display: block;
}

/* Also handle case where answer text is directly in faq-item (not wrapped in <p>) */
.ssb-faq-dynamic .faq-container .faq-item {
  background: #303030;
  color: #ccc;
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* But the h3 always shows */
.ssb-faq-dynamic .faq-container .faq-item h3 {
  display: block;
}

/* Hide the raw text node after h3 when not active —
   use overflow + max-height for text nodes that aren't wrapped in elements */
.ssb-faq-dynamic .faq-container:not(.active) .faq-item {
  overflow: hidden;
  max-height: none; /* will be controlled more precisely */
}


/* ==========================================================================
   FAQ – Also handle COMPLETELY RAW format (h3 + p inside faq-container, no faq-item)
   In case faq_html puts Q/A directly in .ssb-faq-dynamic without faq-container
   ========================================================================== */

/* When FAQ items are just h3 + text directly in ssb-faq-dynamic (no wrappers at all) */
.ssb-faq-dynamic > h3 {
  background: #202020;
  color: #f0f0f0;
  padding: 16px 20px 16px 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  cursor: pointer;
  border-bottom: 1px solid #333;
  border-left: 4px solid var(--belgian-red);
  margin: 0;
  position: relative;
  counter-increment: faq-raw;
}

.ssb-faq-dynamic > h3::before {
  content: counter(faq-raw, decimal-leading-zero);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: var(--belgian-yellow);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ssb-faq-dynamic > h3::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--belgian-yellow);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ssb-faq-dynamic > h3.active::after {
  content: '▲';
}

.ssb-faq-dynamic > h3.active {
  border-left-color: var(--belgian-yellow);
}

.ssb-faq-dynamic > h3 + p,
.ssb-faq-dynamic > h3 + div {
  display: none;
  background: #303030;
  color: #ccc;
  padding: 20px;
  border-bottom: 1px solid #333;
  border-left: 4px solid var(--belgian-yellow);
  line-height: 1.65;
  font-size: 0.9375rem;
  margin: 0;
}

.ssb-faq-dynamic > h3.active + p,
.ssb-faq-dynamic > h3.active + div {
  display: block;
}


/* ==========================================================================
   FAQ inside main_body (faq-container at end of ssb-cpt-body__content)
   When n8n puts FAQ in main_body instead of separate faq_html field
   ========================================================================== */

.ssb-cpt-body__content > .faq-container {
  border-left: 4px solid var(--belgian-red);
  margin-bottom: 0;
  counter-increment: body-faq;
}

.ssb-cpt-body__content > .faq-container.active {
  border-left-color: var(--belgian-yellow);
}

.ssb-cpt-body__content > .faq-container .faq-item h3 {
  background: #202020;
  color: #f0f0f0;
  padding: 16px 50px 16px 55px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  display: block;
  text-align: left;
  border-bottom: 1px solid #333;
  border-left: none;
  margin: 0;
  position: relative;
  line-height: 1.4;
}

.ssb-cpt-body__content > .faq-container .faq-item h3::before {
  content: counter(body-faq, decimal-leading-zero);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: var(--belgian-yellow);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ssb-cpt-body__content > .faq-container .faq-item h3::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--belgian-yellow);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ssb-cpt-body__content > .faq-container.active .faq-item h3::after {
  content: '▲';
}

.ssb-cpt-body__content > .faq-container .faq-item > *:not(h3) {
  display: none;
  background: #303030;
  color: #ccc;
  padding: 20px;
  border-bottom: 1px solid #333;
  line-height: 1.65;
  font-size: 0.9375rem;
  margin: 0;
}

.ssb-cpt-body__content > .faq-container.active .faq-item > *:not(h3) {
  display: block;
}

.ssb-cpt-body__content > .faq-container .faq-item {
  background: #303030;
  color: #ccc;
  font-size: 0.9375rem;
  line-height: 1.65;
  overflow: hidden;
}

.ssb-cpt-body__content > .faq-container:not(.active) .faq-item {
  background: transparent;
}

.ssb-cpt-body__content > .faq-container .faq-item h3:hover {
  background: #282828;
  color: #fff;
}


/* ==========================================================================
   RESPONSIVE – Plain HTML body + faq-item format
   ========================================================================== */

@media (max-width: 767px) {
  .ssb-cpt-body__content > h2 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .ssb-cpt-body__content > h3 {
    font-size: 1.125rem;
    margin-top: 2rem;
  }

  .ssb-cpt-body__content > p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .ssb-cpt-body__content table {
    min-width: 320px;
  }

  .ssb-cpt-body__content table th,
  .ssb-cpt-body__content table td {
    padding: 10px 12px;
    font-size: 0.8125rem;
  }

  .ssb-faq-dynamic .faq-container .faq-item h3,
  .ssb-cpt-body__content > .faq-container .faq-item h3 {
    padding: 14px 44px 14px 44px;
    font-size: 0.875rem;
    display: block;
    text-align: left;
  }

  .ssb-faq-dynamic .faq-container .faq-item h3::before,
  .ssb-cpt-body__content > .faq-container .faq-item h3::before {
    left: 16px;
  }

  .ssb-faq-dynamic .faq-container .faq-item h3::after,
  .ssb-cpt-body__content > .faq-container .faq-item h3::after {
    right: 16px;
  }

  .ssb-faq-dynamic .faq-container .faq-item > *:not(h3),
  .ssb-cpt-body__content > .faq-container .faq-item > *:not(h3) {
    padding: 16px;
    font-size: 0.875rem;
  }
}

@media (max-width: 374px) {
  .ssb-cpt-body__content > h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .ssb-cpt-body__content > h3 {
    font-size: 1.0625rem;
  }

  .ssb-cpt-body__content > p {
    font-size: 0.9375rem;
  }

  .ssb-cpt-body__content table {
    min-width: 280px;
  }

  .ssb-cpt-body__content table th,
  .ssb-cpt-body__content table td {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .ssb-faq-dynamic .faq-container .faq-item h3,
  .ssb-cpt-body__content > .faq-container .faq-item h3 {
    padding: 12px 40px 12px 40px;
    font-size: 0.8125rem;
    display: block;
    text-align: left;
  }

  .ssb-faq-dynamic .faq-container .faq-item h3::after,
  .ssb-cpt-body__content > .faq-container .faq-item h3::after {
    right: 14px;
  }

  .ssb-faq-dynamic .faq-container .faq-item > *:not(h3),
  .ssb-cpt-body__content > .faq-container .faq-item > *:not(h3) {
    padding: 14px;
    font-size: 0.8125rem;
  }
}


/* ==========================================================================
   CONTAINER & SPACING FIX – Content matches nav width (1280px container)
   Ensures all CPT content sits inside proper container with breathing room
   ========================================================================== */

/* ── Main body container uses same width as nav ── */
.ssb-single-cpt .ssb-cpt-body .container {
  max-width: 1100px;
  padding-left: 25px;
  padding-right: 25px;
}

/* ── FAQ section container matches nav width ── */
.ssb-single-cpt .ssb-faq--cpt > .container {
  max-width: 1100px;
  padding-left: 25px;
  padding-right: 25px;
}

/* ── Ensure body content doesn't touch edges ── */
.ssb-cpt-body__content {
  padding-left: 0;
  padding-right: 0;
}

/* ── Nice card-style sections inside body ── */
.ssb-cpt-body__content > h2 {
  padding-left: 0;
  padding-right: 0;
}


/* ==========================================================================
   FAQ TITLE & QUESTIONS – LEFT ALIGNMENT
   ========================================================================== */

/* FAQ title: left-aligned */
.ssb-faq--cpt .ssb-faq__title {
  text-align: left;
}

/* FAQ questions in all formats: left-aligned text, block display */
.ssb-faq-dynamic .faq-container .faq-item h3 {
  display: block;
  text-align: left;
  padding: 16px 50px 16px 55px;
}

/* FAQ quest/answ format – left align */
.ssb-faq-dynamic .faq-container .quest {
  text-align: left;
}

/* FAQ title helper classes */
.ssb-faq__title .text-yellow { color: var(--belgian-yellow); }
.ssb-faq__title .text-white  { color: var(--primary-foreground); }

/* FAQ wrapper: add left red accent border to each faq-container */
.ssb-faq-dynamic .faq-container {
  border-left: 4px solid var(--belgian-red);
  transition: border-color 0.3s ease;
  margin-bottom: 0;
}

.ssb-faq-dynamic .faq-container.active {
  border-left-color: var(--belgian-yellow);
}


/* ==========================================================================
   PROS / CONS – Beautiful modern layout for plain HTML from n8n
   n8n sends: <div class="ssb-pros"><h3>Strengths</h3><ul>...</ul></div>
              <div class="ssb-cons"><h3>Concerns</h3><ul>...</ul></div>
   Sometimes wrapped in .ssb-block--pros-cons, sometimes NOT.
   These rules style .ssb-pros / .ssb-cons ANYWHERE inside body content.
   ========================================================================== */

/* Parent wrapper when both pros & cons are side by side */
.ssb-cpt-body__content .ssb-pros,
.ssb-cpt-body__content .ssb-cons {
  padding: 1.75rem 2rem;
  border-radius: 12px;
  margin-bottom: 0;
}

/* Grid layout: if they are siblings inside a wrapper div */
.ssb-cpt-body__content > div:has(> .ssb-pros):has(> .ssb-cons) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Pros card */
.ssb-cpt-body__content .ssb-pros {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-left: 5px solid #22c55e;
}

/* Cons card */
.ssb-cpt-body__content .ssb-cons {
  background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
  border: 1px solid #fecaca;
  border-left: 5px solid var(--belgian-red);
}

/* Headings inside pros/cons */
.ssb-cpt-body__content .ssb-pros > h3,
.ssb-cpt-body__content .ssb-cons > h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding: 0;
  padding-bottom: 0.75rem;
  border-left: none;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}

.ssb-cpt-body__content .ssb-pros > h3 {
  color: #15803d;
}

.ssb-cpt-body__content .ssb-cons > h3 {
  color: #b91c1c;
}

/* Lists inside pros/cons */
.ssb-cpt-body__content .ssb-pros ul,
.ssb-cpt-body__content .ssb-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ssb-cpt-body__content .ssb-pros ul li,
.ssb-cpt-body__content .ssb-cons ul li {
  position: relative;
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ssb-cpt-body__content .ssb-pros ul li:last-child,
.ssb-cpt-body__content .ssb-cons ul li:last-child {
  border-bottom: none;
}

/* Green checkmark for pros */
.ssb-cpt-body__content .ssb-pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #22c55e;
  font-weight: 800;
  font-size: 1.0625rem;
}

/* Red X for cons */
.ssb-cpt-body__content .ssb-cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--belgian-red);
  font-weight: 800;
  font-size: 1.0625rem;
}

/* ── Pros/cons responsive ── */
@media (max-width: 767px) {
  .ssb-cpt-body__content > div:has(> .ssb-pros):has(> .ssb-cons) {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ssb-cpt-body__content .ssb-pros,
  .ssb-cpt-body__content .ssb-cons {
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
  }

  /* Also handle .ssb-block--pros-cons on mobile */
  .ssb-block--pros-cons {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   VISUAL POLISH – Modern, clean look
   ========================================================================== */

/* ── Body sections: subtle card effect with rounded sections ── */
.ssb-cpt-body__content > h2 {
  background: #fff;
  padding: 1.75rem 25px 1.25rem;
  margin-left: 0;
  margin-right: 0;
  border-top: 3px solid var(--belgian-yellow);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.ssb-cpt-body__content > h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 1.5rem;
}

/* Paragraphs and content after h2 get a white card background */
.ssb-cpt-body__content > p,
.ssb-cpt-body__content > ul,
.ssb-cpt-body__content > ol {
  background: #fff;
  padding: 0 25px;
  margin-left: 0;
  margin-right: 0;
}

/* Last element before next h2 gets rounded bottom */
.ssb-cpt-body__content > p + h2,
.ssb-cpt-body__content > ul + h2,
.ssb-cpt-body__content > ol + h2,
.ssb-cpt-body__content > table + h2,
.ssb-cpt-body__content > div + h2 {
  margin-top: 2.5rem;
}

/* Tables: card-style with rounded corners */
.ssb-cpt-body__content table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: none;
}

.ssb-cpt-body__content table th:first-child {
  border-top-left-radius: 0;
}

.ssb-cpt-body__content table th:last-child {
  border-top-right-radius: 0;
}

/* ── Verdict section inside body (dark block) ── */
.ssb-cpt-body__content > h2:last-of-type {
  background: var(--belgian-black);
  color: var(--belgian-yellow);
  border-top: 3px solid var(--belgian-yellow);
  border-radius: 12px 12px 0 0;
  margin-left: 0;
  margin-right: 0;
  padding: 1.75rem 25px 1.25rem;
}

.ssb-cpt-body__content > h2:last-of-type::after {
  background: var(--belgian-red);
}

/* Last paragraphs (after last h2 = verdict) get dark treatment */
.ssb-cpt-body__content > h2:last-of-type ~ p {
  background: #1a1a1a;
  color: #d1d5db;
  padding: 0 25px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.ssb-cpt-body__content > h2:last-of-type ~ p:last-child {
  border-radius: 0 0 12px 12px;
  padding-bottom: 2rem;
  margin-bottom: 0;
}

/* ── FAQ section polish ── */
.ssb-faq--cpt {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.ssb-faq-dynamic {
  counter-reset: faq-counter;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* First faq-container gets rounded top */
.ssb-faq-dynamic .faq-container:first-child .faq-item h3,
.ssb-faq-dynamic .faq-container:first-child .quest {
  border-radius: 12px 12px 0 0;
}

/* Last faq-container gets rounded bottom when closed */
.ssb-faq-dynamic .faq-container:last-child:not(.active) .faq-item h3,
.ssb-faq-dynamic .faq-container:last-child:not(.active) .quest {
  border-radius: 0 0 12px 12px;
  border-bottom: none;
}

/* ── Author section spacing consistency ── */
.ssb-single-cpt .ssb-author-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.ssb-single-cpt .ssb-author-section .container {
  max-width: 1100px;
}


/* ==========================================================================
   RESPONSIVE CONTAINER & POLISH
   ========================================================================== */

@media (max-width: 767px) {
  /* Container padding on mobile */
  .ssb-single-cpt .ssb-cpt-body .container,
  .ssb-single-cpt .ssb-faq--cpt > .container,
  .container--prose {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Card sections: keep 16px internal padding on mobile */
  .ssb-cpt-body__content > h2,
  .ssb-cpt-body__content > p,
  .ssb-cpt-body__content > ul,
  .ssb-cpt-body__content > ol,
  .ssb-cpt-body__content > h2:last-of-type,
  .ssb-cpt-body__content > h2:last-of-type ~ p {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ssb-cpt-body__content > h2 {
    padding: 1.25rem 16px 0.875rem;
  }

  /* FAQ section mobile */
  .ssb-faq--cpt {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .ssb-faq-dynamic .faq-container .faq-item h3 {
    padding: 14px 44px 14px 44px;
    display: block;
    text-align: left;
  }

  .ssb-faq-dynamic .faq-container .faq-item h3::after {
    right: 16px;
  }

  .ssb-faq-dynamic .faq-container .faq-item h3::before {
    left: 16px;
  }

  /* FAQ title left-align on mobile too */
  .ssb-faq--cpt .ssb-faq__title {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .ssb-single-cpt .ssb-cpt-body .container,
  .ssb-single-cpt .ssb-faq--cpt > .container,
  .container--prose {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ssb-cpt-body__content > h2,
  .ssb-cpt-body__content > p,
  .ssb-cpt-body__content > ul,
  .ssb-cpt-body__content > ol,
  .ssb-cpt-body__content > h2:last-of-type,
  .ssb-cpt-body__content > h2:last-of-type ~ p {
    padding-left: 0;
    padding-right: 0;
  }

  .ssb-cpt-body__content > h2 {
    padding: 1rem 0 0.75rem;
  }
}

@media (max-width: 374px) {
  .ssb-single-cpt .ssb-cpt-body .container,
  .ssb-single-cpt .ssb-faq--cpt > .container,
  .container--prose {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ssb-cpt-body__content > h2,
  .ssb-cpt-body__content > p,
  .ssb-cpt-body__content > ul,
  .ssb-cpt-body__content > ol,
  .ssb-cpt-body__content > h2:last-of-type,
  .ssb-cpt-body__content > h2:last-of-type ~ p {
    padding-left: 0;
    padding-right: 0;
  }
}


/* ==========================================================================
   MOBILE-FIRST RESPONSIVE FIXES — 20px min padding, table scroll, edge safety
   ========================================================================== */

/* ── Global container min-padding: 20px on all mobile ── */
@media (max-width: 767px) {
  .container,
  .container--prose {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Body content sections: full width inside container */
  .ssb-body-section .container,
  .ssb-archive-section .container,
  .ssb-casino-list .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Network grid: tighter on mobile */
  .ssb-network-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .ssb-network-card {
    padding: 1rem;
  }

  .ssb-network-card__header {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .ssb-network-card__icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .ssb-network-card__icon span {
    font-size: 1rem;
  }

  .ssb-network-card__name {
    font-size: 0.875rem;
  }

  .ssb-network-card__tags {
    gap: 0.25rem;
    flex-wrap: wrap;
  }

  .ssb-tag-yellow,
  .ssb-tag-muted {
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
  }

  .ssb-network-card__rating {
    gap: 0.35rem;
    margin-bottom: 0.5rem;
  }

  .ssb-network-card__rating-num {
    font-size: 0.875rem;
  }

  .ssb-network-card__sites {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }

  .ssb-network-card__site-tag,
  .ssb-network-card__sites span {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
  }

  .ssb-network-card__cta {
    font-size: 0.75rem;
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .ssb-network-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .ssb-network-card {
    padding: 0.75rem;
  }

  .ssb-network-card__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-width: 1.5px;
  }

  .ssb-network-card__icon span {
    font-size: 0.85rem;
  }

  .ssb-network-card__name {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .ssb-network-card__rating-num {
    font-size: 0.75rem;
  }

  .ssb-network-card__sites {
    display: none; /* hide site tags on very small screens */
  }
}

/* ── Table scroll wrapper — JS adds .ssb-table-scroll-wrap around tables ── */
.ssb-table-scroll-wrap {
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

.ssb-table-scroll-wrap table {
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
}

/* ── Table mobile adjustments ── */
@media (max-width: 767px) {
  .ssb-cpt-body__content table,
  .ssb-main-body__content table,
  .ssb-body-content table {
    min-width: 560px;
    font-size: 0.8125rem;
  }

  .ssb-cpt-body__content table th,
  .ssb-cpt-body__content table td,
  .ssb-main-body__content table th,
  .ssb-main-body__content table td,
  .ssb-body-content table th,
  .ssb-body-content table td {
    padding: 10px 14px;
  }
}

/* ── Images inside content: prevent overflow ── */
.ssb-cpt-body__content img,
.ssb-main-body__content img,
.ssb-body-content img {
  max-width: 100%;
  height: auto;
}

/* ── Iframes (YouTube, etc): responsive ── */
.ssb-cpt-body__content iframe,
.ssb-main-body__content iframe,
.ssb-body-content iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* ── Pre/code blocks: horizontal scroll ── */
.ssb-cpt-body__content pre,
.ssb-main-body__content pre,
.ssb-body-content pre {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  padding: 1rem;
  background: #1f2937;
  color: #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.ssb-cpt-body__content code,
.ssb-main-body__content code,
.ssb-body-content code {
  font-size: 0.875em;
  background: #f3f4f6;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
}

/* ── Blockquotes ── */
.ssb-cpt-body__content blockquote,
.ssb-main-body__content blockquote,
.ssb-body-content blockquote {
  border-left: 4px solid var(--belgian-red);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: #fef2f2;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #374151;
}

/* ── Prevent ANY horizontal page overflow ── */
html, body {
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

/* ── Long words / URLs: break properly ── */
.ssb-cpt-body__content,
.ssb-main-body__content,
.ssb-body-content,
.ssb-network-card__name,
.ssb-casino-card__name,
.ssb-casino-card__bonus-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* ── Lists inside body: ensure proper indentation on mobile ── */
@media (max-width: 767px) {
  .ssb-cpt-body__content ul,
  .ssb-cpt-body__content ol,
  .ssb-main-body__content ul,
  .ssb-main-body__content ol,
  .ssb-body-content ul,
  .ssb-body-content ol {
    padding-left: 1.25rem;
  }

  .ssb-cpt-body__content li,
  .ssb-main-body__content li,
  .ssb-body-content li {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }
}

/* ── FAQ section on mobile: prevent edge clipping ── */
@media (max-width: 767px) {
  .ssb-faq-dynamic .faq-container .quest {
    padding: 14px 40px 14px 16px;
    font-size: 0.9375rem;
  }

  .ssb-faq-dynamic .faq-container .quest .icon {
    right: 14px;
  }

  .ssb-faq-dynamic .faq-container .answ {
    padding: 0 16px 14px;
    font-size: 0.875rem;
  }
}

/* ── Pros/Cons: stack on mobile ── */
@media (max-width: 767px) {
  .ssb-block--pros-cons {
    grid-template-columns: 1fr !important;
  }
}

/* ── Belgian flag bar: round inside cards ── */
.ssb-network-card .belgian-flag-bar {
  border-radius: 12px 12px 0 0;
  margin: -1.5rem -1.5rem 1rem;
}

@media (max-width: 767px) {
  .ssb-network-card .belgian-flag-bar {
    margin: -1rem -1rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .ssb-network-card .belgian-flag-bar {
    margin: -0.75rem -0.75rem 0.5rem;
  }
}



/* ── Responsible + Verdict block fixes ── */
.ssb-block--responsible {
  background: #f0fdf4 !important;
  border-left: 4px solid #22c55e;
  padding: 2rem 2rem !important;
  margin-bottom: 1.5rem;
}

.ssb-block--responsible h2 {
  color: #15803d;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.ssb-block--responsible p {
  color: #1f2937;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ssb-block--verdict {
  background: #0f0f1a !important;
  border-top: 3px solid var(--belgian-yellow);
  padding: 2.5rem 2rem !important;
  margin-top: 0;
}

.ssb-block--verdict h2 {
  color: var(--belgian-yellow) !important;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.ssb-block--verdict p {
  color: #d1d5db !important;
  line-height: 1.8;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 1rem;
}

.ssb-block--verdict p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ssb-block--verdict strong {
  color: var(--belgian-yellow) !important;
  font-size: 1.125rem;
}

.ssb-block--verdict a {
  color: var(--belgian-yellow) !important;
  text-decoration: underline;
}

/* ── pros-cons-grid missing space fix ── */
div[class*="ssb-pros-cons-grid"],
.ssb-pros-cons-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  div[class*="ssb-pros-cons-grid"],
  .ssb-pros-cons-grid {
    grid-template-columns: 1fr !important;
  }
}




