:root {
  /* Color Palette - Premium & Modern */
  --primary: #33beb3;
  /* Logo Cyan */
  --primary-hover: #2aa197;
  /* Deep Cyan */

  --text-main: #0f172a;
  /* Very Dark Slate */
  --text-muted: #475569;
  /* Medium Soft Slate */
  --text-light: #94a3b8;
  /* Light Slate */

  --bg-body: #f8fafc;
  /* Ultra-light Cool Gray */
  --bg-card: #ffffff;
  /* Pure White */

  --border: #e2e8f0;
  /* Subtle Border */
  --border-light: #f1f5f9;
  /* Even Subtle-r Border */

  --success: #059669;
  /* Rich Green */
  --danger: #e11d48;
  /* Rich Rose */

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  /* Layout */
  --container-max-width: 1240px;

  /* Geometry */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Modern Multi-layered Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 20px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 24px 36px -8px rgba(15, 23, 42, 0.1), 0 12px 16px -8px rgba(15, 23, 42, 0.04);
  --shadow-inner: inset 0 2px 4px 0 rgba(15, 23, 42, 0.02);

  /* Sticky sidebars sit below the glass header */
  --sticky-header-offset: 5.5rem;
}

/* Reset & Base */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.active {
    transition: none !important;
  }

  .hero-card {
    transition: none !important;
  }

  .accordion-icon,
  .accordion-icon-wrap,
  .accordion-content {
    transition: none !important;
  }

  .vertical-card:hover,
  .criteria-card:hover,
  .tier-card:hover,
  .vertical-card:hover .card-icon {
    transform: none;
  }

  .cr-gallery-item:hover,
  .cr-ac-card:hover,
  .gc-link-wrap:hover {
    transform: none;
  }

  .cr-gallery-item:hover .cr-gallery-img,
  .gc-link-wrap:hover .gc-image {
    transform: none;
  }

  .home-intro__pill:hover {
    transform: none;
  }

  .home-intro__card-link:hover i {
    transform: none;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 max(20px, env(safe-area-inset-left, 20px));
  padding-right: max(20px, env(safe-area-inset-right, 20px));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography Mastery */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #020617;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  font-family: var(--font-serif);
  color: var(--text-main);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #020617;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Header: no backdrop-filter here - it creates a containing block and breaks position:fixed full-screen mobile nav */
.header {
  background: rgba(248, 250, 252, 0.97);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #e2e8f0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand logo image in the bar (stacked 888 + REVIEWS artwork) */
.logo {
  line-height: 0;
}

.logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo .site-logo--header {
  display: block;
  height: clamp(50px, 8vw, 44px);
  width: auto;
  max-width: min(112px, 38vw);
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-main);
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}

.icon-btn:hover {
  color: var(--primary);
  background: rgba(29, 78, 216, 0.05);
}

.mobile-menu-btn {
  display: none;
}

/* Lock scroll when mobile drawer is open (iOS + desktop) */
html.mobile-menu-open,
body.mobile-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* Mobile drawer: parts hidden on desktop */
.mobile-nav-panel__top,
.mobile-nav-panel__foot,
.mobile-nav-panel__tagline {
  display: none;
}

/* Beautiful Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-small {
  padding: 12px 24px;
  font-size: 0.75rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(29, 78, 216, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* Polished Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-light {
  background: #e2e8f0;
  color: #334155;
  margin-bottom: 24px;
}

.badge-green {
  background: #dcfce7;
  color: var(--success);
  padding: 4px 10px;
}

.badge-icon {
  width: 14px;
  height: 14px;
}

/* Hero Refinement */
.hero {
  padding: 40px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-body) 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-content {
  flex: 1.1;
  max-width: 640px;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 48px;
  max-width: 95%;
  line-height: 1.7;
}

.hero-content p.hero-lead {
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-card-wrapper {
  flex: 0 0 440px;
  position: relative;
}

.hero-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -10px rgba(51, 190, 179, 0.15), var(--shadow-xl);
  border: 1px solid rgba(51, 190, 179, 0.3);
  transition: box-shadow 0.2s ease-out, border-color 0.2s ease-out;
  position: relative;
  overflow: hidden;
}

.hero-card:hover {
  box-shadow: 0 24px 44px -12px rgba(51, 190, 179, 0.2), var(--shadow-xl);
  border-color: rgba(51, 190, 179, 0.5);
}

/* Minimal hero card: logo + name + offer + CTA (API-driven; BK8 preferred) */
.hero-card--simple {
  padding: 32px 36px;
}

.hero-card__brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.hero-card__brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #020617;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0;
}

.hero-card__brand-name:empty {
  display: none;
}

.hero-card__headline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.hero-card__headline-row .hero-card__headline {
  flex: 1;
  min-width: 0;
}

.hero-card__kicker {
  font-size: 0.65rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.hero-card--no-offer .hero-card__kicker {
  color: #94a3b8;
}

.hero-card--no-offer .hero-card__headline {
  color: #0f172a;
}

.hero-card__headline {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.25;
}

.hero-card__dek {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0;
}

.hero-card__amount {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.hero-card--simple .claim-link {
  margin-bottom: 16px;
}

.hero-card--simple .claim-link--visit {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
  gap: 10px;
}

.hero-card--simple .claim-link--visit i {
  width: 18px;
  height: 18px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

/* Hero featured casino: light tile so dark logos + black wordmark read like the reference */
.card-logo-placeholder {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.hero-card--simple .card-logo-placeholder {
  width: min(160px, 100%);
  height: 72px;
  min-height: 56px;
  align-self: flex-start;
}

.hero-card--simple .hero-card__headline-row .card-logo-placeholder {
  width: 48px;
  height: 48px;
  min-height: 48px;
  flex-shrink: 0;
  align-self: center;
}

.hero-card--simple .card-logo-placeholder.hero-logo--has-image {
  padding: 6px 8px;
}

.hero-card--simple .hero-card__headline-row .card-logo-placeholder.hero-logo--has-image {
  padding: 4px;
}

.hero-card--simple .card-logo-placeholder .hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.hero-card--simple .card-logo-placeholder.hero-logo--text {
  padding: 6px 8px;
  justify-content: flex-start;
}

.hero-card--simple .card-logo-placeholder .hero-logo-text {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #020617;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: left;
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.35rem;
  color: #020617;
  background: #fffbeb;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #fde68a;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.15);
}

.star-icon {
  color: #f59e0b;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.card-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 1.75rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.offer-box {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  border: 2px dashed rgba(51, 190, 179, 0.4);
  padding: 20px;
  text-align: center;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  transition: all 0.3s;
}

.offer-box:hover {
  border-style: solid;
  border-color: var(--primary);
  background: #f0fdfa;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(51, 190, 179, 0.15);
}

.offer-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.offer-value {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--primary), #0284c7);
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(2, 132, 199, 0.1);
}

.claim-link {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  padding: 18px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(51, 190, 179, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
}

.claim-link i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 20px;
  height: 20px;
  color: white;
}

.claim-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(51, 190, 179, 0.5);
  color: white;
  border: none;
}

.claim-link:hover i {
  transform: translateX(6px);
}

.terms {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  color: #94a3b8;
  text-align: center;
  font-weight: 500;
}

/* Verticals - The Micro-interactive Grid */
.verticals {
  padding: 120px 0;
  background: #ffffff;
}

.section-header {
  margin-bottom: 64px;
  max-width: 640px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-header.center {
  margin: 0 auto 64px;
  text-align: center;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vertical-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease-out,
    box-shadow 0.25s ease-out,
    border-color 0.25s ease-out;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.vertical-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.card-icon {
  margin-bottom: 28px;
  color: var(--primary);
  width: 48px;
  height: 48px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition:
    background 0.25s ease-out,
    color 0.25s ease-out,
    transform 0.25s ease-out;
}

.vertical-card:hover .card-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.vertical-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.vertical-card.large {
  grid-row: span 2;
}

.vertical-card--featured.vertical-card.large>p:first-of-type {
  margin-bottom: 6px;
}

.vertical-card__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin: 18px 0 10px !important;
}

.vertical-card__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vertical-card__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.vertical-card__checklist li i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary);
  stroke-width: 3px;
}

.vertical-card__footnote {
  font-size: 0.78rem !important;
  font-style: italic;
  color: #94a3b8 !important;
  margin: 14px 0 0 !important;
  line-height: 1.5 !important;
}

.spacer {
  flex: 1;
}

.vertical-card.large .view-link {
  margin-top: 20px;
}

.view-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 36px;
}

.view-link i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vertical-card:hover .view-link i {
  transform: translate(3px, -3px);
}

/* Homepage: editorial & criteria (matches verticals / tier tone) */
.home-intro {
  position: relative;
  padding: 100px 0 118px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 120% 85% at 0% 100%, rgba(51, 190, 179, 0.056) 0%, transparent 55%),
    linear-gradient(165deg, #fdfdfd 0%, #f8fafc 40%, #f0f4f8 100%);
  overflow: hidden;
}

.home-intro::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: min(56vw, 520px);
  height: min(56vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(51, 190, 179, 0.1) 0%, transparent 62%);
  pointer-events: none;
}

.home-intro::after {
  content: "";
  position: absolute;
  bottom: -38%;
  left: -18%;
  width: min(44vw, 400px);
  height: min(44vw, 400px);
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(15, 23, 42, 0.041) 0%, transparent 64%);
  pointer-events: none;
}

.home-intro .container {
  position: relative;
  z-index: 1;
}

.home-intro__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 52px;
  align-items: start;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.home-intro__col--body {
  min-width: 0;
  align-self: start;
}

.home-intro__col--head .badge-light {
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.home-intro__col--head h2 {
  margin: 0 0 16px;
  max-width: 20ch;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-intro__dek {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: #5b6978;
  line-height: 1.48;
  margin: 0 0 22px;
  max-width: 38ch;
}

.home-intro__pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.home-intro__pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 100px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-intro__pill:hover {
  border-color: rgba(51, 190, 179, 0.42);
  box-shadow:
    0 4px 14px rgba(15, 23, 42, 0.07),
    inset 0 0 0 1px rgba(51, 190, 179, 0.08);
  transform: translateY(-1px);
}

.home-intro__pill i {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.home-intro__card {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-xl);
  box-shadow:
    0 20px 48px -14px rgba(15, 23, 42, 0.1),
    0 8px 16px -8px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 4px 0 0 rgba(51, 190, 179, 0.38);
}

.home-intro__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.home-intro__card-inner {
  position: relative;
  padding: 26px 26px 24px 54px;
  flex: 0 0 auto;
}

.home-intro__quote-mark {
  position: absolute;
  left: 16px;
  top: 26px;
  font-family: var(--font-serif);
  font-size: 3.35rem;
  line-height: 0.76;
  color: rgba(51, 190, 179, 0.2);
  user-select: none;
  pointer-events: none;
  margin: 0;
}

.home-intro__lead {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.72;
  color: #586174;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: min(68ch, 100%);
}

.home-intro__lead-kicker {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.55vw, 1.28rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.028em;
  line-height: 1.42;
  color: #0f172a;
  margin: 0 0 1.05rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(51, 190, 179, 0.14);
}

.home-intro__card-foot {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 12px 20px;
  padding: 16px 24px 18px;
  flex: 0 0 auto;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.76) 100%);
}

.home-intro__card-meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.02em;
  line-height: 1.58;
  min-width: 0;
  flex: 0 1 auto;
  max-width: 32rem;
}

@media (min-width: 1025px) {
  .home-intro__card-meta {
    flex: 1 1 12rem;
  }
}

.home-intro__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--font-sans);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.home-intro__card-link:hover {
  color: var(--primary-hover);
}

.home-intro__card-link:hover i {
  transform: translateX(3px);
}

.home-intro__card-link i {
  width: 16px;
  height: 16px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 640px) {
  .home-intro__card-inner {
    padding: 22px 18px 22px 46px;
  }

  .home-intro__quote-mark {
    left: 11px;
    top: 20px;
    font-size: 2.5rem;
  }

  .home-intro__lead {
    max-width: none;
  }

  .home-intro__card-foot {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px 16px;
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .home-intro {
    padding: 76px 0 92px;
  }

  .home-intro__wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .home-intro__col--head h2 {
    max-width: none;
  }

  .home-intro__dek {
    max-width: none;
  }

  .home-intro__card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-criteria {
  padding: 100px 0;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.criteria-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out,
    border-color 0.2s ease-out;
}

.criteria-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.criteria-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(51, 190, 179, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.criteria-card__icon i {
  width: 22px;
  height: 22px;
}

.criteria-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #020617;
}

.criteria-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1100px) {
  .criteria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .criteria-grid {
    grid-template-columns: 1fr;
  }
}

.home-why {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.home-why .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.home-why .why-grid .vertical-card {
  height: 100%;
}

@media (max-width: 900px) {
  .home-why .why-grid {
    grid-template-columns: 1fr;
  }
}

.top-providers {
  padding: 120px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

/* Tier One Refinement */
.tier-one {
  padding: 120px 0;
  background: var(--bg-body);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .tier-one {
    padding: 72px 0;
  }

  .tier-list {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .tier-one {
    padding: 44px 0;
  }
}

/* Homepage: reviews column + optional sticky BK8 offer (from API) */
.tier-one-layout {
  display: grid;
  gap: 32px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
}

.tier-one-layout--with-sidebar {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
}

.tier-one-main {
  min-width: 0;
}

.tier-one-sidebar {
  position: sticky;
  top: var(--sticky-header-offset);
  z-index: 1;
}

.tier-one-sidebar__inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
  border-left: 3px solid rgba(51, 190, 179, 0.45);
}

.tier-one-sidebar__tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tier-one-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  min-width: 0;
}

.tier-one-sidebar__logo-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.tier-one-sidebar__logo-wrap[hidden] {
  display: none !important;
}

.tier-one-sidebar__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tier-one-sidebar__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #020617;
  margin: 0;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.tier-one-sidebar__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.tier-one-sidebar__amount {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 16px;
  line-height: 1.35;
}

.tier-one-sidebar__terms {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0 0 18px;
}

.tier-one-sidebar .btn-block {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .tier-one-layout--with-sidebar {
    grid-template-columns: 1fr;
  }

  .tier-one-sidebar {
    position: static;
    order: -1;
  }
}

.filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(29, 78, 216, 0.2);
}

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* center: rank, logo, and CTA align vertically with the tall middle column (was stretch + top-aligned logo) */
.tier-card {
  display: flex;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  gap: 32px;
  transition:
    transform 0.25s ease-out,
    box-shadow 0.25s ease-out,
    border-color 0.25s ease-out;
  box-shadow: var(--shadow-md);
}

.tier-card--casino .tier-info {
  flex: 2;
  min-width: 0;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: #cbd5e1;
}

/* Rank above logo: single column */
.tier-rank-logo-col {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.tier-rank-wrap {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 12px;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.tier-rank-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
  opacity: 0.9;
}

/* Single line: 1st, 2nd, … 5th (no duplicate 01) */
.tier-rank-ordinal {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  color: #475569;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
  z-index: 1;
  text-transform: none;
}

/* Top 3: podium rank badges (restrained / editorial) */
.tier-rank-wrap--p1 {
  padding: 12px 14px;
  border-color: rgba(180, 148, 96, 0.42);
  background: linear-gradient(165deg, #fafaf9 0%, #f5f5f4 48%, #eeece8 100%);
  box-shadow:
    0 2px 10px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.tier-rank-wrap--p1::before {
  height: 2px;
  background: linear-gradient(90deg, #a8a29e, #c5a572, #b8976a, #c5a572, #a8a29e);
  opacity: 1;
}

.tier-rank-wrap--p1 .tier-rank-ordinal {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1c1917;
}

.tier-rank-wrap--p2 {
  padding: 12px 14px;
  border-color: rgba(113, 113, 122, 0.38);
  background: linear-gradient(165deg, #fafafa 0%, #f4f4f5 50%, #e4e4e7 100%);
  box-shadow:
    0 2px 10px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.tier-rank-wrap--p2::before {
  height: 2px;
  background: linear-gradient(90deg, #a1a1aa, #d4d4d8, #e4e4e7, #d4d4d8, #a1a1aa);
  opacity: 1;
}

.tier-rank-wrap--p2 .tier-rank-ordinal {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3f3f46;
}

.tier-rank-wrap--p3 {
  padding: 12px 14px;
  border-color: rgba(120, 113, 108, 0.4);
  background: linear-gradient(165deg, #fafaf9 0%, #f5f0eb 52%, #ebe4dd 100%);
  box-shadow:
    0 2px 10px rgba(15, 23, 42, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.tier-rank-wrap--p3::before {
  height: 2px;
  background: linear-gradient(90deg, #a8a29e, #9a6b4a, #b08d6e, #9a6b4a, #a8a29e);
  opacity: 1;
}

.tier-rank-wrap--p3 .tier-rank-ordinal {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #44403c;
}

/* Top 3: subtle whole-card accent */
.tier-card--podium {
  position: relative;
}

.tier-card--podium::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
}

.tier-card--podium-1::before {
  border-color: rgba(197, 165, 114, 0.28);
  box-shadow: inset 0 0 0 1px rgba(245, 240, 230, 0.6);
}

.tier-card--podium-2::before {
  border-color: rgba(161, 161, 170, 0.35);
  box-shadow: inset 0 0 0 1px rgba(244, 244, 245, 0.65);
}

.tier-card--podium-3::before {
  border-color: rgba(160, 130, 110, 0.3);
  box-shadow: inset 0 0 0 1px rgba(245, 240, 235, 0.55);
}

.tier-rank-logo-col .tier-logo-col {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tier-logo {
  position: relative;
  width: 100%;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  overflow: visible;
  box-shadow: var(--shadow-sm);
}

.tier-logo.dark {
  background: #0f172a;
  border-color: #0f172a;
}

.tier-logo.white {
  background: white;
  border-color: var(--border);
}

.tier-logo.abstract {
  background: linear-gradient(135deg, #1e293b, #020617);
  border: none;
}

/* Homepage top providers: mat from providerLogoMatIsDark(); do not use raw Strapi LogoStyle as .tier-logo.dark/.white */
.tier-card--provider .tier-logo--mat-light {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border-color: #cbd5e1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(15, 23, 42, 0.06);
}

.tier-card--provider .tier-logo--mat-light .tier-logo-img {
  filter: contrast(1.02);
}

.tier-card--provider .tier-logo--mat-dark {
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tier-card--provider .tier-logo--mat-light .placeholder-text {
  color: #475569;
}

.tier-card--provider .tier-logo--mat-dark .placeholder-text {
  color: #f1f5f9;
}

.tier-logo>.tier-logo-img {
  display: block;
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
}

.logo-abstract-icon {
  width: 36px;
  height: 36px;
  color: white;
  opacity: 0.9;
}

.placeholder-text {
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: white;
}

.text-dark {
  color: #0f172a;
}

.verified-icon-wrapper {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid white;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.verified-icon-svg {
  width: 14px;
  height: 14px;
  stroke-width: 3.5px;
}

.tier-info {
  flex: 1.5;
  min-width: 0;
}

.info-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 8px;
}

.info-header h3 {
  font-size: 1.25rem;
  margin: 0;
  color: #020617;
}

.tier-card .info-header h3 {
  font-size: clamp(1.45rem, 2.35vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #020617;
}

.tier-card .info-header {
  margin-bottom: 10px;
}

.tier-head-left .info-header {
  margin-bottom: 0;
  gap: 8px 10px;
}

/* Title left, rating stack beside it (no space-between: avoids huge middle gap) */
.tier-head-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 8px;
}

.tier-head-left {
  flex: 0 1 auto;
  min-width: 0;
}

.tier-head-right {
  flex: 0 0 auto;
}

.rating-row--trailing {
  align-items: flex-start;
  margin-bottom: 0;
}

.tier-head-right .stars {
  justify-content: flex-start;
}

.tier-head-right .rating-row--with-badge {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .tier-head-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 8px;
  }

  .tier-head-right .rating-row--trailing {
    align-items: flex-start;
  }

  .tier-head-right .stars {
    justify-content: flex-start;
  }
}

.tier-editor-chip {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary-hover);
  background: rgba(51, 190, 179, 0.12);
  border: 1px solid rgba(51, 190, 179, 0.35);
  padding: 5px 11px;
  border-radius: 100px;
  font-family: var(--font-sans);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.rating-row--stack {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}

.tier-head-right .rating-row--stack {
  gap: 3px;
}

.rating-row--with-badge {
  margin-bottom: 18px;
}

.tier-head-right .rating-row--with-badge {
  margin-bottom: 0;
}

.tier-card .rating-row--stack .stars-meter--units {
  font-size: 1.125rem;
}

.stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

/* Five discrete ★ cells; each star clips its own gold layer (e.g. 4.7 → 4 full + 5th at 70%) */
.stars-meter {
  font-family: var(--font-sans);
  vertical-align: middle;
}

.stars-meter--units {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  line-height: 1;
}

.star-unit {
  position: relative;
  display: inline-block;
  width: 1em;
  min-width: 1em;
  height: 1em;
  line-height: 1;
  font-size: 1em;
}

.star-unit__track {
  display: block;
  color: #cbd5e1;
}

.star-unit__fill {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  /* Width set inline (0-100%). Never default to 100%: invalid/missing vars looked all full. */
  width: 0;
  height: 100%;
  color: #f59e0b;
  white-space: nowrap;
}

.rating .stars-meter--units {
  font-size: 0.95rem;
  gap: 0.16em;
}

.rating .star-unit__fill {
  color: #d4af37;
}

.rating-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-style: normal;
}

.tier-card .rating-row--stack .rating-text {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Provider card: title → stars + score + badge (single readable row) */
.tier-provider-head {
  margin-bottom: 14px;
}

.tier-provider-head .info-header {
  margin-bottom: 0;
}

.tier-provider-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.tier-provider-meta .stars-meter--units {
  font-size: 1.1rem;
  gap: 0.2em;
}

.tier-rating-score {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.tier-rating-score .tier-rating-num {
  font-weight: 800;
  color: #020617;
}

.tier-rating-score .tier-rating-denom {
  font-weight: 600;
  color: #94a3b8;
}

.tier-rating-score--plain {
  font-weight: 700;
  color: var(--text-muted);
}

.tier-provider-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 100px;
  font-family: var(--font-sans);
}

.tier-provider-badge--default {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
}

.tier-provider-badge--top {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #7dd3fc;
  color: #0369a1;
  box-shadow: 0 1px 2px rgba(14, 165, 233, 0.12);
}

.tier-provider-badge--innovator {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fecaca;
  color: #b91c1c;
}

@media (min-width: 560px) {
  .tier-provider-meta {
    justify-content: flex-start;
  }

  .tier-provider-meta .tier-provider-badge {
    margin-left: auto;
  }
}

/* Tablet: title + rating use full width; avoid empty space on the trailing side */
@media (min-width: 769px) and (max-width: 1024px) {
  .tier-card.tier-card--casino .tier-head-row {
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px 20px;
    width: 100%;
  }

  .tier-card.tier-card--casino .tier-head-left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .tier-card.tier-card--casino .tier-head-right {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .tier-card.tier-card--casino .tier-head-right .rating-row--stack {
    align-items: flex-end;
  }

  .tier-card.tier-card--casino .tier-head-right .stars {
    justify-content: flex-end;
  }

  .tier-card.tier-card--casino .tier-head-right .rating-text {
    text-align: right;
  }
}

.tier-payments-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  padding: 4px 0 6px;
  border-bottom: 1px solid var(--border-light);
}

.tier-payments-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tier-payments-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tier-payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  padding: 5px 10px;
  border-radius: 100px;
}

.tier-payment-chip svg,
.tier-payment-chip i {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  flex-shrink: 0;
  display: block;
  opacity: 0.9;
}

.tier-pros-cons {
  margin-top: 0;
}

.tier-info>.pros-cons {
  margin-top: 6px;
}

.pros-cons-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.pros-cons-col-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.tier-pros-cons:not(.is-expanded) .tier-extra {
  display: none;
}

.tier-pros-cons.is-expanded .tier-extra {
  display: flex;
}

.tier-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-hover);
  font-family: var(--font-sans);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.tier-expand-btn:hover {
  color: var(--text-main);
}

.tier-expand-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.tier-pros-cons.is-expanded .tier-expand-chevron {
  transform: rotate(180deg);
}

.pros-cons {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pros-cons li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Lucide replaces <i> with <svg>: size the icon node, not the removed <i> */
.pros-cons li>svg,
.pros-cons li>i {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  display: block;
}

.pros-cons li.pro>svg,
.pros-cons li.pro>i {
  color: var(--success);
}

.pros-cons li.con>svg,
.pros-cons li.con>i {
  color: var(--danger);
}

.tier-features {
  flex: 1;
  border-left: 1.5px dashed var(--border);
  padding-left: 40px;
}

.col-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.col-label.mt {
  margin-top: 24px;
}

.icon-row {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  align-items: center;
  flex-wrap: wrap;
}

.icon-row svg,
.icon-row i {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  min-height: 22px;
  flex-shrink: 0;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.icon-row i:hover,
.icon-row svg:hover {
  opacity: 1;
  color: var(--primary);
}

/* Bonus / promotion column: fixed-width sidebar beside review body; sticks while the card is in view */
.tier-bonus {
  flex: 0 0 min(280px, 28vw);
  min-width: 0;
  max-width: 300px;
  position: sticky;
  top: var(--sticky-header-offset);
  align-self: flex-start;
  padding: 18px 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(51, 190, 179, 0.35);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.03);
}

.tier-bonus--no-offer {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.55);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.tier-bonus__top-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: rgba(51, 190, 179, 0.12);
  border: 1px solid rgba(51, 190, 179, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.tier-bonus__top-icon--muted {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.4);
  color: #64748b;
}

/* Provider card: game portfolio tile (homepage) */
.tier-bonus__top-icon--provider {
  background: rgba(30, 58, 95, 0.09);
  border-color: rgba(30, 58, 95, 0.22);
  color: #1e3a5f;
}

.tier-bonus--provider {
  padding: 16px 16px 12px;
}

.tier-bonus--provider .bonus-amount {
  margin-bottom: 10px;
}

.bonus-actions .btn-dossier {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0f172a;
  border-color: rgba(51, 190, 179, 0.35);
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.bonus-actions .btn-dossier:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(51, 190, 179, 0.07);
}

.bonus-actions .btn-dossier i,
.bonus-actions .btn-dossier svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tier-bonus__top-icon i,
.tier-bonus__top-icon svg {
  width: 22px;
  height: 22px;
}

.tier-bonus__eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 8px;
}

.tier-bonus__no-offer-msg {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0 0 14px;
  text-align: center;
}

.bonus-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  max-width: 100%;
}

.bonus-amount {
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 800;
  margin: 0 0 14px;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.35;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.tier-bonus .bonus-actions {
  width: 100%;
  max-width: 100%;
}

.bonus-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: stretch;
}

.bonus-actions--solo {
  margin-bottom: 0;
}

.bonus-actions .btn-visit-site {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  padding: 12px 16px;
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bonus-actions .btn-visit-site i,
.bonus-actions .btn-visit-site svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bonus-actions .btn-visit-site:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(51, 190, 179, 0.35);
}

.bonus-terms.terms,
p.bonus-terms {
  font-size: 0.68rem;
  color: var(--text-light);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  margin: 0;
}

p.bonus-terms.bonus-terms--expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  text-align: left;
}

.info-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  width: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.info-btn:hover {
  background: rgba(51, 190, 179, 0.08);
  border-color: rgba(51, 190, 179, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.15);
}

.info-btn i,
.info-btn svg {
  width: 20px;
  height: 20px;
}

/* SEO Accordion */
.seo-accordion {
  padding: 80px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.casinos-faq.seo-accordion,
.slots-faq.seo-accordion,
.providers-faq.seo-accordion,
.bonuses-faq.seo-accordion,
.guides-faq.seo-accordion,
.how-we-rate-faq.seo-accordion {
  border-top: 1px solid var(--border-light);
}

.seo-accordion .section-header {
  margin-bottom: 48px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion.accordion--two-cols {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  align-items: start;
}

.accordion--two-cols .accordion-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

@media (max-width: 900px) {
  .accordion.accordion--two-cols {
    grid-template-columns: 1fr;
  }
}

.accordion-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.accordion-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: #cbd5e1;
}

.accordion-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  background: transparent;
  color: var(--text-main);
  text-align: left;
}

.accordion-title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-sans);
  flex: 1;
  min-width: 0;
}

/* Lucide renders <svg>; keep the hit area square or flex-shrink turns it into a tall oval */
.accordion-icon-wrap {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  flex-shrink: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--primary);
}

.accordion-header:hover .accordion-icon-wrap {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.accordion-item.active .accordion-icon-wrap {
  background: var(--primary);
  color: white;
}

.accordion-icon-wrap :is(svg, i.accordion-icon),
.accordion-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.25s ease-out;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-inner {
  overflow: hidden;
}

.accordion-inner p {
  padding: 0 32px 32px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.casinos-seo,
.providers-seo,
.bonuses-seo,
.slots-seo,
.guides-seo {
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid var(--border);
}

.slots-seo .container {
  max-width: 820px;
}

/* Providers editorial: full site container width + aside (see `.providers-seo__grid`) */

/* Casinos directory editorial: full site width (section only used on /casinos) */
.casinos-seo .container {
  max-width: var(--container-max-width);
}

/* Bonuses page editorial SEO: full site width (section only used on /bonuses) */
.bonuses-seo .container {
  max-width: var(--container-max-width);
}

/* Guides hub editorial SEO: full site width (section only used on /guides) */
.guides-seo .container {
  max-width: var(--container-max-width);
}

/* Slots editorial: same max-width as global `.container` (not the narrow 820px SEO block) */
.page-slots .slots-seo .container {
  max-width: var(--container-max-width);
}

.casinos-seo h2,
.providers-seo h2,
.bonuses-seo h2,
.slots-seo h2,
.guides-seo h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.casinos-seo p,
.providers-seo p,
.providers-seo__main p,
.bonuses-seo p,
.slots-seo p,
.guides-seo p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.casinos-seo p:last-child,
.providers-seo__main p:last-child,
.bonuses-seo p:last-child,
.slots-seo > .container > p:last-child,
.guides-seo__intro p:last-child {
  margin-bottom: 0;
}

.providers-seo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.providers-seo__main {
  min-width: 0;
}

.providers-seo__panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2.5vw, 1.35rem);
  box-shadow: var(--shadow-sm);
}

.providers-seo__panel-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.35rem;
}

.providers-seo__panel-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.providers-seo__panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.providers-seo__panel-list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.providers-seo__panel-list a:hover {
  color: #1e3a5f;
}

@media (max-width: 900px) {
  .providers-seo__grid {
    grid-template-columns: 1fr;
  }
}

/* Slots editorial block: intro + tip cards */
.page-slots .slots-seo__header {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.page-slots .slots-seo__header h2 {
  margin-bottom: 0.85rem;
}

.page-slots .slots-seo__intro p {
  font-size: 0.9rem;
  line-height: 1.68;
  color: #475569;
  margin: 0 0 0.85rem;
}

.page-slots .slots-seo__intro p:last-child {
  margin-bottom: 0;
}

.page-slots .slots-seo__intro a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-slots .slots-seo__intro a:hover {
  color: #2a9d91;
}

.page-slots .slots-seo__tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 20px);
}

@media (min-width: 768px) {
  .page-slots .slots-seo__tips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-slots .slots-seo__tip {
  margin: 0;
  padding: 1.15rem 1.2rem 1.2rem 1.15rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  border-left: 4px solid var(--primary);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.page-slots .slots-seo__tip:hover {
  border-color: rgba(51, 190, 179, 0.45);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 16px 40px rgba(15, 23, 42, 0.08);
}

.page-slots .slots-seo__tip-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.55rem;
}

.page-slots .slots-seo__tip-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(51, 190, 179, 0.14) 0%, rgba(51, 190, 179, 0.06) 100%);
  color: #0f766e;
  border: 1px solid rgba(51, 190, 179, 0.28);
}

.page-slots .slots-seo__tip-icon i,
.page-slots .slots-seo__tip-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.25px;
}

.page-slots .slots-seo__tip h3 {
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin: 2px 0 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.page-slots .slots-seo__tip p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
  padding-left: 52px;
}

@media (max-width: 480px) {
  .page-slots .slots-seo__tip p {
    padding-left: 0;
    margin-top: 0.35rem;
  }
}

/* Post & Sidebar Layout */
.post-layout {
  display: flex;
  gap: 64px;
  padding: 100px 32px;
  align-items: flex-start;
}

.post-content {
  flex: 1;
  max-width: 760px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.post-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.post-lead {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
  font-style: italic;
}

.post-body p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
}

.post-body h2 {
  font-size: 2rem;
  margin: 48px 0 24px;
}

.post-body h3 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  font-family: var(--font-serif);
}

.post-body blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
  padding-left: 24px;
  border-left: 4px solid var(--primary);
  margin: 48px 0;
  line-height: 1.5;
}

.sidebar {
  flex: 0 0 320px;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hook-widget {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 32px;
  border-radius: var(--radius-lg);
  color: white;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid #334155;
}

.hook-widget::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  filter: blur(40px);
  opacity: 0.5;
  border-radius: 50%;
}

.hook-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #60a5fa;
}

.hook-widget h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hook-widget p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hook-btn {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.hook-btn i {
  transition: transform 0.3s;
}

.hook-btn:hover i {
  transform: translateX(4px);
}

.hook-terms {
  display: block;
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-widget h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  color: #020617;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trending-list li a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s;
}

.trending-list li a:hover {
  color: var(--primary);
}

/* Listing Layout (casinos.html): single column in DOM = title → filters → cards; grid on wide screens = sidebar | header+cards */
.listing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 40px);
  padding: 64px 32px 100px;
  align-items: start;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.listing-header-wrap {
  min-width: 0;
}

@media (min-width: 1025px) {
  .listing-layout {
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto auto;
    column-gap: 48px;
    row-gap: 0;
  }

  .listing-header-wrap {
    grid-column: 2;
    grid-row: 1;
  }

  .listing-sidebar {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .listing-main {
    grid-column: 2;
    grid-row: 2;
  }
}

.listing-sidebar {
  position: sticky;
  top: 120px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Casinos directory: filters wrapped so tablet grid does not fragment the heading */
.listing-filters-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.listing-filters-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.listing-filters-grid .filter-group {
  margin-bottom: 0;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #f1f5f9;
}

.listing-filters-grid .filter-group:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.filter-title {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  margin: 0 0 20px;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-heading {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

/* Custom Checkbox & Radio */
.custom-checkbox,
.custom-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 14px;
  position: relative;
}

.custom-checkbox input,
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filter-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.custom-checkbox input:checked~.filter-label,
.custom-radio input:checked~.filter-label {
  color: #020617;
  font-weight: 600;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all 0.2s;
  flex-shrink: 0;
}

.custom-checkbox:hover .checkmark {
  border-color: var(--primary);
}

.custom-checkbox input:checked~.checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.custom-checkbox input:checked~.checkmark::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.radiomark {
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: all 0.2s;
  flex-shrink: 0;
}

.custom-radio:hover .radiomark {
  border-color: var(--primary);
}

.custom-radio input:checked~.radiomark {
  border-color: var(--primary);
  border-width: 4px;
}

.guarantee-box {
  background: #f8fafc;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.guarantee-icon {
  width: 32px;
  height: 32px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guarantee-icon i {
  width: 16px;
  height: 16px;
}

.guarantee-box h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.guarantee-box p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Listing Main */
.listing-main {
  flex: 1;
  min-width: 0;
  scroll-margin-top: 120px;
}

.listing-header {
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.listing-header h1 {
  font-size: 3.5rem;
  font-family: var(--font-serif);
  margin-bottom: 16px;
  color: #020617;
  letter-spacing: -0.02em;
}

.listing-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  font-weight: 400;
  font-family: var(--font-sans);
}

.listing-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.listing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 28px;
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s, border-color 0.2s;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.listing-card:hover {
  box-shadow: 0 12px 40px -12px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
  border-color: rgba(51, 190, 179, 0.35);
}

/* Editorial rank (tablet/mobile only - see max-width:1024 rules below) */
.listing-card__rank {
  display: none;
  width: 100%;
  flex-shrink: 0;
  justify-content: center;
}

.listing-card__rank-ordinal {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #475569;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.card-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.card-logo-area {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid var(--border-light);
}

.casino-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #e2e8f0;
  text-align: center;
}

.luxury-gold {
  background: linear-gradient(135deg, #d4af37, #f3e5ab, #aa8623);
  border-color: #fceea7;
  color: #443000;
}

.luxury-dark {
  background: #0f172a;
  border-color: #334155;
}

.luxury-black {
  background: #000000;
  border-color: #1a1a1a;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1;
  display: inline-block;
  padding: 0 4px;
}

.logo-text.gold {
  color: #d4af37;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.card-content-area {
  flex: 1;
}

.card-top {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.casino-name {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  margin: 0;
  color: #020617;
  font-weight: 700;
}

.badge-sm {
  font-size: 0.55rem;
  padding: 4px 10px;
  border-radius: 12px;
  background: #e2e8f0;
  color: #475569;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #020617;
}

.rating svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.rating svg.fill {
  fill: #d4af37;
  color: #d4af37;
  stroke: #d4af37;
}

.rating svg.half {
  fill: #d4af37;
  color: #d4af37;
  stroke: #d4af37;
}

.rating svg.empty {
  fill: none;
  color: #cbd5e1;
  stroke: #cbd5e1;
}

.card-stats {
  display: flex;
  gap: clamp(8px, 1.5vw, 18px);
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}

.stat-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 0;
  max-width: none;
}

.stat-label-row {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.stat-label-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #94a3b8;
  opacity: 0.95;
}

.stat-label-icon svg {
  width: 12px;
  height: 12px;
}

.stat-col--bonus .stat-label-row .stat-label {
  letter-spacing: 0.07em;
  font-size: 0.52rem;
}

.stat-label {
  font-size: 0.56rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  line-height: 1.2;
}

.stat-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: #020617;
  font-family: var(--font-sans);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.stat-value.primary {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}

.stat-value--muted {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
}

.card-action-area {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  min-width: 132px;
  border-left: 1px solid var(--border-light);
  padding-left: clamp(22px, 2.5vw, 30px);
}

.card-action-area .btn {
  padding: 11px 18px;
  font-size: 0.78rem;
  border-radius: 10px;
}

.listing-visit-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.22);
}

.listing-visit-btn i,
.listing-visit-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.read-review-link {
  font-size: 0.68rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-review-link i,
.read-review-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.read-review-link:hover {
  color: var(--primary);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid var(--border-light);
}

.pagination a.prev,
.pagination a.next {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.pagination a.prev i,
.pagination a.next i {
  width: 16px;
  height: 16px;
}

.pagination a.prev:not(.disabled):hover,
.pagination a.next:not(.disabled):hover {
  color: var(--primary);
}

.pagination a.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-numbers a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: #475569;
  font-weight: 500;
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s;
}

.page-numbers a:hover {
  background: #f1f5f9;
}

.page-numbers a.active {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.page-numbers .ellipsis {
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0 4px;
}

@media (max-width: 1024px) {
  .listing-layout {
    grid-template-columns: 1fr;
    padding: 40px clamp(16px, 4vw, 24px) 72px;
  }

  .listing-header-wrap,
  .listing-sidebar,
  .listing-main {
    grid-column: auto;
    grid-row: auto;
  }

  .listing-header {
    padding-bottom: clamp(28px, 4vw, 36px);
    margin-bottom: clamp(28px, 4vw, 36px);
  }

  .listing-header h1 {
    font-size: clamp(2rem, 1.25rem + 3.5vw, 3.25rem);
    line-height: 1.12;
  }

  .listing-header p {
    max-width: none;
  }

  .listing-sidebar {
    flex: none;
    width: 100%;
    position: static;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(28px, 4vw, 40px);
  }

  .listing-filters-card {
    padding: clamp(20px, 3vw, 28px);
  }

  .listing-filters-card .filter-title {
    margin-bottom: clamp(20px, 3vw, 28px);
  }

  .listing-filters-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 28px;
    align-items: start;
  }

  .listing-filters-grid .filter-group {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .listing-filters-grid .filter-group:not(:last-child) {
    border-right: 1px solid #f1f5f9;
    padding-right: clamp(16px, 3vw, 24px);
    margin-right: 0;
  }

  .listing-sidebar .guarantee-box {
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  }

  .listing-sidebar .guarantee-box .guarantee-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .listing-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 18px;
    padding: clamp(20px, 3vw, 28px);
  }

  .listing-card__rank {
    display: flex;
    margin-bottom: 0;
  }

  .card-logo-area {
    margin: 0 auto;
    border: none;
    background: transparent;
    height: auto;
    padding-bottom: 8px;
  }

  .card-top {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .card-title-row {
    justify-content: center;
  }

  .rating {
    justify-content: center;
  }

  .card-stats {
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(8px, 2vw, 16px);
    max-width: 100%;
  }

  .card-action-area {
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-left: 0;
    padding-top: 16px;
    min-width: 100%;
  }
}

/* Below ~900px the three filter columns get cramped - stack with dividers */
@media (max-width: 900px) {
  .listing-filters-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .listing-filters-grid .filter-group:not(:last-child) {
    border-right: none;
    padding-right: 0 !important;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .listing-filters-grid .filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

/* Tablet: filter card + Editor's Guarantee in one horizontal row */
@media (max-width: 1024px) and (min-width: 769px) {
  .listing-sidebar {
    flex-direction: row;
    align-items: stretch;
    gap: clamp(16px, 2.5vw, 24px);
  }

  .listing-filters-card {
    flex: 1 1 0;
    min-width: 0;
  }

  .listing-sidebar .guarantee-box {
    flex: 0 0 clamp(220px, 26vw, 288px);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(18px, 2.5vw, 24px);
  }
}

/* Casinos directory: two cards per row from 768px up to tablet/laptop */
@media (min-width: 768px) and (max-width: 1024px) {
  body.page-casinos .listing-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    align-items: stretch;
  }

  body.page-casinos .listing-card {
    min-width: 0;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .post-layout {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Casinos directory - phones & small tablets */
  body.page-casinos .listing-layout {
    padding: 32px clamp(14px, 4vw, 20px) 56px;
  }

  body.page-casinos .listing-sidebar {
    flex-direction: column;
    gap: 24px;
  }

  body.page-casinos .filter-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  body.page-casinos .guarantee-box {
    padding: 22px 20px;
    max-width: none;
  }

  body.page-casinos .listing-card {
    gap: 20px;
    padding: 20px 18px;
  }

  body.page-casinos .listing-card .card-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
  }

  body.page-casinos .listing-card .stat-col {
    max-width: none;
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 4px 0;
    border-bottom: none;
  }

  body.page-casinos .listing-card .stat-label-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  body.page-casinos .listing-card .stat-col:last-child {
    padding-bottom: 0;
  }

  body.page-casinos .listing-card .card-action-area .btn {
    width: 100%;
    max-width: none;
  }

  body.page-casinos .casinos-seo .container {
    padding-inline: clamp(16px, 4vw, 24px);
  }
}

@media (max-width: 640px) {
  body.page-casinos .pagination {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-top: 36px;
    margin-top: 36px;
  }

  body.page-casinos .pagination .page-numbers {
    flex-wrap: wrap;
    justify-content: center;
    order: -1;
  }

  body.page-casinos .pagination a.prev,
  body.page-casinos .pagination a.next {
    justify-content: center;
  }
}

/* Enhanced Footer */
.footer {
  padding: 100px 0 40px;
  background: #0f172a;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  color: white;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: #60a5fa;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icons a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.social-icons i {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.bottom-badges {
  display: flex;
  gap: 12px;
}

.small-badge {
  background: #1e293b;
  border: 1px solid #334155;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: #cbd5e1;
  font-weight: 700;
}

/* Section hooks: content visible immediately (no scroll-triggered hide/show). */
.reveal,
.reveal.active {
  opacity: 1;
  transform: none;
}

.delay-100,
.delay-200,
.delay-300,
.delay-400,
.delay-500,
.delay-600,
.delay-700,
.delay-800 {
  transition-delay: 0s;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-content p {
    margin: 0 auto 32px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-card-wrapper {
    flex: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-card {
    transform: none;
  }

  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .vertical-card.large {
    grid-column: span 2;
    grid-row: auto;
  }

  .tier-card {
    flex-wrap: wrap;
    gap: 20px;
    padding: 22px 20px;
  }

  .tier-rank-logo-col {
    width: 120px;
  }

  .tier-bonus,
  .tier-features {
    border-left: none;
    padding-left: 0;
  }

  .tier-bonus {
    position: static;
    align-self: stretch;
    flex: 1 1 100%;
    max-width: none;
    width: 100%;
    margin-left: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px 18px;
  }

  .pros-cons-grid-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

/* ≤1024px: horizontal nav + 9 links + CTA does not fit - use hamburger drawer (GET BONUS stays until 768px) */
@media (max-width: 1024px) {

  /* JS sets --app-vh from visualViewport.height so fixed overlays match the visible screen */
  :root {
    --app-vh: 100vh;
  }

  body.mobile-menu-open site-header,
  body.mobile-menu-open .header,
  body.mobile-menu-open .header-inner {
    overflow: visible;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav-panel__tagline {
    display: none !important;
  }

  .mobile-nav-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    grid-area: navtop;
    flex-shrink: 0;
    padding-inline: clamp(0.75rem, 2.5vw, 1.25rem);
    padding-top: 0.35rem;
    padding-bottom: clamp(0.35rem, 1.2vh, 0.65rem);
    margin-bottom: 0.15rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 1;
  }

  .mobile-nav-panel__brand {
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
  }

  .mobile-nav-panel__logo {
    display: block;
    height: clamp(24px, 6svh, 34px);
    width: auto;
    max-width: min(108px, 44vw);
    object-fit: contain;
    object-position: left center;
  }

  .mobile-nav-close {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--app-vh, 100svh);
    max-height: var(--app-vh, 100svh);
    z-index: 100000;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "navtop"
      "navlinks"
      "navfoot";
    box-sizing: border-box;
    margin: 0;
    max-width: none;
    padding: max(0.5rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(0.5rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    background: linear-gradient(168deg, #f8fafc 0%, #f1f5f9 38%, #e2e8f0 100%);
    box-shadow: -24px 0 60px rgba(15, 23, 42, 0.14);
    transform: translateX(100%);
    transition: transform 0.25s ease-out;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  body.mobile-menu-open .header {
    z-index: 100010;
  }

  body.mobile-menu-open .main-nav {
    transform: translateX(0);
  }

  /* Bar controls sit above page content but below the full-screen drawer; hide hamburger (drawer has close) */
  body.mobile-menu-open .header .logo,
  body.mobile-menu-open .header .header-actions {
    position: relative;
    z-index: 0;
    pointer-events: none;
  }

  body.mobile-menu-open .mobile-menu-btn {
    display: none !important;
  }

  body.mobile-menu-open .header-actions .header-bonus-btn {
    visibility: hidden;
  }

  .main-nav__list {
    grid-area: navlinks;
    position: relative;
    z-index: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .main-nav__list li {
    margin: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  }

  .main-nav__list li:last-child {
    border-bottom: none;
  }

  .main-nav__list a {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 0.4rem;
    font-size: clamp(0.88rem, 3.4vw, 1.05rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0f172a;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .main-nav__list a:hover,
  .main-nav__list a.active {
    color: var(--primary);
    padding-left: 0.65rem;
  }

  .mobile-nav-panel__foot {
    display: block;
    grid-area: navfoot;
    flex-shrink: 0;
    padding-top: clamp(0.35rem, 1.5vh, 0.85rem);
    position: relative;
    z-index: 1;
  }

  .mobile-nav-cta {
    margin: 0;
    text-align: center;
    padding: clamp(0.65rem, 2vh, 0.95rem) 1rem;
    font-size: clamp(0.82rem, 2.6vw, 0.95rem);
  }

  @media (max-height: 520px) {
    .mobile-nav-panel__logo {
      height: clamp(24px, 6svh, 34px);
    }

    .mobile-nav-close {
      width: 36px;
      height: 36px;
    }

    .main-nav__list a {
      padding-block: clamp(0.38rem, 1vh, 0.52rem);
      padding-inline: 0.3rem 0.28rem;
      font-size: clamp(0.72rem, 2.8vw, 0.92rem);
      letter-spacing: 0.09em;
    }

    .mobile-nav-cta {
      padding: clamp(0.4rem, 1.4vh, 0.65rem) 0.85rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .main-nav {
      transition: none !important;
    }

    .main-nav__list a {
      transition: none;
    }
  }
}

@media (max-width: 768px) {
  .header-actions .header-bonus-btn {
    display: none;
  }

  .hero {
    padding: 40px 0 60px;
    min-height: auto;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-card-wrapper {
    max-width: 360px;
  }

  .hero-card--simple {
    padding: 24px 22px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .vertical-card.large {
    grid-column: span 1;
  }

  .tier-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  /* Rank + logo in one row - uses full card width; no narrow centered column */
  .tier-rank-logo-col {
    width: 100%;
    max-width: none;
    margin: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 16px 14px;
    background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border-light);
  }

  .tier-rank-wrap {
    width: auto;
    flex-shrink: 0;
    min-width: 56px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    text-align: center;
  }

  .tier-rank-ordinal {
    font-size: 0.92rem;
    width: auto;
    text-align: center;
  }

  .tier-rank-logo-col .tier-logo-col {
    flex: 1;
    min-width: 0;
    width: auto;
    height: auto;
    max-width: none;
  }

  .tier-logo {
    height: 72px;
    max-height: 72px;
  }

  .tier-info {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
  }

  .tier-payments-strip {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .tier-payments-label {
    font-size: 0.62rem;
  }

  .tier-payment-chip {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .pros-cons-col-label {
    font-size: 0.68rem;
    margin-bottom: 6px;
  }

  .tier-card .pros-cons {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .tier-expand-btn {
    font-size: 0.8rem;
    margin-top: 10px;
    padding: 8px 6px;
  }

  .tier-bonus {
    width: 100%;
    max-width: none;
    align-self: stretch;
    padding: 18px 16px;
    position: static;
    border-radius: 0;
    border-left: none;
    border-top: 1px solid rgba(51, 190, 179, 0.22);
    background: #ffffff;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 16px;
  }

  .tier-bonus--no-offer {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top-color: rgba(148, 163, 184, 0.35);
  }

  .tier-bonus .tier-bonus__top-icon {
    margin-bottom: 8px;
  }

  .tier-bonus .tier-bonus__eyebrow,
  .tier-bonus .tier-bonus__no-offer-msg {
    width: 100%;
  }

  .tier-bonus .bonus-label {
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }

  .tier-bonus .bonus-amount {
    margin-bottom: 8px;
    font-size: clamp(0.95rem, 3.5vw, 1.2rem);
  }

  .tier-bonus--provider {
    padding: 16px 16px 12px;
  }

  .tier-bonus .bonus-actions {
    width: 100%;
  }

  .tier-bonus .bonus-terms {
    width: 100%;
  }

  .bonus-label {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }

  /* Casino card at ≤768: center-aligned stack.
     Row 1: rank, Row 2: logo, Row 3: title (+ editor chip), Row 4: rating.
     Then payments, pros/cons, and the visit-site bonus panel.
     display:contents flattens .tier-rank-logo-col, .tier-info, and .tier-head-row
     so each piece becomes its own grid row without touching the JS template. */
  .tier-card.tier-card--casino {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "rank"
      "logo"
      "title"
      "rating"
      "payments"
      "proscons"
      "bonus";
    row-gap: 0;
    align-items: stretch;
  }

  .tier-card--casino .tier-rank-logo-col,
  .tier-card--casino .tier-info,
  .tier-card--casino .tier-head-row {
    display: contents;
  }

  .tier-card--casino .tier-rank-wrap {
    grid-area: rank;
    justify-self: center;
    width: auto;
    min-width: 56px;
    margin: 20px 20px 14px;
    padding: 6px 14px;
  }

  .tier-card--casino .tier-logo-col {
    grid-area: logo;
    justify-self: center;
    align-self: center;
    width: 100%;
    max-width: 200px;
    margin: 0 20px 16px;
    padding: 0;
  }

  .tier-card--casino .tier-logo {
    width: 100%;
    height: 88px;
    max-height: 88px;
  }

  .tier-card--casino .tier-head-left {
    grid-area: title;
    justify-self: center;
    align-self: center;
    width: 100%;
    min-width: 0;
    padding: 4px 20px 8px;
    text-align: center;
  }

  .tier-card--casino .tier-head-left .info-header {
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
  }

  .tier-card--casino .tier-head-right {
    grid-area: rating;
    justify-self: stretch;
    display: flex;
    justify-content: center;
    margin: 0 20px;
    padding: 12px 0 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .tier-card--casino .tier-head-right .rating-row--stack {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .tier-card--casino .tier-head-right .stars {
    justify-content: center;
  }

  .tier-card--casino .tier-head-right .rating-text {
    text-align: center;
  }

  .tier-card--casino .tier-payments-strip {
    grid-area: payments;
    justify-content: center;
    margin: 16px 20px 14px;
  }

  .tier-card--casino .tier-pros-cons {
    grid-area: proscons;
    margin: 0 20px 18px;
  }

  .tier-card--casino .tier-bonus {
    grid-area: bonus;
  }

  /* Provider card at ≤768: matching center-aligned stack.
     Row 1: rank, Row 2: logo, Row 3: title, Row 4: rating/badge meta.
     Remaining sections (pros, features, bonus) stack vertically as before. */
  .tier-card.tier-card--provider {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "rank"
      "logo"
      "title"
      "meta"
      "pros"
      "features"
      "bonus";
    row-gap: 0;
    align-items: stretch;
  }

  .tier-card--provider .tier-rank-logo-col,
  .tier-card--provider .tier-info,
  .tier-card--provider .tier-provider-head {
    display: contents;
  }

  .tier-card--provider .tier-rank-wrap {
    grid-area: rank;
    justify-self: center;
    width: auto;
    min-width: 56px;
    margin: 20px 20px 14px;
    padding: 6px 14px;
  }

  .tier-card--provider .tier-logo-col {
    grid-area: logo;
    justify-self: center;
    align-self: center;
    width: 100%;
    max-width: 260px;
    margin: 0 20px 16px;
    padding: 0;
  }

  .tier-card--provider .tier-logo {
    height: 96px;
    max-height: 96px;
  }

  .tier-card--provider .info-header {
    grid-area: title;
    justify-content: center;
    text-align: center;
    margin: 4px 20px 8px;
  }

  .tier-card--provider .tier-provider-meta {
    grid-area: meta;
    justify-content: center;
    margin: 10px 20px 16px;
    padding-top: 14px;
    padding-bottom: 4px;
    border-top: 1px solid var(--border-light);
  }

  .tier-card--provider .tier-provider-meta .stars {
    justify-content: center;
  }

  /* Override the ≥560 rule that pushes the tier badge to the right so it stays
     part of the centered rating cluster on mobile. */
  .tier-card--provider .tier-provider-meta .tier-provider-badge {
    margin-left: 0;
  }

  .tier-card--provider .tier-info>ul.pros-cons {
    margin: 0 20px 16px;
  }

  /* At ≤768 the global .tier-features rule removes its border-left + padding-left,
     leaving the flagship-games + expertise block flush to the card edge. Restore
     symmetric horizontal padding for the mobile provider card. */
  .tier-card--provider .tier-features {
    padding: 6px 20px 18px;
  }

  .tier-card--provider .tier-info>ul.pros-cons {
    grid-area: pros;
    margin: 0 16px 12px;
  }

  .tier-card--provider .tier-features {
    grid-area: features;
  }

  .tier-card--provider .tier-bonus {
    grid-area: bonus;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* ========================================= */
/* Casino review page (.cr-page) - AskGamblers-style */
/* ========================================= */
.cr-page {
  background: #fff;
}

/* Breadcrumb */
.cr-breadcrumb {
  padding: 14px 0 12px;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
}

.cr-crumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.03em;
}

.cr-crumbs li+li::before {
  content: '/';
  margin-right: 6px;
  color: #cbd5e1;
}

.cr-crumbs a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.cr-crumbs a:hover {
  color: var(--primary);
}

.cr-crumbs [aria-current] {
  color: #020617;
  font-weight: 700;
}

/* ---- Hero: 3-column grid (image | text | sidebar) ---- */
.cr-hero-section {
  background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 42%, #e8eef5 100%);
  padding: clamp(24px, 3.5vh, 40px) 0 clamp(40px, 6vh, 64px);
  border-bottom: 1px solid #e2e8f0;
}

/* ---- Hero v2: banner + identity strip (casino review) ---- */
.cr-hero-section.cr-hero-v2 {
  padding: 0 0 clamp(20px, 3vw, 32px);
  background: #fff;
}

.cr-hero-v2 .cr-hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 320;
  max-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cr-hero-v2 .cr-hero-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cr-hero-v2 .cr-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 55%, rgba(15, 23, 42, 0.08) 100%);
}

.cr-hero-v2 .cr-hero-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "logo identity ratings";
  align-items: center;
  gap: 20px 32px;
  padding-top: 18px;
}

.cr-hero-v2 .cr-hero-logo-v2 {
  grid-area: logo;
  width: clamp(96px, 12vw, 132px);
  height: clamp(96px, 12vw, 132px);
  margin-top: calc(-1 * clamp(60px, 7vw, 80px));
  border-radius: 50%;
  background: #0f172a;
  border: 4px solid #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-hero-v2 .cr-hero-logo-v2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cr-hero-v2 .cr-hero-logo-v2.cr-hero-logo-v2--contain {
  background: #fff;
}

.cr-hero-v2 .cr-hero-logo-v2--contain .cr-hero-logo-v2__img {
  object-fit: contain;
  padding: 14px;
  background: #fff;
}

.cr-hero-v2 .cr-hero-identity {
  grid-area: identity;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cr-hero-v2 .cr-hero-identity .cr-hero-status {
  margin-bottom: 0;
}

.cr-hero-v2 .cr-hero-identity .cr-heading {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cr-hero-v2 .cr-hero-ratings {
  grid-area: ratings;
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px);
}

.cr-hero-v2 .cr-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cr-hero-v2 .cr-rating-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.02em;
}

.cr-hero-v2 .cr-rating-value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #0f172a;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.1;
  flex-wrap: wrap;
}

.cr-hero-v2 .cr-rating-value strong {
  font-size: 1.45rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.cr-hero-v2 .cr-rating-max {
  font-size: 0.92rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.01em;
  margin-left: -2px;
}

.cr-hero-v2 .cr-rating-icon {
  width: 18px;
  height: 18px;
  align-self: center;
}

.cr-hero-v2 .cr-rating-icon--curator {
  color: #ef4444;
  fill: #ef4444;
}

.cr-hero-v2 .cr-rating-icon--player {
  color: #3b82f6;
  fill: #3b82f6;
}

.cr-hero-v2 .cr-rating-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: underline;
  text-decoration-color: rgba(100, 116, 139, 0.4);
  text-underline-offset: 3px;
  margin-left: 4px;
  transition: color 0.18s, text-decoration-color 0.18s;
}

.cr-hero-v2 .cr-rating-link:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

@media (max-width: 900px) {
  .cr-hero-v2 .cr-hero-strip {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "logo identity"
      "ratings ratings";
    gap: 16px 20px;
  }

  .cr-hero-v2 .cr-hero-ratings {
    gap: 28px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .cr-hero-v2 .cr-hero-banner {
    aspect-ratio: 16 / 8;
  }

  .cr-hero-v2 .cr-hero-strip {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "identity"
      "ratings";
    text-align: left;
    gap: 12px;
  }

  .cr-hero-v2 .cr-hero-logo-v2 {
    margin-top: calc(-1 * clamp(44px, 14vw, 60px));
  }

  .cr-hero-v2 .cr-hero-ratings {
    flex-direction: column;
    gap: 12px;
  }
}

/* Provider detail: casino-style hero v2 with teal-tinted banner + circular logo */
.page-provider-detail .pv-provider-hero.cr-hero-v2 .cr-hero-banner {
  background: linear-gradient(125deg, #0f172a 0%, #134e4a 42%, #1e293b 100%);
}

.page-provider-detail .pv-provider-hero.cr-hero-v2 .cr-hero-banner::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(19, 78, 74, 0.22) 100%);
}

/* Slot detail: hero v2 with teal-tinted banner (aligned with provider) */
.page-slot-detail .sv-slot-hero.cr-hero-v2 .cr-hero-banner {
  background: linear-gradient(125deg, #0f172a 0%, #134e4a 42%, #1e293b 100%);
}

.page-slot-detail .sv-slot-hero.cr-hero-v2 .cr-hero-banner::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(19, 78, 74, 0.22) 100%);
}

/* Hero + lede read as one panel: no gray #fafafa band (page bg) between them */
.page-slot-detail .sv-slot-hero.cr-hero-section.cr-hero-v2 {
  border-bottom: none;
  padding-bottom: 0;
}

/* Circular slot key art: cover the disc (no contain / white mat) */
.page-slot-detail .sv-slot-hero-logo {
  background: #0f172a;
}

.page-slot-detail .sv-slot-hero-logo .cr-hero-logo-v2__img {
  object-fit: cover;
  object-position: center 42%;
}

.page-slot-detail .pv-hero-lede-wrap {
  background: #fff;
  padding-top: clamp(12px, 2vw, 22px);
  padding-bottom: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(12px, 2vw, 24px);
}

.page-slot-detail .pv-hero-lede__text {
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-size: clamp(0.94rem, 1vw + 0.8rem, 1.06rem);
  line-height: 1.62;
  color: #334155;
  max-width: min(52rem, 100%);
  margin: 0 0 clamp(22px, 2.8vw, 32px);
}

.page-slot-detail .pv-hero-lede__text[hidden] {
  display: none !important;
}

.page-slot-detail .pv-hero-lede__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-bottom: clamp(8px, 1.2vw, 14px);
}

.page-slot-detail .ph-btn-site {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
}

.page-slot-detail .sv-hero-compliance {
  margin: 0 0 clamp(12px, 1.5vw, 18px);
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.page-slot-detail .sv-hero-responsible {
  margin: clamp(10px, 1.2vw, 16px) 0 0;
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 42rem;
  line-height: 1.55;
}

.page-provider-detail .pv-provider-hero .pv-hero-logo--dark-mat {
  background: #0f172a;
}

.page-provider-detail .pv-provider-hero .pv-hero-logo--dark-mat .cr-hero-logo-v2__img {
  object-fit: contain;
  padding: clamp(14px, 2.5vw, 22px);
}

.page-provider-detail .pv-hero-lede-wrap {
  padding-top: clamp(8px, 1.2vw, 16px);
  padding-bottom: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(12px, 2vw, 24px);
}

.page-provider-detail .pv-hero-lede__text {
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-size: clamp(0.94rem, 1vw + 0.8rem, 1.06rem);
  line-height: 1.62;
  color: #334155;
  max-width: min(52rem, 100%);
  margin: 0 0 clamp(22px, 2.8vw, 32px);
}

.page-provider-detail .pv-hero-lede__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-bottom: clamp(8px, 1.2vw, 14px);
}

.page-provider-detail .pv-hero-lede__actions[hidden],
.page-provider-detail .pv-hero-lede__text[hidden] {
  display: none !important;
}

.cr-hero-grid {
  display: grid;
  grid-template-columns: minmax(140px, 176px) minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
}

/* Logo-only hero: no left column - logo sits inline on the heading */
.cr-hero-grid--no-media {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
}

/* Hero media (left) */
.cr-hero-media {
  justify-self: center;
}

.cr-hero-frame {
  width: 168px;
  height: 168px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 28px rgba(15, 23, 42, 0.08);
}

.cr-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(160deg, #eef2f7, #cbd5e1);
}

.cr-hero-visual--logo .cr-hero-frame {
  background: linear-gradient(168deg, #f8fafc, #e8edf4 40%);
}

.cr-hero-visual--logo .cr-hero-img {
  object-fit: contain;
  padding: 28px;
  background: transparent;
}

/* Hero body (center) */
.cr-hero-body {
  min-width: 0;
}

.cr-hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.cr-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(45, 212, 191, 0.45);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.cr-status-tag i {
  width: 12px;
  height: 12px;
}

.cr-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  line-height: 1.08;
  color: #020617;
  margin: 0 0 6px;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.cr-heading.cr-heading--with-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cr-heading-logo-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  padding: 6px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 4px 16px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-heading-logo-wrap[hidden] {
  display: none !important;
}

.cr-heading-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cr-slogan {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 500;
  color: #64748b;
  margin: 0 0 10px;
  line-height: 1.45;
}

.cr-slogan:empty {
  display: none;
}

.cr-excerpt {
  font-size: 0.93rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin: 0 0 18px;
  max-width: 52ch;
}

/* Single primary CTA + terms as text link */
.cr-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding-top: 4px;
}

.cr-btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, var(--primary) 50%, #14b8a6 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(13, 148, 136, 0.35), 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  text-decoration: none;
}

.cr-btn-visit i {
  width: 16px;
  height: 16px;
}

.cr-btn-visit:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.4), 0 2px 8px rgba(15, 23, 42, 0.08);
}

.cr-btn-visit--sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.cr-terms-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.cr-terms-link i {
  width: 13px;
  height: 13px;
}

.cr-terms-link:hover {
  color: var(--primary);
  border-bottom-color: rgba(51, 190, 179, 0.35);
}

/* Hero sidebar (right): score + bonus card */
.cr-hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-self: stretch;
}

/* Curator score - pill card, thin teal ring, centered figure + /5 (reference) */
.cr-score-card {
  --cr-ring-teal: #40b3a2;
  --cr-ring-track: #eef2f7;
  background: #fff;
  border: none;
  border-radius: 40px;
  padding: 28px 24px 26px;
  text-align: center;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.02),
    0 22px 48px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(226, 232, 240, 0.65);
}

.cr-score-ring {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 14px;
}

.cr-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.cr-ring-track {
  fill: none;
  stroke: var(--cr-ring-track);
  stroke-width: 4;
}

.cr-ring-fill {
  fill: none;
  stroke: var(--cr-ring-teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Score: "4.7" + "/5" inline, centered inside the ring (baseline-aligned) */
.cr-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  pointer-events: none;
}

.cr-score-main {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  max-width: 100%;
}

.cr-score-val {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: #020617;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cr-score-max {
  font-size: 1.05rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
  line-height: 1;
}

.cr-score-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #1e3a5f;
  margin: 0;
}

.cr-score-card .cr-stars {
  justify-content: center;
  display: flex;
  gap: 4px;
  min-height: 1.2em;
  margin: 0 auto 16px;
}

.cr-score-card .cr-stars .stars-meter--units {
  font-size: 1.05rem;
  gap: 0.12em;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4));
}

.cr-score-card .star-unit__fill {
  color: #fbbf24;
}

.cr-score-card .star-unit__track {
  color: #e5e7eb;
}

/* ---- Sticky section navigation ---- */
.cr-section-nav {
  position: sticky;
  top: var(--cr-header-height, 64px);
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.cr-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cr-nav-links::-webkit-scrollbar {
  display: none;
}

.cr-nav-links a {
  display: block;
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.cr-nav-links a:hover {
  color: #020617;
}

.cr-nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Reviews follows Verdict in nav - light separator */
#cr-nav-verdict+li#cr-nav-reviews>a {
  margin-left: 4px;
  padding-left: 22px;
}

/* ---- Quick-facts info panel ---- */
.cr-info-section {
  padding: 48px 0 40px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.cr-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.cr-section-heading i {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.cr-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.cr-info-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  gap: 0 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
  transition: background 0.2s;
}

.cr-info-item:hover {
  background: #f8fafc;
}

.cr-info-icon {
  grid-row: 1 / -1;
  align-self: center;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdfa;
  color: var(--primary);
  border-radius: 8px;
}

.cr-info-icon i {
  width: 18px;
  height: 18px;
}

.cr-info-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  line-height: 1.3;
  align-self: end;
}

.cr-info-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  align-self: start;
  margin-top: 2px;
}

.cr-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cr-info-chips .tier-payment-chip {
  font-size: 0.65rem;
  padding: 2px 7px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.cr-info-chips .tier-payment-chip i {
  width: 11px;
  height: 11px;
}

/* Section shared */
.cr-section-dek {
  max-width: 600px;
  margin: -16px 0 32px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Analysis cards ---- */
.cr-analysis-section {
  padding: 56px 0 48px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.cr-analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.cr-ac-card {
  position: relative;
  background: #fff;
  padding: 24px 20px 20px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.cr-ac-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #22d3ee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-out;
}

.cr-ac-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cr-ac-card:hover::after {
  transform: scaleX(1);
}

.cr-ac-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.cr-ac-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdfa;
  color: var(--primary);
  border-radius: var(--radius-sm);
}

.cr-ac-icon i {
  width: 18px;
  height: 18px;
}

.cr-ac-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: #020617;
  line-height: 1;
}

.cr-ac-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0f172a;
}

.cr-ac-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---- Gallery ---- */
.cr-gallery-section {
  padding: 56px 0 56px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.cr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.cr-gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cr-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cr-gallery-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #e2e8f0;
  transition: transform 0.25s ease-out;
}

.cr-gallery-item:hover .cr-gallery-img {
  transform: scale(1.04);
}

/* ---- Inline ad banner (review page) - edge-to-edge image only; swap src for your creative ---- */
.cr-ad-banner-wrap {
  position: relative;
  z-index: 8;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  line-height: 0;
  border-bottom: 1px solid var(--border);
  background: #e2e8f0;
}

.cr-ad-banner__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: cover;
  object-position: center;
}

/* ---- Article / verdict (structured layout) ---- */
.cr-verdict-article {
  padding: 48px 0 72px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #fff 100%);
}


.cr-article-layout {
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Verdict: main column + sticky bonus (wider than single-column article) */
.cr-article-layout.cr-article-layout--verdict-split {
  max-width: var(--container-max-width);
}

.cr-verdict-shell {
  display: flow-root;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.03), 0 24px 48px rgba(15, 23, 42, 0.06);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 36px) clamp(28px, 4vw, 44px);
}

.cr-verdict-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 36px);
  padding-bottom: 28px;
  border-bottom: 1px solid #f1f5f9;
}

.cr-verdict-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.cr-verdict-kicker i {
  width: 16px;
  height: 16px;
}

.cr-verdict-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  line-height: 1.15;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  color: #020617;
  letter-spacing: -0.03em;
}

.cr-verdict-sub {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 400;
}

.cr-verdict-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 36px);
}

/* Verdict two-column: aside floats right, shell forms a BFC beside it.
   Row uses clearfix (not overflow:hidden) so sticky works on the aside. */
.cr-verdict-row::after {
  content: '';
  display: table;
  clear: both;
}

.cr-verdict-row>.cr-verdict-bonus-sidebar {
  float: right;
  width: 280px;
  margin-left: 28px;
  margin-bottom: 20px;
  position: sticky;
  /* Must clear both the site header (~64px) AND the sticky section nav (~48px) */
  top: calc(var(--cr-header-height, 64px) + 48px + 12px);
}

.cr-verdict-row>.cr-verdict-bonus-sidebar[hidden] {
  display: none !important;
}

.cr-verdict-row>.cr-verdict-shell {
  overflow: hidden;
  /* BFC: sits beside the float, never overlaps */
}

/* Casino review: verdict + player reviews share one float row; BFC wraps both columns */
.cr-verdict-row>.cr-review-page__main {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
  min-width: 0;
}

.cr-review-page-combined {
  border-bottom: 1px solid #f1f5f9;
}

.cr-review-page-combined .pr-section {
  padding: 0;
  background: transparent;
  border-bottom: none;
}

@media (max-width: 899px) {
  .cr-verdict-row>.cr-verdict-bonus-sidebar {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 24px;
    position: static;
  }

  /* Align bonus card with centered verdict header (stacked layout). */
  .cr-verdict-bonus-sidebar__inner {
    text-align: center;
    padding: 24px 22px;
  }

  .cr-verdict-bonus-sidebar__brand {
    justify-content: center;
    margin-bottom: 12px;
  }

  .cr-verdict-bonus-sidebar__label,
  .cr-verdict-bonus-sidebar__amount {
    text-align: center;
  }

  .cr-verdict-bonus-sidebar__terms {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 38ch;
  }

  .cr-verdict-bonus-sidebar__logo-wrap {
    width: 58px;
    height: 58px;
  }

  .cr-verdict-bonus-sidebar__name {
    font-size: clamp(1.42rem, 4.2vw, 1.6rem);
  }
}

.cr-verdict-bonus-sidebar__inner {
  background: #fff;
  border: 1px solid rgba(38, 166, 154, 0.28);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
}

.cr-verdict-bonus-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  min-width: 0;
}

.cr-verdict-bonus-sidebar__logo-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.cr-verdict-bonus-sidebar__logo-wrap[hidden] {
  display: none !important;
}

.cr-verdict-bonus-sidebar__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cr-verdict-bonus-sidebar__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #020617;
  margin: 0;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.cr-verdict-bonus-sidebar__name:empty {
  display: none;
}

.cr-verdict-bonus-sidebar__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.cr-verdict-bonus-sidebar__label:empty {
  display: none;
}

.cr-verdict-bonus-sidebar__amount {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 12px;
  line-height: 1.35;
}

.cr-verdict-bonus-sidebar__amount:empty {
  display: none;
}

.cr-verdict-bonus-sidebar__terms {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0 0 16px;
}

.cr-verdict-bonus-sidebar__terms:empty {
  display: none;
}

.cr-verdict-bonus-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  border-radius: 999px;
}

.cr-verdict-panel {
  margin: 0;
}

.cr-verdict-panel-h {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 14px;
}

.cr-verdict-panel--main .cr-verdict-panel-h {
  color: #0f172a;
  border-left: 3px solid var(--primary);
  padding-left: 12px;
  margin-bottom: 16px;
}

.cr-verdict-panel--secondary {
  padding-top: 8px;
  border-top: 1px dashed #e2e8f0;
  margin-top: 4px;
}

.cr-verdict-shell--secondary-only .cr-verdict-panel--secondary {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.cr-at-a-glance-section {
  padding: clamp(28px, 5vw, 52px) 0 clamp(36px, 6vw, 64px);
  margin: 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

/* Full width of site .container (wider than the verdict column below) */
.cr-at-a-glance-section .cr-pros-cons {
  max-width: none;
  width: 100%;
}

#cr-verdict-secondary-wrap {
  margin-top: clamp(8px, 2vw, 24px);
}

.cr-verdict-panel--secondary .cr-verdict-panel-h {
  color: #475569;
}

/* Optional drop cap on first paragraph of main review */
@media (min-width: 480px) {
  .cr-verdict-panel--main .rich-text-body>p:first-of-type {
    overflow: visible;
  }

  .cr-verdict-panel--main .rich-text-body>p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-serif);
    font-size: 3.1rem;
    line-height: 0.85;
    font-weight: 700;
    color: #0f172a;
    margin-right: 10px;
    margin-top: 4px;
  }
}

/* Pros / Cons - “At a glance” band */
.cr-pros-cons {
  margin: 0;
  padding: 20px 18px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #f8fafc 0%, #fff 60%);
  border: 1px solid #e2e8f0;
}

.cr-pros-cons-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
}

.cr-pros-cons-label i {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

.cr-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cr-pc-col {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.cr-pc-pros {
  background: linear-gradient(168deg, rgba(240, 253, 250, 0.95), #fff 55%);
  border-color: rgba(45, 212, 191, 0.35);
}

.cr-pc-cons {
  background: linear-gradient(168deg, rgba(255, 241, 242, 0.9), #fff 55%);
  border-color: rgba(244, 63, 94, 0.25);
}

.cr-pc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cr-pc-header :is(i, svg) {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Highlights: green icon accents (Lucide renders <svg>) */
.cr-pc-pros .cr-pc-header :is(i, svg) {
  color: #059669;
}

/* Room for growth: red icon accents */
.cr-pc-cons .cr-pc-header :is(i, svg) {
  color: #dc2626;
}

.cr-pc-heading {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
}

.cr-pc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cr-pc-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.52;
  margin-bottom: 10px;
  color: var(--text-main);
}

.cr-pc-list li:last-child {
  margin-bottom: 0;
}

.cr-pc-list li :is(i, svg) {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cr-pc-pros .cr-pc-list :is(i, svg) {
  color: #059669;
}

.cr-pc-cons .cr-pc-list :is(i, svg) {
  color: #dc2626;
}

/* Trust */
.cr-trust-section {
  padding: 28px 16px 44px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.cr-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  max-width: 960px;
  margin: 0 auto;
}

.cr-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cr-trust-item i {
  width: 20px;
  height: 20px;
  color: #94a3b8;
}

/* Error */
.cr-error-state {
  text-align: center;
  padding: 100px 16px 120px;
}

.cr-error-icon {
  margin-bottom: 20px;
}

.cr-error-icon i {
  width: 48px;
  height: 48px;
  color: #cbd5e1;
}

.cr-error-title {
  font-family: var(--font-serif);
  margin-bottom: 12px;
  color: #020617;
  font-size: 1.75rem;
}

.cr-error-text {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Rich text (casino verdict) */
.cr-verdict-shell .rich-text-body {
  display: flow-root;
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--text-main);
}

.cr-verdict-panel--secondary .rich-text-body {
  font-size: 1.02rem;
  line-height: 1.78;
}

.cr-article .rich-text-body>*:first-child {
  margin-top: 0;
}

.cr-article .rich-text-body p {
  margin: 0 0 1.15em;
}

.cr-article .rich-text-body p:last-child {
  margin-bottom: 0;
}

.cr-article .rich-text-body h2,
.cr-article .rich-text-body h3,
.cr-article .rich-text-body h4 {
  font-family: var(--font-serif);
  color: #020617;
  margin: 1.65em 0 0.65em;
  line-height: 1.28;
  font-weight: 600;
}

.cr-article .rich-text-body h2:first-child,
.cr-article .rich-text-body h3:first-child {
  margin-top: 0;
}

.cr-article .rich-text-body h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
}

.cr-article .rich-text-body h3 {
  font-size: 1.08rem;
}

.cr-article .rich-text-body ul,
.cr-article .rich-text-body ol {
  margin: 0 0 1.15em;
  padding-left: 1.35em;
}

.cr-article .rich-text-body li {
  margin-bottom: 0.45em;
}

.cr-article .rich-text-body li::marker {
  color: #94a3b8;
}

.cr-article .rich-text-body blockquote {
  margin: 1.25em 0;
  padding: 1rem 1.1rem 1rem 1.15rem;
  border-left: 4px solid var(--primary);
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.08), rgba(248, 250, 252, 0.9));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: #475569;
}

.cr-article .rich-text-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cr-article .rich-text-body a:hover {
  color: #0d9488;
}

.cr-article .rich-text-body pre {
  overflow-x: auto;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.88em;
  line-height: 1.55;
}

.cr-article .rich-text-body .rich-text-figure {
  margin: 1.35em 0;
}

.cr-article .rich-text-body .rich-text-figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.cr-article .rich-text-body strong {
  font-weight: 600;
  color: #0f172a;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .cr-hero-grid {
    grid-template-columns: 140px 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }

  /* Logo-inline hero: keep branding + curator score side-by-side (not stacked). */
  .cr-hero-grid--no-media {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
    grid-template-rows: auto;
    align-items: start;
  }

  .cr-hero-sidebar {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .cr-hero-grid--no-media .cr-hero-sidebar {
    grid-column: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-self: stretch;
  }

  .cr-score-card {
    flex: 1;
    min-width: 200px;
  }

  .cr-hero-grid--no-media .cr-score-card {
    flex: none;
    min-width: 0;
    width: 100%;
  }

  .cr-hero-frame {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 700px) {
  .cr-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Stack hero + score below 700px (override 900px two-column logo layout). */
  .cr-hero-grid--no-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .cr-heading.cr-heading--with-logo {
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    font-size: clamp(2.15rem, 6.8vw, 2.85rem);
    line-height: 1.06;
  }

  .cr-heading.cr-heading--with-logo .cr-heading-logo-wrap {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    padding: 9px;
  }

  .cr-hero-media {
    justify-self: center;
  }

  .cr-hero-frame {
    width: 120px;
    height: 120px;
  }

  .cr-hero-status {
    justify-content: center;
  }

  .cr-hero-cta {
    justify-content: center;
  }

  .cr-excerpt {
    margin-left: auto;
    margin-right: auto;
  }

  .cr-hero-sidebar {
    flex-direction: column;
    align-items: center;
  }

  /* Override 900px `.cr-hero-grid--no-media .cr-hero-sidebar { align-items: stretch }` so the score card centers. */
  .cr-hero-grid--no-media .cr-hero-sidebar {
    align-items: center;
    justify-content: flex-start;
  }

  .cr-score-card {
    max-width: 300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .cr-hero-grid--no-media .cr-score-card {
    flex: none;
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .cr-pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .cr-info-grid {
    grid-template-columns: 1fr;
  }

  .cr-nav-links a {
    padding: 12px 16px;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .cr-analysis-grid {
    grid-template-columns: 1fr;
  }

  .cr-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ========================================= */
/* Bonuses Page specific */
/* ========================================= */
.bonuses-page {
  background: #fafafa;
}

.bonuses-breadcrumb {
  padding-top: 18px;
  padding-bottom: 16px;
  padding-left: max(28px, env(safe-area-inset-left, 0px));
  padding-right: max(28px, env(safe-area-inset-right, 0px));
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-light);
}

.bonuses-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #94a3b8;
}

.bonuses-breadcrumb__list li+li::before {
  content: '/';
  margin-right: 6px;
  color: #cbd5e1;
}

.bonuses-breadcrumb__list a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.bonuses-breadcrumb__list a:hover {
  color: var(--primary);
}

.bonuses-breadcrumb__list [aria-current='page'] {
  color: #020617;
}

/* Bonuses Hero */
.bonuses-hero {
  padding: clamp(56px, 8vw, 96px) max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
  padding-bottom: clamp(72px, 9vw, 104px);
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.bh-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: min(42rem, 100%);
}

.bh-kicker {
  margin: 0 0 clamp(14px, 2vw, 20px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  line-height: 1.25;
}

.bh-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-family: var(--font-serif);
  line-height: 1.05;
  margin-bottom: clamp(20px, 3vw, 32px);
  color: #020617;
}

.bh-title em {
  font-style: italic;
  color: var(--primary);
  display: block;
}

.bh-desc {
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.15rem);
  color: var(--text-muted);
  margin-bottom: clamp(28px, 4vw, 40px);
  line-height: 1.75;
  max-width: 42rem;
}

.bh-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bh-badges .badge {
  margin-bottom: 0;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.bh-badges i {
  width: 14px;
  height: 14px;
  color: #475569;
}

.bh-visual {
  flex: 1.2;
  position: relative;
  min-width: 0;
}

/* Gradient hero panel (replaces stock photo: no logo contrast issues, faster load) */
.bh-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.08),
    0 24px 48px -12px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bh-panel__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 12% 18%, rgba(251, 146, 60, 0.92) 0%, transparent 58%),
    radial-gradient(ellipse 75% 55% at 88% 22%, rgba(244, 114, 182, 0.78) 0%, transparent 52%),
    radial-gradient(ellipse 100% 80% at 50% 95%, rgba(56, 189, 248, 0.45) 0%, transparent 55%),
    linear-gradient(145deg, #1e1b4b 0%, #3730a3 38%, #0f172a 100%);
}

.bh-panel__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 42%,
      transparent 58%,
      rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
}

.bh-score-float {
  position: absolute;
  bottom: -20px;
  left: 28px;
  max-width: calc(100% - 56px);
  background: #ffffff;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.95);
  z-index: 5;
}

.bh-score-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: #d4af37;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.bh-score-val .small-text {
  font-size: 1.25rem;
  color: #94a3b8;
}

.bh-score-label {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* Filter Bar */
.bonuses-filter-bar {
  padding: clamp(20px, 3vw, 28px) 0 clamp(20px, 3vw, 28px);
  margin-bottom: clamp(20px, 3vw, 36px);
  background: transparent;
  border: none;
}

.bonuses-filter-bar .fb-inner {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px -12px rgba(15, 23, 42, 0.08);
}

.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 28px;
  flex-wrap: wrap;
}

.fb-lead {
  flex: 1 1 100%;
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: none;
}

.fb-sort-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.fb-sort-label i {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  flex-shrink: 0;
}

.fb-sort-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

.fb-sort-select {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 28px 8px 12px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.fb-sort-select:hover {
  border-color: #cbd5e1;
}

.fb-sort-select:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.fb-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fb-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: white;
  border: 1px solid var(--border-light);
  transition: all 0.2s;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.fb-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.fb-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.fb-sort-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  background: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.fb-sort-btn i {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.fb-sort-btn:hover {
  border-color: #cbd5e1;
}

/* Bonuses Grid */
.bonuses-directory-header {
  margin-bottom: clamp(22px, 3.5vw, 36px);
  max-width: none;
}

.bonuses-directory-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 clamp(14px, 2vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bonuses-directory-dek {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: none;
}

.bonuses-grid-section {
  padding-bottom: clamp(88px, 12vw, 128px);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(24px, 3vw, 32px);
}

.bonuses-grid-loading,
.bonuses-grid-empty,
.bonuses-grid-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.bonuses-grid-loading,
.bonuses-grid-empty {
  color: #64748b;
}

.bonuses-grid-error {
  color: #b91c1c;
}

.bonuses-grid-error code {
  font-size: 0.85em;
  padding: 2px 6px;
  background: #fef2f2;
  border-radius: 4px;
}

.page-bonuses .bonuses-seo {
  padding: clamp(64px, 9vw, 120px) 0;
}

.page-bonuses .bonuses-seo__header {
  margin-bottom: 0;
}

.page-bonuses .bonuses-seo__header h2 {
  margin-bottom: clamp(1.1rem, 2vw, 1.5rem);
  position: relative;
  padding-top: 0.35rem;
}

.page-bonuses .bonuses-seo__header h2::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

.page-bonuses .bonuses-seo__intro p {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-bonuses .bonuses-seo__intro p:last-child {
  margin-bottom: 0;
}

.page-bonuses .bonuses-seo__intro a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-bonuses .bonuses-seo__intro a:hover {
  color: #1e3a5f;
}

.page-bonuses .bonuses-faq.seo-accordion {
  padding: clamp(72px, 10vw, 120px) 0;
}

.page-bonuses .bonuses-faq .section-header.center {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.page-bonuses .bonuses-faq .section-header.center p {
  max-width: min(52rem, 100%);
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-bonuses .accordion.accordion--two-cols {
  gap: 20px clamp(24px, 3vw, 40px);
}

.bonus-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px -8px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 20px 40px -16px rgba(15, 23, 42, 0.12);
  border-color: #cbd5e1;
}

/* Top: promo code + info */
.bc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
}

.bc-code {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
  text-align: left;
  line-height: 1.3;
}

.bc-info {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}

.bc-info:hover {
  background: #e2e8f0;
  color: var(--primary);
}

.bc-info--muted {
  opacity: 0.45;
  pointer-events: none;
}

.bc-info :is(svg, i) {
  width: 16px !important;
  height: 16px !important;
  display: block;
}

/* Circular brand mark */
.bc-logo-zone {
  position: relative;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.bc-logo-mat {
  width: 112px;
  height: 112px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-logo-img {
  width: 100%;
  height: 100%;
  display: block;
}

.bc-logo-img--contain {
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
}

.bc-logo-img--cover {
  object-fit: cover;
}

.bc-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.bc-chip {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--text-muted);
}

.bc-chip--hot {
  color: var(--danger);
  border-color: rgba(225, 29, 72, 0.25);
  background: #fff1f2;
}

.bc-chip--exc {
  color: #0f172a;
  border-color: #e2e8f0;
  background: #f8fafc;
}

.bc-chip--new {
  color: var(--primary);
  border-color: rgba(51, 190, 179, 0.35);
  background: rgba(51, 190, 179, 0.08);
}

/* Trust strip (site voice, not third-party) */
.bc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 100%);
  border-top: 1px solid rgba(51, 190, 179, 0.28);
  border-bottom: 1px solid var(--border-light);
  color: #0f172a;
}

.bc-trust i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
}

.bc-trust-text {
  font-size: 0.72rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  color: #334155;
}

.bc-content {
  padding: clamp(22px, 4vw, 28px) 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  gap: 0;
  text-align: center;
}

.bc-amount {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.bc-title {
  font-size: 1.125rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: #020617;
  line-height: 1.32;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.bc-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bc-title a:hover {
  color: var(--primary);
}

.bc-type {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.bc-meta {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  padding: 11px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
}

/* Vertical rhythm inside content: value stack + meta + CTA block */
.bc-content > .bc-amount {
  margin-bottom: 10px;
}

.bc-content > .bc-title {
  margin-bottom: 8px;
}

.bc-content > .bc-type {
  margin-bottom: 14px;
}

.bc-content > .bc-meta {
  margin-bottom: 18px;
}

.bc-content > .bc-cta {
  margin-bottom: 0;
}

.bc-cta {
  margin-top: auto;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: var(--radius-sm);
}

.bc-terms-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s, text-decoration 0.2s;
}

.bc-terms-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Bonus detail (bonus.html) */
.page-bonus-detail {
  background-color: #f8fafc;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(51, 190, 179, 0.08), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(148, 163, 184, 0.06), transparent 40%);
}

.bonus-detail-page {
  padding-bottom: 88px;
}

.bonus-detail-error {
  padding: 100px 24px 120px;
  text-align: center;
}

.bonus-detail-error__text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.bonus-detail-error__hint {
  font-size: 0.9375rem;
  margin: 0 0 20px;
  color: var(--text-muted);
}

.bonus-detail-error__hint a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.bonus-detail-error__hint a:hover {
  color: #1e3a5f;
}

.bd-breadcrumb {
  padding: 14px 0 12px;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-light);
}

.bd-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #94a3b8;
}

.bd-breadcrumb__list li+li::before {
  content: '/';
  margin-right: 6px;
  color: #cbd5e1;
}

.bd-breadcrumb__list a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.bd-breadcrumb__list a:hover {
  color: var(--primary);
}

.bd-breadcrumb__list [aria-current='page'] {
  color: #020617;
}

.bd-hero {
  position: relative;
  padding: clamp(32px, 5vw, 56px) 0 clamp(40px, 6vw, 64px);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.bd-hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d9488 0%, var(--primary) 35%, #22d3ee 70%, var(--primary) 100%);
  opacity: 0.92;
}

.bd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
}

.bd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.bd-hero-visual {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.bd-hero-frame {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(15, 23, 42, 0.08);
  aspect-ratio: 1 / 1;
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.bd-hero-frame:hover {
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.06),
    0 20px 50px rgba(15, 23, 42, 0.1);
}

.bd-hero-frame--logo {
  background: #ffffff;
}

/* Promo / cover art: wider frame */
.bd-hero-frame--cover {
  max-width: 420px;
  aspect-ratio: 4 / 3;
}

.bd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bd-hero-img--logo {
  object-fit: contain;
  padding: clamp(20px, 4vw, 36px);
  box-sizing: border-box;
}

.bd-hero-body {
  min-width: 0;
}

@media (min-width: 901px) {
  .bd-hero-body {
    padding-left: 28px;
    border-left: 3px solid rgba(51, 190, 179, 0.35);
  }
}

.bd-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.bd-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #64748b;
}

.bd-type-pill {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(51, 190, 179, 0.18) 0%, rgba(51, 190, 179, 0.1) 100%);
  color: #0d9488;
  border: 1px solid rgba(51, 190, 179, 0.4);
  box-shadow: 0 1px 2px rgba(51, 190, 179, 0.15);
}

.bonus-detail-page .bd-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  color: #020617;
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.bd-amount-line {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.bd-amount-line:empty {
  display: none;
}

.bd-dates {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}

.bd-desc-wrap {
  margin-bottom: 28px;
}

.bd-desc {
  font-size: 1.02rem;
  line-height: 1.72;
  color: #475569;
  margin: 0;
  max-width: 38rem;
}

.bd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 0;
}

.bonus-detail-page .bd-actions .btn {
  min-height: 48px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.bonus-detail-page .bd-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(51, 190, 179, 0.35);
}

.bonus-detail-page .bd-btn-secondary {
  border-width: 2px;
  border-color: #e2e8f0;
  background: #ffffff;
  color: #0f172a;
}

.bonus-detail-page .bd-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(51, 190, 179, 0.06);
  transform: translateY(-2px);
}

.bd-compliance {
  font-size: 0.72rem;
  font-weight: 500;
  color: #94a3b8;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
  line-height: 1.5;
  max-width: 38rem;
}

.bd-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.bd-section-head {
  margin-bottom: 24px;
  max-width: 42rem;
}

.bd-section-head .bd-section-title {
  margin-bottom: 10px;
}

.bd-section-head .bd-section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), #22d3ee);
}

.bd-section-dek {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.bd-section-head .bd-section-dek {
  margin-top: 0.65rem;
}

.bd-code-section {
  margin-bottom: 22px;
}

.bd-keyfacts--panel .bd-code-card.bd-code-card--panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  max-width: none;
  margin: 0;
  padding: 16px 20px;
  text-align: left;
  background: linear-gradient(90deg, rgba(51, 190, 179, 0.08) 0%, #f8fafc 42%, #ffffff 100%);
  border: 1px solid #e2e8f0;
  border-left: 3px solid rgba(51, 190, 179, 0.75);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.bd-code-card__text {
  flex: 1;
  min-width: 0;
}

.bd-code-card--panel .bd-code-heading {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin: 0 0 6px;
}

.bd-code-card--panel .bd-code-value {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.bd-code-card--panel .bd-code-copy {
  flex-shrink: 0;
  min-height: 42px;
}

.bd-code-card {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(14, 165, 233, 0.38);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.bd-code-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.bd-code-value {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0d9488;
  margin: 0 0 16px;
  word-break: break-word;
}

.bd-code-value.bd-code-value--muted {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-size: 1rem;
}

.bd-code-copy {
  min-height: 44px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .bd-keyfacts--panel .bd-code-card.bd-code-card--panel {
    flex-direction: column;
    align-items: stretch;
  }

  .bd-keyfacts--panel .bd-code-card--panel .bd-code-copy {
    width: 100%;
  }
}

.bd-keyfacts {
  padding-bottom: 48px;
}

.bd-keyfacts--panel {
  padding: 28px 24px 40px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  border-top: 3px solid rgba(51, 190, 179, 0.45);
  box-shadow:
    var(--shadow-sm),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.bd-facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.bd-fact {
  margin: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fafbfc 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bd-fact:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.bd-fact dt {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #94a3b8;
  margin-bottom: 8px;
}

.bd-fact dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
}

.bd-terms-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.bd-terms-section-head {
  margin-bottom: 44px;
}

.bd-terms-section .bd-section-head .bd-section-title {
  margin-bottom: 12px;
}

.bd-terms-section .bd-section-head .bd-section-dek {
  margin-top: 0.85rem;
  max-width: 36rem;
}

.bd-terms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 36px 44px;
  align-items: start;
}

.bd-terms-main {
  min-width: 0;
}

.bd-terms-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Sticky the whole column so inner cards never overlap each other while scrolling */
  position: sticky;
  top: calc(var(--sticky-header-offset) + 0.75rem);
  align-self: start;
  z-index: 1;
}

.bd-sidebar-card {
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.bd-sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #020617;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.bd-sidebar-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.bd-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bd-sidebar-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 46px;
}

.bd-sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bd-sidebar-links li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #f1f5f9;
}

.bd-sidebar-links li:last-child {
  border-bottom: 0;
}

.bd-sidebar-links a {
  display: block;
  padding: 12px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.bd-sidebar-links a:hover {
  color: var(--primary);
}

.bd-sidebar-card--hint {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-style: dashed;
}

.bd-sidebar-hint {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

.bd-terms-main .bd-terms-prose.cr-article {
  max-width: none;
}

.bd-terms-prose.cr-article {
  max-width: 900px;
  margin-top: 0;
  padding: 40px 40px 44px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.bd-terms-prose.cr-article .rich-text-body,
.bd-terms-prose.cr-article .bonus-terms-md {
  font-size: 1.02rem;
  line-height: 1.75;
}

.bd-terms-prose.cr-article .rich-text-body p {
  margin: 0 0 1.3em;
}

.bd-terms-prose.cr-article .rich-text-body h2,
.bd-terms-prose.cr-article .rich-text-body h3 {
  font-family: var(--font-serif);
  margin-top: 1.85em;
  margin-bottom: 0.85em;
}

.bd-terms-prose.cr-article .rich-text-body h2:first-child,
.bd-terms-prose.cr-article .rich-text-body h3:first-child {
  margin-top: 0;
}

.bd-terms-prose.cr-article .rich-text-body ul,
.bd-terms-prose.cr-article .rich-text-body ol {
  margin: 0 0 1.35em;
  padding-left: 1.5em;
}

.bd-terms-prose.cr-article .rich-text-body li {
  margin-bottom: 0.65em;
  line-height: 1.65;
}

.bd-terms-prose.cr-article .rich-text-body li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .bd-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bd-hero-body {
    text-align: center;
    padding-left: 0;
    border-left: none;
  }

  .bd-meta-row {
    justify-content: center;
  }

  .bd-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .bd-actions {
    justify-content: center;
  }

  .bd-compliance {
    margin-left: auto;
    margin-right: auto;
  }

  .bd-section-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .bd-section-head .bd-section-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .bd-hero-frame {
    max-width: 260px;
  }

  .bd-hero-frame--cover {
    max-width: 100%;
  }

  .bd-terms-prose.cr-article {
    padding: 28px 22px 36px;
  }

  .bd-terms-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bd-terms-section {
    padding-top: 48px;
  }
}

/* Newsletter Section */
.newsletter-section {
  padding: 0 32px 100px;
}

.nl-box {
  background: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.nl-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  width: 300px;
  height: 300px;
  color: white;
  opacity: 0.5;
  stroke-width: 1px;
}

.nl-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.nl-content h2 {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  margin-bottom: 16px;
  color: #0f172a;
}

.nl-content p {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 32px;
  line-height: 1.6;
}

.nl-form {
  display: flex;
  gap: 16px;
}

.nl-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-sans);
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: box-shadow 0.2s;
}

.nl-form input:focus {
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
}

.nl-form button {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .bonuses-hero {
    flex-direction: column;
    text-align: center;
    gap: clamp(40px, 6vw, 56px);
  }

  .bh-content {
    max-width: min(42rem, 100%);
    margin: 0 auto;
  }

  .bh-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .bh-visual {
    max-width: 700px;
    width: 100%;
  }

  .bh-badges {
    justify-content: center;
  }

  .bh-score-float {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }

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

  .fb-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .bonuses-filter-bar .fb-sort {
    width: 100%;
  }

  .bonuses-filter-bar .fb-sort-field {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .bonuses-filter-bar .fb-sort-select {
    flex: 1 1 auto;
    min-width: 0;
  }

  .fb-sort-label {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .bonuses-breadcrumb {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .bonuses-hero {
    padding-bottom: clamp(72px, 18vw, 96px);
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .bonuses-filter-bar .fb-inner {
    padding: 20px 16px 18px;
    border-radius: 14px;
  }

  .fb-tabs {
    justify-content: center;
  }

  .bonuses-grid {
    grid-template-columns: 1fr;
  }

  .bonuses-grid-loading,
  .bonuses-grid-empty,
  .bonuses-grid-error {
    padding: 56px 20px;
  }

  .nl-form {
    flex-direction: column;
  }

  .nl-watermark {
    display: none;
  }

  .nl-box {
    padding: 40px 24px;
    text-align: center;
  }
}

/* ========================================= */
/* Providers Page specific */
/* ========================================= */
.providers-page {
  background: #fafafa;
  padding-bottom: 120px;
}

/* Directory Hero - horizontal inset from `.container` only (max-width 1240px) */
.directory-hero {
  padding: 80px 0 40px;
}

/* Providers: single-column hero so count badge sits under copy (no empty half-page) */
.directory-hero--providers .dh-content {
  max-width: 44rem;
}

.directory-hero--providers .dh-hero-foot {
  margin: 16px 0 0;
}

.dh-badge--providers {
  background: linear-gradient(180deg, rgba(51, 190, 179, 0.14) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid rgba(51, 190, 179, 0.28);
  color: #0f172a;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dh-badge--providers i {
  color: var(--primary);
}

/* Providers listing: keep layout within the viewport (no horizontal scroll, scaled hero) */
.page-providers {
  overflow-x: clip;
}

.page-providers .providers-page {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.page-providers .directory-hero--providers {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(24px, 4vw, 36px);
  /* Match `.container` horizontal inset (do not use padding shorthand - it zeroed sides and overrode `.container`) */
  padding-left: max(20px, env(safe-area-inset-left, 20px));
  padding-right: max(20px, env(safe-area-inset-right, 20px));
  box-sizing: border-box;
}

.page-providers .directory-hero--providers .dh-content {
  max-width: min(44rem, 100%);
  min-width: 0;
}

.page-providers .directory-hero--providers__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 0.4fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.page-providers .directory-hero--providers .dh-copy {
  min-width: 0;
}

.page-providers .directory-hero--providers .dh-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(51, 190, 179, 0.1) 0%,
    rgba(248, 250, 252, 0.98) 42%,
    rgba(51, 190, 179, 0.07) 100%
  );
  border: 1px solid rgba(51, 190, 179, 0.22);
  box-shadow: 0 20px 44px -28px rgba(15, 23, 42, 0.22);
  aspect-ratio: 4 / 3;
  max-height: min(320px, 52vh);
}

.page-providers .directory-hero--providers .dh-media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(12px, 2.5vw, 22px);
  box-sizing: border-box;
}

.page-providers .directory-hero--providers .dh-label {
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
  margin-bottom: 14px;
}

.page-providers .directory-hero--providers .dh-title {
  font-size: clamp(1.4rem, 2.65vw + 0.55rem, 2.55rem);
  line-height: 1.11;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.page-providers .directory-hero--providers .dh-desc {
  font-size: clamp(0.875rem, 1.2vw + 0.3rem, 1.0625rem);
  line-height: 1.58;
  max-width: 100%;
}

.page-providers .directory-hero--providers .dh-desc + .dh-desc {
  margin-top: 0.875rem;
}

.page-providers .providers-listing-seo {
  max-width: min(52rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 900px) {
  .page-providers .directory-hero--providers__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-providers .directory-hero--providers .dh-copy {
    order: 0;
  }

  .page-providers .directory-hero--providers .dh-media {
    order: 1;
    max-height: min(240px, 42vw);
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .page-providers .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

.dh-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.dh-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.dh-content {
  flex: 1;
  max-width: 800px;
}

.dh-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1;
  margin-bottom: 20px;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.dh-desc {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.dh-stats {
  flex-shrink: 0;
  padding-bottom: 20px;
}

.dh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e5e7eb;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
}

.dh-badge i {
  width: 18px;
  height: 18px;
  color: #b45309;
}

/* Providers Filter Bar */
.providers-filter-bar {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.pfb-inner {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px 20px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.04);
}

.pfb-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 6px;
  flex: 1 1 260px;
  min-width: 0;
  padding: 6px;
  background: #f1f5f9;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.pfb-btn {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  color: var(--text-muted);
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  line-height: 1.25;
}

.pfb-btn:hover {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.55);
}

.pfb-btn:focus-visible {
  outline: 2px solid rgba(51, 190, 179, 0.5);
  outline-offset: 2px;
}

.pfb-btn.active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  font-weight: 700;
}

.pfb-btn.text-only {
  padding: 10px 0;
  background: transparent;
}

.pfb-btn.text-only:hover {
  color: #0f172a;
}

.pfb-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  flex: 1 1 200px;
  min-width: min(100%, 220px);
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.sort-label {
  flex-shrink: 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pfb-sort-select {
  appearance: none;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 10px 36px 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  max-width: 100%;
}

.pfb-sort-select:hover {
  border-color: rgba(51, 190, 179, 0.45);
}

.pfb-sort-select:focus {
  outline: 2px solid rgba(51, 190, 179, 0.45);
  outline-offset: 2px;
}

.pfb-sort-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary);
}

.pfb-sort-btn i {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

/* Providers Grid - same max-width as slots (`.container` horizontal padding preserved) */
.providers-grid-section {
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 72px);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 28px;
  margin-bottom: 28px;
}

.providers-pagination-wrap,
.guides-pagination-wrap {
  display: none;
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slots + providers + guides: pager card; “go to” hidden when few pages */
.listing-pager {
  flex-direction: column;
  margin-top: 28px;
  width: 100%;
  max-width: min(100%, 42rem);
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px rgba(15, 23, 42, 0.06);
}

.listing-pager.listing-pager--hide-goto {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
}

.listing-pager:not(.listing-pager--hide-goto) {
  align-items: center;
}

@media (min-width: 640px) {
  .listing-pager:not(.listing-pager--hide-goto) {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
  }

  .listing-pager:not(.listing-pager--hide-goto) .listing-pager__goto {
    padding-left: 18px;
    margin-left: 2px;
    border-left: 1px solid #e2e8f0;
  }
}

.listing-pager--hide-goto .listing-pager__goto {
  display: none;
}

.listing-pager__main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  width: 100%;
}

.listing-pager.listing-pager--hide-goto .listing-pager__main {
  width: auto;
  flex: 0 1 auto;
}

.listing-pager__numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: min(100%, 36rem);
  min-height: 44px;
}

.listing-pager__page {
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.listing-pager__page:hover:not(.is-active) {
  background: rgba(51, 190, 179, 0.18);
  border-color: rgba(51, 190, 179, 0.35);
  color: #0f766e;
}

.listing-pager__page.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  cursor: default;
}

.listing-pager__page:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.listing-pager__ellipsis {
  padding: 0 2px;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 700;
  user-select: none;
  align-self: center;
}

.listing-pager__goto {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  font-size: 0.875rem;
  color: #64748b;
}

.listing-pager__goto-label {
  font-weight: 600;
  color: #475569;
}

.listing-pager__goto-input {
  width: 4.25rem;
  padding: 8px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: center;
  color: #0f172a;
  background: #fff;
  -moz-appearance: textfield;
}

.listing-pager__goto-input::-webkit-outer-spin-button,
.listing-pager__goto-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.listing-pager__goto-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(51, 190, 179, 0.2);
}

.listing-pager__goto-total {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.listing-pager__goto-btn {
  padding: 7px 14px;
  border: 2px solid rgba(51, 190, 179, 0.55);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--primary);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.listing-pager__goto-btn:hover {
  background: rgba(51, 190, 179, 0.1);
  border-color: var(--primary);
}

.listing-pager__goto-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.listing-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.listing-pager__btn:hover:not(:disabled) {
  background: rgba(51, 190, 179, 0.18);
  color: #0f766e;
  transform: scale(1.04);
}

.listing-pager__btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.listing-pager__btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

.listing-pager__btn i,
.listing-pager__btn svg {
  width: 22px;
  height: 22px;
}

.listing-pager__btn--first svg,
.listing-pager__btn--last svg {
  width: 20px;
  height: 20px;
}

.provider-card {
  background: var(--bg-card);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.85);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.25s;
}

.provider-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.04),
    0 24px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(51, 190, 179, 0.28);
}

.pc-image-wrap {
  aspect-ratio: 16 / 9;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  /* Outer frame: slightly grey rail around the mat */
  background: #d8dee6;
  border-bottom: 1px solid var(--border-light);
}

/* Light grey mat: keeps dark logos readable without pure white */
.pc-image-wrap::before {
  content: '';
  position: absolute;
  inset: max(10px, 3%);
  background: #f1f5f9;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  z-index: 0;
}

/* White wordmarks (e.g. Red Tiger): dark mat. Set via .pc-image-wrap--mat-dark or Strapi LogoCardMat=dark */
.pc-image-wrap--mat-dark {
  background: #94a3b8;
  border-bottom-color: #64748b;
}

.pc-image-wrap--mat-dark::before {
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  border-color: #334155;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pc-image {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 80%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.pc-content {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.pc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.pc-badge {
  background: #e2e8f0;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pc-rating-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.pc-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: #b45309;
  line-height: 1;
  letter-spacing: -0.02em;
}

.review-stars.small i {
  width: 11px;
  height: 11px;
  color: #b45309;
}

.pc-title {
  font-size: clamp(1.05rem, 1.15vw, 1.25rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pc-signature {
  margin-bottom: 16px;
  flex: 1;
  min-height: 0;
}

.pc-sig-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pc-sig-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc-sig-list li {
  position: relative;
  padding-left: 12px;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--font-serif);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-sig-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
}

.pc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
  margin-top: auto;
}

.pc-portfolio {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.port-label {
  font-size: 0.6rem;
  color: var(--text-light);
}

.port-value {
  font-size: 0.9rem;
  color: #020617;
}

.port-value strong {
  font-weight: 800;
  font-size: 1.05rem;
}

.pc-action-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(51, 190, 179, 0.35);
  transition: transform 0.2s, background 0.2s;
}

.pc-action-btn:hover {
  background: var(--primary-hover);
  transform: translateX(3px);
}

.pc-action-btn i {
  width: 18px;
  height: 18px;
}

/* Responsive - align with slots listing breakpoints */
@media (max-width: 1024px) {
  .dh-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .pfb-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px 14px;
  }

  .pfb-tabs {
    flex: 1 1 auto;
  }

  .pfb-sort {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }

  .pfb-sort-select {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 1000px) {
  .providers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .dh-title {
    font-size: 3rem;
  }

  .pfb-inner {
    padding: 12px 12px;
  }

  .pfb-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }

  .pfb-tabs .pfb-btn:nth-child(3) {
    grid-column: 1 / -1;
  }

  .pfb-sort {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px;
  }

  .sort-label {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .pfb-tabs {
    grid-template-columns: 1fr;
  }

  .pfb-tabs .pfb-btn:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .providers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ========================================= */
/* Single Provider Page specific */
/* ========================================= */
.page-provider-detail .container {
  max-width: var(--container-max-width);
  padding-left: max(32px, env(safe-area-inset-left));
  padding-right: max(32px, env(safe-area-inset-right));
}

.provider-page {
  background: #fafafa;
  padding-bottom: 120px;
}

/* Redesigned provider page (2026-04): breadcrumb, refined hero, facts strip,
   signature games row, review + sticky summary sidebar. */

.page-provider-detail .pv-breadcrumb {
  padding-top: clamp(20px, 2.8vw, 32px);
  padding-bottom: clamp(12px, 1.8vw, 18px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pv-bc-link {
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: none;
}

.pv-bc-link:hover {
  color: var(--primary);
}

.pv-bc-sep {
  color: #cbd5e1;
}

.pv-bc-current {
  color: #0f172a;
  font-weight: 700;
}

.page-provider-detail .provider-hero.provider-hero--refined {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 360px);
  gap: clamp(36px, 4vw, 56px);
  align-items: start;
  padding: clamp(32px, 4.5vw, 56px);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 60%, #eef2f7 100%);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 40px rgba(15, 23, 42, 0.06);
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.ph-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.ph-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.ph-chip[hidden] {
  display: none !important;
}

.ph-chip--tier {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.18);
}

.ph-chip--top {
  background: linear-gradient(180deg, rgba(51, 190, 179, 0.14) 0%, rgba(51, 190, 179, 0.08) 100%);
  color: #0f766e;
  border: 1px solid rgba(51, 190, 179, 0.35);
}

.ph-chip--top i {
  width: 13px;
  height: 13px;
}

.page-provider-detail .provider-hero--refined .ph-title {
  font-size: clamp(2rem, 3.2vw + 0.75rem, 3rem);
  margin-bottom: clamp(16px, 2vw, 22px);
}

.page-provider-detail .provider-hero--refined .ph-desc {
  font-style: normal;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-size: clamp(1rem, 0.8vw + 0.75rem, 1.1rem);
  line-height: 1.6;
  color: #334155;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.page-provider-detail .provider-hero--refined .ph-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  margin-top: 0;
  padding-bottom: 20px;
}

.page-provider-detail .provider-hero--refined .ph-actions[hidden] {
  display: none;
}

.page-provider-detail .provider-hero--refined .ph-btn-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-provider-detail .provider-hero--refined .ph-btn-site i {
  width: 14px;
  height: 14px;
}

.ph-btn-anchor {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(51, 190, 179, 0.5);
  padding-bottom: 10px;
}

.ph-btn-anchor:hover {
  color: var(--primary-hover);
  border-bottom-color: var(--primary-hover);
}

.ph-score-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 24px 22px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 10px 28px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ph-score-card__top {
  display: grid;
  grid-template-columns: minmax(120px, 0.95fr) minmax(0, 1.15fr);
  gap: 20px 28px;
  align-items: center;
}

.ph-score-card__col--logo {
  min-width: 0;
}

.ph-score-card__col--score {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}

.ph-score-card__brand {
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
}

.page-provider-detail .ph-score-card__logo-mat {
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border-bottom: none;
}

.ph-score-card__label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.ph-score-card__headline {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.ph-score-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3vw + 1rem, 3.25rem);
  font-weight: 700;
  color: #020617;
  letter-spacing: -0.02em;
}

.ph-score-denom {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #94a3b8;
}

.ph-score-card__stars {
  line-height: 1;
}

.ph-score-card__stars .stars-meter {
  font-size: 1.05rem;
}

.ph-score-card__meta {
  margin: 4px 0 0;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  border-top: 1px solid #f1f5f9;
}

.ph-score-meta-row dt {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 4px;
}

.ph-score-meta-row dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.page-provider-detail .pv-facts-strip {
  margin-top: clamp(8px, 1.5vw, 16px);
}

.pv-facts-strip {
  margin-bottom: clamp(40px, 4.5vw, 56px);
}

.pv-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.pv-fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(20px, 2.5vw, 26px) clamp(18px, 2.2vw, 24px);
  border-right: 1px solid #f1f5f9;
  min-width: 0;
}

.pv-fact:last-child {
  border-right: none;
}

.pv-fact__label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.pv-fact__value {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  word-break: break-word;
}

.pv-signature-section {
  margin-top: clamp(8px, 1.2vw, 16px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

.pv-signature-head {
  margin-bottom: clamp(22px, 2.5vw, 30px);
}

.pv-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pv-signature-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 62ch;
}

.pv-signature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.pv-signature-name {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-serif);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pv-signature-name:hover {
  border-color: rgba(51, 190, 179, 0.45);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
}

.page-provider-detail .provider-content-section {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.page-provider-detail .provider-layout {
  gap: clamp(32px, 4vw, 56px);
}

.pv-review-head {
  margin-bottom: clamp(18px, 2vw, 24px);
}

.pv-review-head h2 {
  margin: 0 0 6px;
}

.pv-review-meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.page-provider-detail .provider-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 0;
  max-width: 68ch;
}

.page-provider-detail .provider-body p {
  margin: 0 0 1.1em;
}

.page-provider-detail .provider-body p:last-child {
  margin-bottom: 0;
}

.pv-summary-aside {
  align-self: start;
}

.pv-summary-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(22px, 2.5vw, 28px) clamp(20px, 2.2vw, 24px) clamp(20px, 2.2vw, 24px);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.05),
    0 14px 36px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pv-summary-card__top {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 24px);
  align-items: stretch;
}

.pv-summary-card__col--logo {
  min-width: 0;
  width: 100%;
}

.pv-summary-card__col--score {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
  width: 100%;
}

.pv-summary-rating-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(16px, 3vw, 26px);
  row-gap: 0;
  width: 100%;
  align-items: start;
}

.pv-summary-rating-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
}

.pv-summary-rating-block--player {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
  border-left: 1px solid #e2e8f0;
  padding-left: clamp(14px, 2.5vw, 22px);
  margin-left: 0;
}

.pv-summary-score--player {
  margin-top: 0;
}

.pv-summary-num--player {
  font-size: clamp(1.55rem, 2.8vw, 1.85rem);
}

.pv-summary-player-link {
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d9488;
  text-decoration: underline;
  text-decoration-color: rgba(13, 148, 136, 0.45);
  text-underline-offset: 3px;
  margin-top: 4px;
  transition: color 0.18s, text-decoration-color 0.18s;
}

.pv-summary-player-link:hover {
  color: #0f766e;
  text-decoration-color: rgba(15, 118, 110, 0.55);
}

@media (max-width: 480px) {
  .pv-summary-rating-stack {
    grid-template-columns: 1fr;
    row-gap: clamp(14px, 2vw, 18px);
    column-gap: 0;
  }

  .pv-summary-rating-block--player {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e2e8f0;
    padding-top: clamp(14px, 2vw, 18px);
  }
}

.pv-summary-logo-row {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.page-provider-detail .pv-summary-logo-mat {
  max-width: 240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  border-bottom: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-sizing: border-box;
}

.pv-summary-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #64748b;
}

.pv-summary-score {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1.05;
}

.pv-summary-num {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  letter-spacing: -0.02em;
}

.pv-summary-denom {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
}

.pv-summary-stars {
  line-height: 1;
  margin-top: 2px;
}

.pv-summary-stars .stars-meter {
  font-size: 0.88rem;
}

.pv-summary-meta {
  margin: 4px 0 8px;
  padding: clamp(14px, 2vw, 18px) 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  border-top: 1px solid #e2e8f0;
}

.pv-summary-meta dt {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 4px;
}

.pv-summary-meta dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
}

.pv-summary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pv-summary-cta[hidden] {
  display: none;
}

.pv-summary-cta i {
  width: 14px;
  height: 14px;
}

.pv-summary-updated {
  margin: 4px 0 0;
  font-size: 0.74rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
  line-height: 1.45;
}

/* Sticky sidebar on desktop only */
@media (min-width: 1025px) {
  .page-provider-detail .pv-summary-aside {
    position: sticky;
    top: calc(var(--sticky-header-offset, 80px) + 16px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .page-provider-detail .provider-hero.provider-hero--refined {
    grid-template-columns: 1fr;
  }

  .page-provider-detail .ph-right {
    width: 100%;
  }

  .ph-score-card__meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-provider-detail .provider-layout {
    flex-direction: column;
  }

  .page-provider-detail .provider-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* Full-width reading column (container padding only; no 68ch measure) */
  .page-provider-detail .provider-body {
    max-width: 100%;
  }

  .page-provider-detail .pv-signature-desc {
    max-width: none;
  }

  .pv-summary-aside {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-provider-detail .provider-hero.provider-hero--refined {
    padding: 24px 20px;
    border-radius: 14px;
    gap: 28px;
  }

  /* Score + summary cards: avoid cramped blocks on tablet / mobile */
  .page-provider-detail .ph-score-card {
    padding: 28px 24px 30px;
    gap: 20px;
  }

  .page-provider-detail .ph-score-card__top {
    gap: 22px 26px;
  }

  .page-provider-detail .ph-score-card__col--score {
    gap: 12px;
  }

  .page-provider-detail .ph-score-card__meta {
    grid-template-columns: 1fr 1fr;
    gap: 22px 26px;
    padding-top: 24px;
    margin-top: 8px;
  }

  .page-provider-detail .ph-score-meta-row dt {
    margin-bottom: 8px;
  }

  .page-provider-detail .pv-summary-card {
    padding: 28px 24px 30px;
    gap: 20px;
  }

  .page-provider-detail .pv-summary-card__top {
    gap: 22px;
  }

  .page-provider-detail .pv-summary-card__col--score {
    gap: 12px;
  }

  .page-provider-detail .pv-summary-meta {
    gap: 22px 26px;
    padding-top: 24px;
    margin-top: 8px;
  }

  .page-provider-detail .pv-summary-meta dt {
    margin-bottom: 8px;
  }

  .pv-facts {
    grid-template-columns: 1fr 1fr;
  }

  .pv-fact {
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
  }

  .pv-fact:nth-child(2n) {
    border-right: none;
  }

  .pv-fact:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .page-provider-detail .pv-hero-lede__actions {
    gap: 10px;
  }

  .page-provider-detail .pv-hero-lede__actions .ph-btn-site {
    flex: 1 1 100%;
    justify-content: center;
  }

  .page-provider-detail .pv-hero-lede__actions .ph-btn-anchor {
    flex: 1 1 100%;
    text-align: center;
  }

  .page-slot-detail .pv-hero-lede__actions {
    gap: 10px;
  }

  .page-slot-detail .pv-hero-lede__actions .ph-btn-site {
    flex: 1 1 100%;
    justify-content: center;
  }

  .page-slot-detail .pv-hero-lede__actions .ph-btn-anchor {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ph-score-card__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ph-score-card__brand {
    justify-content: center;
  }

  .page-provider-detail .ph-score-card__logo-mat {
    max-width: 240px;
  }

  .ph-score-card__col--score {
    align-items: center;
    text-align: center;
  }

  .ph-score-card__headline {
    justify-content: center;
  }

  .pv-summary-card__top {
    gap: 22px;
  }

  .pv-summary-logo-row {
    justify-content: center;
  }

  .page-provider-detail .pv-summary-logo-mat {
    max-width: min(240px, 88vw);
  }

  .pv-summary-card__col--score {
    align-items: center;
    text-align: center;
  }

  .pv-summary-rating-stack,
  .pv-summary-rating-block {
    align-items: center;
  }

  .pv-summary-score {
    justify-content: center;
  }

  /* Narrow screens: one stat per row + dividers so the grid never feels cramped */
  .page-provider-detail .ph-score-card {
    padding: 30px 24px 32px;
    gap: 24px;
  }

  .page-provider-detail .ph-score-card__meta {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 24px;
    margin-top: 10px;
  }

  .page-provider-detail .ph-score-card__meta .ph-score-meta-row {
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .page-provider-detail .ph-score-card__meta .ph-score-meta-row:first-of-type {
    padding-top: 0;
  }

  .page-provider-detail .ph-score-card__meta .ph-score-meta-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .page-provider-detail .ph-score-meta-row dt {
    margin-bottom: 8px;
  }

  .page-provider-detail .pv-summary-card {
    padding: 30px 24px 32px;
    gap: 24px;
  }

  .page-provider-detail .pv-summary-meta {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 24px;
    margin-top: 10px;
  }

  .page-provider-detail .pv-summary-meta>div {
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .page-provider-detail .pv-summary-meta>div:first-of-type {
    padding-top: 0;
  }

  .page-provider-detail .pv-summary-meta>div:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .page-provider-detail .pv-summary-meta dt {
    margin-bottom: 8px;
  }
}

/* Provider Hero: grid layout, balanced columns, fits viewport width */
.provider-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, min(42vw, 420px));
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(32px, 5vw, 56px) clamp(16px, 4vw, 32px);
  padding-left: max(clamp(16px, 4vw, 32px), env(safe-area-inset-left));
  padding-right: max(clamp(16px, 4vw, 32px), env(safe-area-inset-right));
  border-bottom: 1px solid var(--border-light);
  margin-bottom: clamp(40px, 5vw, 64px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.ph-left {
  min-width: 0;
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e2e8f0;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: clamp(16px, 2.5vw, 22px);
  text-transform: uppercase;
}

.ph-badge i {
  width: 14px;
  height: 14px;
  color: #475569;
  flex-shrink: 0;
}

.ph-title {
  font-size: clamp(2rem, 3.5vw + 0.75rem, 3.35rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
  line-height: 1.12;
  margin-bottom: clamp(16px, 2.5vw, 22px);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.ph-desc {
  font-size: clamp(1rem, 1.5vw + 0.6rem, 1.2rem);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: min(65ch, 100%);
}

.ph-right {
  min-width: 0;
  width: 100%;
}

/* Provider stats card: dense grid, dividers, white surface */
.ph-stats-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 4px solid var(--primary);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.ph-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ph-stats-card .stat-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px 16px;
  margin: 0;
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  min-width: 0;
  box-sizing: border-box;
}

.ph-stats-card .stat-group:nth-child(2n) {
  border-right: none;
}

.ph-stats-card .stat-group:nth-child(n + 5) {
  border-bottom: none;
}

.ph-stats-card .stat-group .stat-label {
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-size: 0.625rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
}

.ph-stats-card .stat-group .stat-val {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.ph-stats-card .stat-val--license {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
}

.ph-stats-card .stat-val--license.is-stat-empty {
  font-weight: 500;
  font-style: italic;
  color: #94a3b8;
  font-size: 0.875rem;
}

.stat-val--rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: 1.25rem;
}

.ph-stats-card .stat-val--rating .review-stars {
  flex-shrink: 0;
  line-height: 1;
}

.ph-stats-card .stat-val--rating .stars-meter {
  font-size: 1.05rem;
}

.ph-stats-card .stat-val--rating #pv-rating-text {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.ph-logo-row {
  margin-bottom: clamp(18px, 2.5vw, 24px);
  max-width: min(300px, 100%);
}

.ph-provider-hero-logo {
  max-width: 100%;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
}

.ph-actions {
  margin-top: clamp(20px, 3vw, 28px);
}

.page-provider-detail .ph-btn-site {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
}

.vm-list li.vm-muted {
  color: var(--text-muted);
  font-style: italic;
  padding-left: 0;
}

.vm-list li.vm-muted::before {
  display: none;
}

/* Provider Content Layout */
.provider-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.provider-main {
  flex: 1;
  min-width: 0;
}

.provider-main h2 {
  margin-bottom: 32px;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #020617;
}

.provider-main .mt-48 {
  margin-top: 64px;
}

.provider-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 64px;
}

.provider-body .rich-text-body p {
  margin: 0 0 1.1em;
}

.provider-body .rich-text-body p:last-child {
  margin-bottom: 0;
}

.provider-body .rich-text-body ul,
.provider-body .rich-text-body ol {
  margin: 0 0 1.05em;
  padding-left: 1.25em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 24px 0;
}

.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.game-overlay h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-serif);
}

/* Provider detail: flagship titles, editorial list (no stock imagery) */
.page-provider-detail .pv-portfolio {
  margin: 20px 0 0;
}

.page-provider-detail .pv-portfolio--flagship {
  max-width: 720px;
}

.page-provider-detail .pv-flagship-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-provider-detail .pv-flagship-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-provider-detail .pv-flagship-item:hover {
  border-color: rgba(51, 190, 179, 0.45);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
}

.page-provider-detail .pv-flagship-index {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  min-width: 2.25rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.page-provider-detail .pv-flagship-name {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}

.page-provider-detail .pv-portfolio-empty {
  margin: 0;
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Provider detail: CMS featured games, card with real art or icon placeholder */
.page-provider-detail .pv-portfolio--games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.page-provider-detail .pv-game-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-provider-detail .pv-game-card:hover {
  border-color: rgba(51, 190, 179, 0.35);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.page-provider-detail .pv-game-card__media {
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  overflow: hidden;
}

.page-provider-detail .pv-game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-provider-detail .pv-game-card--no-image .pv-game-card__placeholder {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #f1f5f9 0%, #e8eef4 100%);
  color: var(--primary);
}

.page-provider-detail .pv-game-card--no-image .pv-game-card__placeholder svg {
  width: 42px;
  height: 42px;
  opacity: 0.88;
  stroke-width: 1.75px;
}

.page-provider-detail .pv-game-card__body {
  padding: 14px 16px 16px;
  border-top: 1px solid #f1f5f9;
}

.page-provider-detail .pv-game-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.handlebars-loop-label {
  font-family: monospace;
  font-size: 0.8rem;
  color: #94a3b8;
  opacity: 0.7;
}

.handlebars-loop-label.small {
  font-size: 0.7rem;
}

.handlebars-loop-label.end-loop {
  margin-top: 4px;
  text-align: left;
}

/* Verdict Sidebar */
.provider-sidebar {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.verdict-matrix {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.vm-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 32px;
  color: #020617;
  font-weight: 700;
}

.vm-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vm-heading.text-blue {
  color: var(--primary);
}

.vm-heading.text-red {
  color: var(--danger);
}

.vm-heading i {
  width: 16px;
  height: 16px;
}

.vm-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 32px 0;
}

.vm-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0;
}

.vm-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.vm-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.blue-bullets li::before {
  background: var(--primary);
}

.red-bullets li::before {
  background: var(--danger);
}

/* Lucide icon rows (slot Expert Verdict: gold-checks / red-crosses) */
.vm-list.gold-checks li::before,
.vm-list.red-crosses li::before {
  display: none;
}

.vm-list.gold-checks li,
.vm-list.red-crosses li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}

/* Lucide replaces <i data-lucide> with <svg>; target both */
.vm-list.gold-checks li > i,
.vm-list.gold-checks li > svg,
.vm-list.red-crosses li > i,
.vm-list.red-crosses li > svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0;
  stroke-width: 2.25;
}

/* Pros / cons: teal and rose (explicit color/stroke; Lucide uses currentColor on paths) */
.vm-list.gold-checks li > i,
.vm-list.gold-checks li > svg {
  color: var(--primary);
  stroke: var(--primary);
}

.vm-list.gold-checks li > i svg {
  stroke: var(--primary);
  color: var(--primary);
}

.vm-list.red-crosses li > i,
.vm-list.red-crosses li > svg {
  color: var(--danger);
  stroke: var(--danger);
}

.vm-list.red-crosses li > i svg {
  stroke: var(--danger);
  color: var(--danger);
}

/* Premier Destinations */
.premier-destinations {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #020617;
  margin-bottom: 8px;
  font-weight: 700;
}

.pd-card {
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.pd-card:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.pd-logo {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.pd-info {
  flex: 1;
}

.pd-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 2px;
}

.pd-bonus {
  font-size: 0.75rem;
  font-weight: 700;
  color: #b45309;
}

/* Quote Section */
.provider-quote-section {
  padding: 80px 32px 120px;
  border-top: 1px solid var(--border-light);
  margin-top: 64px;
}

.pq-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 32px;
}

.pq-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 500;
}

.quote-author {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .provider-hero {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
  }

  .ph-right {
    max-width: 520px;
  }

  .provider-layout {
    flex-direction: column;
  }

  .provider-sidebar {
    width: 100%;
    flex: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }
}

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

  .page-provider-detail .pv-portfolio--games {
    grid-template-columns: 1fr;
  }

  .ph-stats-grid {
    grid-template-columns: 1fr;
  }

  .ph-stats-card .stat-group {
    border-right: none;
  }

  .ph-stats-card .stat-group:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
  }

  .provider-hero {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .ph-stats-card .stat-group .stat-val {
    font-size: 1.35rem;
  }

  .ph-right {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .ph-title {
    font-size: clamp(1.65rem, 1.1rem + 3vw, 2.1rem);
  }

  .ph-stats-card .stat-group {
    padding: 12px 14px 14px;
  }
}

/* ========================================= */
/* Light Footer overrides */
/* ========================================= */
.footer.footer-light {
  background: #f8fafc;
  color: #020617;
  padding: clamp(40px, 5vw, 56px) 0 max(clamp(24px, 3vw, 32px), env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border-light);
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand-light .fbl-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.footer-brand-light p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 250px;
  margin-bottom: 24px;
}

.fbl-icons {
  display: flex;
  gap: 16px;
  color: var(--text-light);
}

.fbl-icons i {
  width: 18px;
  height: 18px;
  transition: color 0.3s;
  cursor: pointer;
}

.fbl-icons i:hover {
  color: var(--primary);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-main);
}

.footer-col a.text-blue {
  color: var(--primary);
  font-weight: 600;
}

.fbl-copyright {
  margin-top: 40px;
  font-size: 0.65rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Tablet: two rows - brand full width, then Resources / Community / Support */
@media (max-width: 1024px) and (min-width: 641px) {
  .footer-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand-light {
    grid-column: 1 / -1;
  }

  .footer-brand-light p {
    max-width: 40rem;
  }
}

@media (max-width: 640px) {
  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand-light {
    grid-column: auto;
  }
}

/* ========================================= */
/* Single Slot Page specific */
/* ========================================= */
.slot-page {
  background: #fafafa;
  padding-bottom: 120px;
}

/* Slot detail: avoid a tall #fafafa band above the footer “More slots” strip (that strip has its own padding) */
.page-slot-detail .slot-page {
  padding-bottom: 0;
}

.slot-float-badge {
  position: absolute;
  bottom: -20px;
  left: 0;
  background: white;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--primary);
}

.sfb-val {
  font-size: 2rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  font-style: italic;
}

.sfb-lbl {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Slot highlight (API HighlightLabel / HighlightQuote) */
.slot-highlight-strip {
  margin-top: 32px;
  margin-bottom: 16px;
}

.slot-highlight-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 24px);
  background: linear-gradient(135deg, rgba(51, 190, 179, 0.07) 0%, rgba(248, 250, 252, 0.98) 55%, #ffffff 100%);
  border: 1px solid rgba(51, 190, 179, 0.22);
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  padding: clamp(20px, 3.5vw, 28px) clamp(18px, 3vw, 28px) clamp(20px, 3.5vw, 28px) clamp(16px, 2.5vw, 22px);
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.slot-highlight-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(51, 190, 179, 0.14);
  border: 1px solid rgba(51, 190, 179, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
}

.slot-highlight-icon-wrap i,
.slot-highlight-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.slot-highlight-body {
  flex: 1;
  min-width: 0;
}

.slot-highlight-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f766e;
  margin: 0 0 8px;
}

.slot-highlight-quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.62;
  color: #334155;
}

@media (max-width: 540px) {
  .slot-highlight-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left-width: 1px;
    border-top: 3px solid var(--primary);
  }

  .slot-highlight-body {
    text-align: center;
  }
}

/* Slot Stats Bar */
.slot-stats-bar {
  margin-top: 40px;
  margin-bottom: 80px;
}

.ss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.ss-grid--slot {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ss-grid--slot-extended {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: var(--container-max-width);
}

.ss-val--theme {
  font-size: 1rem !important;
  line-height: 1.25;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  hyphens: auto;
  word-break: break-word;
}


.slot-last-reviewed {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: -8px 0 20px;
  letter-spacing: 0.02em;
}

.ss-item {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.ss-item:last-child {
  border-right: none;
}

.ss-item i {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

.ss-lbl {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ss-val {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #020617;
}

/* Destinations List */
.slot-destinations {
  padding: 0;
  margin-bottom: 80px;
}

.sd-header {
  margin-bottom: 40px;
}

.sd-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #020617;
  margin-bottom: 12px;
}

.sd-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.6;
}

.sd-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sd-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s;
}

.sd-card:hover {
  box-shadow: var(--shadow-md);
}

.sd-logo-box {
  width: 64px;
  height: 64px;
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  font-style: italic;
}

.sd-info {
  flex: 1.5;
}

.sd-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.sd-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sd-pills span {
  background: #e2e8f0;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.sd-bonus {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid var(--border-light);
  padding-left: 32px;
}

.sdb-lbl {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.sdb-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.sd-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--border-light);
  padding-left: 32px;
}

.sd-action .btn {
  width: 100%;
}

.sd-tc {
  font-size: 0.6rem;
  color: var(--text-light);
}

/* Slot Content Layout */
.slot-content-split {
  margin-bottom: 80px;
}

.slot-main-content h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: #020617;
  margin-bottom: 24px;
}

.slot-main-content p {
  margin-bottom: 20px;
}

.slot-bonus-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 40px;
  margin-top: 48px;
}

.slot-bonus-box h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #020617;
  margin-bottom: 32px;
}

.sbb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sbb-item h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.sbb-item h4 i {
  width: 18px;
  height: 18px;
}

.sbb-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Expert Verdict */
.expert-verdict-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--primary);
}

.evc-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #020617;
  margin-bottom: 24px;
  font-weight: 700;
}

/* Slot detail: tighter Expert Verdict (smaller footprint, no inner scroll on sidebar) */
.page-slot-detail .expert-verdict-card {
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-md);
}

.page-slot-detail .evc-title {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.page-slot-detail .slot-content-split .vm-heading {
  font-size: 0.62rem;
  margin-bottom: 8px;
}

.page-slot-detail .slot-content-split .vm-list {
  gap: 6px;
  margin: 6px 0;
}

.page-slot-detail .slot-content-split .vm-list.gold-checks li,
.page-slot-detail .slot-content-split .vm-list.red-crosses li {
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.4;
  gap: 8px;
}

.page-slot-detail .slot-content-split .vm-list.gold-checks li > i,
.page-slot-detail .slot-content-split .vm-list.gold-checks li > svg,
.page-slot-detail .slot-content-split .vm-list.red-crosses li > i,
.page-slot-detail .slot-content-split .vm-list.red-crosses li > svg {
  width: 15px;
  height: 15px;
  margin-top: 0;
}

.page-slot-detail .slot-content-split .vm-section.mt-24 {
  margin-top: 18px;
}

/* Sticky sidebar on slot review: stays in view while reading the main column (no max-height = no scrollbar) */
@media (min-width: 1025px) {
  .page-slot-detail .slot-content-split .provider-sidebar.slot-sidebar {
    position: sticky;
    top: calc(var(--sticky-header-offset) + 0.75rem);
    align-self: flex-start;
    transition: padding-top 0.2s ease;
  }

  .page-slot-detail .slot-content-split .provider-sidebar.slot-sidebar.is-stuck {
    padding-top: 1.25rem;
  }
}

.vm-section.mt-24 {
  margin-top: 32px;
}

/* FAQ Section */
.slot-faq-section {
  padding: 0;
  margin-bottom: 80px;
}

.faq-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #020617;
  margin-bottom: 40px;
  text-align: center;
}

/* More Games */
.more-games-section {
  padding: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 80px;
}

.mg-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #020617;
  margin-bottom: 40px;
}

.mg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mg-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}

.mg-card:hover .mg-img {
  transform: scale(1.02);
}

.mg-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
  background: #000;
}

.mg-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #020617;
}

.mg-meta {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .ss-grid--slot-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ss-grid--slot-extended .ss-item--theme {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .slot-float-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    text-align: center;
  }

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

  .ss-item:nth-child(2n) {
    border-right: none;
  }

  .ss-item:nth-child(n + 3) {
    border-top: 1px solid var(--border-light);
  }

  .sd-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .sd-bonus,
  .sd-action {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    width: 100%;
    align-items: center;
  }

  .sd-pills {
    justify-content: center;
  }

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

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

  .mg-grid {
    grid-template-columns: 1fr;
  }
}

/* Slot stats: keep 2 columns through 768px; stack only on narrow phones */
@media (max-width: 640px) {
  .ss-grid {
    grid-template-columns: 1fr;
  }

  .ss-grid--slot-extended {
    grid-template-columns: 1fr;
  }

  .ss-grid--slot-extended .ss-item--theme {
    grid-column: auto;
  }

  .ss-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .ss-item:last-child {
    border-bottom: none;
    border-top: none;
  }
}

/* ========================================= */
/* Guides hub (/guides): editorial SEO + FAQ */
/* ========================================= */
.page-guides .container {
  padding-left: calc(max(20px, env(safe-area-inset-left, 20px)) + 24px);
}

.page-guides .guides-seo {
  padding: clamp(64px, 9vw, 120px) 0;
}

.page-guides .guides-seo__header {
  margin-bottom: 0;
}

.page-guides .guides-seo__header h2 {
  margin-bottom: clamp(1.1rem, 2vw, 1.5rem);
  position: relative;
  padding-top: 0.35rem;
}

.page-guides .guides-seo__header h2::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

.page-guides .guides-seo__intro {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.page-guides .guides-seo__intro p {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.page-guides .guides-seo__intro p:last-child {
  margin-bottom: 0;
}

.page-guides .guides-seo__intro a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-guides .guides-seo__intro a:hover {
  color: #1e3a5f;
}

.page-guides .guides-seo__topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2.2vw, 20px);
}

.page-guides .guides-seo__topic {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 24px -12px rgba(15, 23, 42, 0.06);
}

.page-guides .guides-seo__topic-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(51, 190, 179, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.page-guides .guides-seo__topic-icon :is(svg, i) {
  width: 22px !important;
  height: 22px !important;
}

.page-guides .guides-seo__topic-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #020617;
  margin: 0 0 6px;
  line-height: 1.25;
}

.page-guides .guides-seo__topic-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

.page-guides .guides-faq.seo-accordion {
  padding: clamp(72px, 10vw, 120px) 0;
}

.page-guides .guides-faq .section-header.center {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.page-guides .guides-faq .section-header.center p {
  max-width: min(52rem, 100%);
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-guides .guides-faq .accordion.accordion--two-cols {
  gap: 20px clamp(24px, 3vw, 40px);
}

/* ========================================= */
/* Guides Page specific */
/* ========================================= */
.guides-page {
  background: #fafafa;
  padding-bottom: clamp(72px, 12vw, 120px);
}

.guides-status {
  display: block;
  text-align: center;
  padding: 28px 16px 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0 auto;
}

.page-guides .guides-status {
  padding: 12px 16px 4px;
}

.guides-status[hidden] {
  display: none !important;
}

.guides-empty-msg {
  text-align: center;
  padding: 2rem 16px 1rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 auto;
}

/* Hero */
.guides-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(28px, 4vw, 44px);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.gh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(14px, 2vw, 20px);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  line-height: 1.25;
}

.gh-kicker i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.gh-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  color: #020617;
  line-height: 1.08;
  margin: 0 0 clamp(18px, 2.5vw, 26px);
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: min(52rem, 100%);
}

.gh-title em {
  font-style: italic;
  color: var(--primary);
}

.gh-desc {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.5vw + 0.98rem, 1.15rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: min(42rem, 100%);
  margin: 0 0 clamp(28px, 4vw, 40px);
}

/* Filter Pills */
.gh-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gh-filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #475569;
  background: white;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.gh-filter-btn:hover {
  border-color: #cbd5e1;
  color: #020617;
}

.gh-filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Guides hub only: roomier hero rhythm (kicker → title → deck → filters) */
.page-guides .guides-hero {
  padding-top: clamp(32px, 5vw, 64px);
  /* Filters live in .guides-directory-intro below; keep hero closure compact */
  padding-bottom: clamp(28px, 4vw, 40px);
}

.page-guides .gh-kicker {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.page-guides .gh-title {
  line-height: 1.12;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.page-guides .gh-desc {
  line-height: 1.78;
  margin-bottom: 0;
}

/* Directory block: heading + filters read as one control surface (desktop: filters align with title row) */
.guides-directory-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(14px, 2.5vw, 22px);
  margin-top: 0;
  padding-top: clamp(20px, 3vw + 2rem, 50px);
  padding-bottom: clamp(18px, 2.75vw, 26px);
  margin-bottom: clamp(22px, 3.5vw, 32px);
  border-bottom: 1px solid var(--border-light);
}

.page-guides .guides-directory-intro .guides-directory-header {
  flex: 1 1 min(100%, 36rem);
  min-width: min(100%, 260px);
  margin-bottom: 0;
}

.page-guides .guides-directory-intro .guides-directory-header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  font-weight: 700;
  line-height: 1.2;
}

.page-guides .guides-directory-intro .guides-directory-dek {
  max-width: 38rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.guides-directory-intro__filters {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

@media (min-width: 768px) {
  .guides-directory-intro {
    align-items: flex-start;
    gap: clamp(20px, 3vw, 32px);
  }

  .guides-directory-intro__filters {
    align-items: flex-end;
    align-self: flex-start;
    padding-top: 0.2rem;
  }

  .page-guides .guides-directory-intro .gh-filters {
    justify-content: flex-end;
  }
}

/* Segmented-style filters only on guides directory intro */
.page-guides .guides-directory-intro .gh-filters {
  gap: 8px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.page-guides .guides-directory-intro .gh-filter-btn {
  border: none;
  box-shadow: none;
  padding: 8px 17px;
  font-size: 0.78rem;
  background: transparent;
  color: #64748b;
}

.page-guides .guides-directory-intro .gh-filter-btn:hover:not(.active) {
  background: rgba(15, 118, 110, 0.09);
  color: #0f172a;
}

.page-guides .guides-directory-intro .gh-filter-btn.active {
  box-shadow: 0 1px 4px rgba(15, 118, 110, 0.22);
}

@media (max-width: 767px) {
  .guides-directory-intro__filters {
    width: 100%;
  }

  .page-guides .guides-directory-intro .gh-filters {
    width: 100%;
    justify-content: center;
  }
}

.page-guides .gh-filters {
  gap: 16px;
}

/* Featured Guide */
.featured-guide-section {
  padding: 0 32px;
  margin-bottom: 64px;
}

.featured-guide-card {
  display: flex;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.fg-image-wrap {
  flex: 1.2;
  position: relative;
}

.fg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.fg-content {
  flex: 1;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fg-badge {
  align-self: flex-start;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.fg-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #020617;
  line-height: 1.2;
  margin-bottom: 20px;
}

.fg-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  color: inherit;
  text-decoration: none;
}

.fg-excerpt {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}

.fg-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.fga-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.fga-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fga-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
}

.fga-meta {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Guides / news listing header (mirrors bonuses-directory-header) */
.guides-directory-header,
.news-directory-header {
  margin-bottom: clamp(22px, 3.5vw, 32px);
  padding: 0;
}

.guides-directory-header {
  max-width: none;
}

.news-directory-header {
  max-width: 880px;
}

.guides-directory-header h2,
.news-directory-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.guides-directory-dek,
.news-directory-dek {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Regular Guides Grid */
.guides-grid-section {
  padding: 0;
  margin-bottom: clamp(48px, 8vw, 72px);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.guide-card {
  display: flex;
  flex-direction: column;
}

.gc-link-wrap {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
  height: 100%;
}

.gc-link-wrap:hover {
  transform: translateY(-4px);
}

.gc-link-wrap:hover .gc-title {
  color: var(--primary);
}

.gc-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.gc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease-out;
}

.gc-link-wrap:hover .gc-image {
  transform: scale(1.05);
}

.gc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.gc-category {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gc-read-time {
  font-size: 0.75rem;
  color: var(--text-light);
}

.gc-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #020617;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}

.gc-excerpt {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  min-height: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}

.gc-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gc-read-more i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.gc-link-wrap:hover .gc-read-more i {
  transform: translateX(4px);
}

/* Interstitial */
.guides-interstitial {
  padding: 0;
  margin-bottom: clamp(40px, 7vw, 64px);
}

.gi-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px -16px rgba(15, 23, 42, 0.1);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}

.gi-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #020617;
  margin: 0 0 10px;
  font-weight: 400;
  line-height: 1.2;
  max-width: min(40rem, 100%);
}

.gi-content h3 em {
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
}

.gi-content p {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: min(40rem, 100%);
}

.gi-action {
  flex-shrink: 0;
}

/* Dark Newsletter */
.guides-newsletter {
  padding: 0 32px;
  margin-bottom: 40px;
}

.gn-card {
  background: #18181b;
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-xl);
}

.gn-card h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: white;
}

.gn-card p {
  font-size: 1.1rem;
  color: #a1a1aa;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.gn-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

.gn-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #3f3f46;
  background: #27272a;
  color: white;
  outline: none;
  transition: border-color 0.2s;
  font-size: 1rem;
}

.gn-form input:focus {
  border-color: #71717a;
}

.gn-form ::placeholder {
  color: #71717a;
}

.btn-primary.bg-white.text-dark {
  background: white;
  color: #18181b;
}

.btn-primary.bg-white.text-dark:hover {
  background: #f4f4f5;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .featured-guide-card {
    flex-direction: column;
  }

  .fg-image-wrap {
    height: 300px;
    width: 100%;
  }

  .fg-image {
    min-height: 100%;
  }

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

  .gi-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .fg-content {
    padding: 40px 24px;
  }

  .guides-grid {
    grid-template-columns: 1fr;
  }

  .gn-card {
    padding: 48px 24px;
  }

  .gn-form {
    flex-direction: column;
  }
}

/* ========================================= */
/* Single Post/Guide Page specific */
/* ========================================= */
body.page-guide-post {
  background: #fafafa;
}

.post-page {
  background: #fafafa;
}

/* Hero */
.post-hero {
  padding: 80px 32px 40px;
}

.ph-layout {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  align-items: center;
}

.ph-content {
  flex: 1.5;
}

.ph-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ph-pill {
  background: #e2e8f0;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ph-meta-text {
  font-size: 0.8rem;
  color: var(--text-light);
}

.ph-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #020617;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.ph-subtitle {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
}

.ph-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  max-width: 400px;
}

.pha-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.pha-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pha-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
}

.pha-date {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.ph-toc-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.article-toc {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--text-muted);
  position: relative;
}

.article-toc::after {
  content: '';
  position: absolute;
  top: -4px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--text-muted);
  opacity: 0.1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}

.toc-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-list li {
  position: relative;
  padding-left: 0;
}

.toc-list a {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.2s;
}

.toc-list a:hover {
  color: var(--primary);
}

/* Full Width Image */
.post-hero-image {
  padding: 0 32px;
  margin-bottom: 64px;
}

/* Guide post hero: same width as .post-main-container (uses .container) */
.page-guide-post .post-hero.post-hero--guide {
  padding-top: 24px;
  padding-bottom: 16px;
  box-sizing: border-box;
}

/* Guide post: full-viewport hero (edge-to-edge, fills screen below sticky header) */
.page-guide-post .gp-breadcrumb {
  margin-bottom: 0.75rem;
}

.page-guide-post .gp-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #64748b;
}

.page-guide-post .gp-breadcrumb__list a {
  color: var(--primary);
  text-decoration: none;
}

.page-guide-post .gp-breadcrumb__list a:hover {
  text-decoration: underline;
}

.page-guide-post .gp-breadcrumb__list [aria-current='page'] {
  color: #0f172a;
  font-weight: 600;
}

.page-guide-post .post-hero.post-hero--guide-fit {
  padding: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #ffffff;
  min-height: calc(100svh - var(--sticky-header-offset, 5.5rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.page-guide-post .post-hero__guide-inner {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: clamp(1rem, 2.5vw, 1.75rem) clamp(16px, 4vw, 40px);
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.page-guide-post .post-hero--guide-fit .ph-layout--guide-hero {
  flex: 1;
  align-items: stretch;
  gap: clamp(1.25rem, 4vw, 3.5rem);
  min-height: 0;
}

.page-guide-post .post-hero--guide-fit .ph-layout--guide-hero .ph-content {
  max-width: none;
  flex: 1 1 48%;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.page-guide-post .post-hero--guide-fit .ph-hero-visual {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 48%;
  min-width: 0;
  padding: clamp(8px, 1.5vw, 18px) 0;
  box-sizing: border-box;
}

.page-guide-post .post-hero--guide-fit .ph-hero-cover-img {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  flex: 1 1 auto;
  min-height: min(360px, 48vh);
  max-height: min(72vh, 680px);
  height: auto;
  aspect-ratio: unset;
  object-fit: cover;
}

.page-guide-post .post-hero .ph-layout--guide-hero {
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2rem);
  width: 100%;
}

.page-guide-post .post-hero .ph-layout--guide-hero .ph-content {
  flex: 1 1 50%;
  min-width: 0;
  max-width: 38rem;
}

.page-guide-post .post-hero .ph-meta {
  margin-bottom: 14px;
}

.page-guide-post .post-hero .ph-pill {
  font-size: 0.8rem;
  padding: 8px 14px;
}

.page-guide-post .post-hero .ph-meta-text {
  font-size: 0.95rem;
}

.page-guide-post .post-hero .ph-title {
  font-size: clamp(2.25rem, 4.2vw, 3.35rem);
  line-height: 1.14;
  margin-bottom: 14px;
}

.page-guide-post .post-hero .ph-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.page-guide-post .post-hero .ph-author {
  padding-top: 18px;
  margin-top: 0;
}

.page-guide-post .post-hero .pha-img {
  width: 56px;
  height: 56px;
}

.page-guide-post .post-hero .pha-name {
  font-size: 1.05rem;
}

.page-guide-post .post-hero .pha-date {
  font-size: 0.75rem;
}

.page-guide-post .ph-hero-visual {
  flex: 1 1 40%;
  min-width: 0;
  max-width: 100%;
  align-self: center;
}

.page-guide-post .ph-hero-visual[hidden] {
  display: none !important;
}

.page-guide-post .ph-hero-cover-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .page-guide-post .post-hero.post-hero--guide-fit {
    min-height: auto;
    justify-content: flex-start;
  }

  .page-guide-post .post-hero__guide-inner {
    flex: none;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .page-guide-post .post-hero--guide-fit .ph-hero-visual {
    padding: clamp(12px, 3vw, 20px) 0;
  }

  .page-guide-post .post-hero--guide-fit .ph-hero-cover-img {
    min-height: 220px;
    max-height: min(52vh, 480px);
    max-width: 100%;
  }

  .page-guide-post .post-hero .ph-layout--guide-hero {
    flex-direction: column;
  }

  .page-guide-post .ph-hero-visual {
    flex: none;
    max-width: none;
    width: 100%;
    align-self: stretch;
    order: 2;
  }

  .page-guide-post .post-hero .ph-layout--guide-hero .ph-content {
    order: 1;
    max-width: none;
  }
}

.phi-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Main Layout */
.post-main-container {
  padding: 0 32px;
}

.page-guide-post .post-main-container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}

@media (max-width: 768px) {
  .page-guide-post .post-main-container {
    padding-left: max(clamp(16px, 4vw, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(16px, 4vw, 40px), env(safe-area-inset-right, 0px));
  }
}

.post-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* Left Share Sidebar */
.post-share-sidebar {
  flex: 0 0 60px;
}

.share-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.share-lbl {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  transform: rotate(-90deg);
  margin-bottom: 24px;
  margin-top: 24px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.share-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.share-btn i {
  width: 18px;
  height: 18px;
}

/* Core Content */
.post-core-content {
  flex: 1;
  min-width: 0;
}

.post-core-content h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: #020617;
  margin: 48px 0 24px;
  line-height: 1.2;
}

.post-core-content h2:first-child {
  margin-top: 0;
}

.post-core-content h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #020617;
  margin: 40px 0 20px;
}

.post-core-content p {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Guide detail: markdown from CMS (marked.js) */
.post-core-content.cr-article .rich-text-body.guide-post-md {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-main);
  max-width: 48rem;
}

.post-core-content.cr-article .guide-post-md>*:first-child {
  margin-top: 0;
}

.post-core-content.cr-article .guide-post-md h1,
.post-core-content.cr-article .guide-post-md h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #020617;
  line-height: 1.15;
  margin: 2rem 0 1rem;
}

.post-core-content.cr-article .guide-post-md h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.post-core-content.cr-article .guide-post-md h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin-top: 2.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border-light);
}

.post-core-content.cr-article .guide-post-md h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: #0f172a;
  line-height: 1.25;
}

.post-core-content.cr-article .guide-post-md h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: #334155;
}

.post-core-content.cr-article .guide-post-md p {
  margin: 0 0 1.25em;
  font-size: inherit;
  line-height: inherit;
}

.post-core-content.cr-article .guide-post-md ul,
.post-core-content.cr-article .guide-post-md ol {
  margin: 0 0 1.25em;
  padding-left: 1.5em;
}

.post-core-content.cr-article .guide-post-md li {
  margin-bottom: 0.5em;
}

.post-core-content.cr-article .guide-post-md li::marker {
  color: var(--primary);
}

.post-core-content.cr-article .guide-post-md blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--primary);
  background: #f8fafc;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #475569;
}

.post-core-content.cr-article .guide-post-md blockquote p:last-child {
  margin-bottom: 0;
}

.post-core-content.cr-article .guide-post-md hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--border);
}

.post-core-content.cr-article .guide-post-md a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-core-content.cr-article .guide-post-md a:hover {
  color: var(--primary-hover);
}

.post-core-content.cr-article .guide-post-md code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  background: #f1f5f9;
  padding: 0.15em 0.45em;
  border-radius: 4px;
  color: #0f172a;
}

.post-core-content.cr-article .guide-post-md pre {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.55;
}

.post-core-content.cr-article .guide-post-md pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.post-core-content.cr-article .guide-post-md img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-md);
}

.post-core-content.cr-article .guide-post-md table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.post-core-content.cr-article .guide-post-md th,
.post-core-content.cr-article .guide-post-md td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.85rem;
  text-align: left;
}

.post-core-content.cr-article .guide-post-md th {
  background: #f8fafc;
  font-weight: 700;
}

/* Editorial Inset */
.editorial-inset {
  display: flex;
  gap: 24px;
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  padding: 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 48px 0;
  box-shadow: var(--shadow-sm);
}

.ei-icon i {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.ei-content h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #020617;
  margin-bottom: 8px;
  font-weight: 700;
}

.ei-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.ei-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}

.ei-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

.ei-tc {
  font-size: 0.6rem;
  color: var(--text-light);
}

/* Pro Tips Grid */
.pro-tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}

.pt-card {
  background: #f4f4f5;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.pt-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
}

.pt-icon.blue {
  color: var(--primary);
}

.pt-icon.gold {
  color: #b45309;
}

.pt-card h4 {
  font-size: 1.1rem;
  color: #020617;
  margin-bottom: 8px;
  font-weight: 700;
}

.pt-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* In-post FAQ */
.post-faq {
  margin: 64px 0;
}

.faq-title.left-align {
  text-align: left;
}

/* Author Bio Block */
.post-author-bio {
  background: #18181b;
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 80px;
  box-shadow: var(--shadow-lg);
}

.pab-img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
}

.pab-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: white;
  margin: 0 0 12px;
  font-weight: 700;
}

.pab-content p {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pab-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pab-links a {
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #27272a;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}

.pab-links a:hover {
  background: var(--primary);
}

/* Right Sidebar */
.post-right-sidebar {
  flex: 0 0 320px;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Guide post: stretch columns so the aside is as tall as the article (required for sticky to track the scroll) */
.page-guide-post .post-layout {
  align-items: stretch;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-top: clamp(64px, 8vw, 88px);
  padding-bottom: clamp(12px, 2vw, 22px);
  /* Horizontal inset comes from `.post-main-container` only - avoid doubling with inner padding */
  padding-left: 0;
  padding-right: 0;
}

/* Guide post: article uses full row (no “Latest” rail beside body) */
.page-guide-post .post-core-content {
  flex: 1 1 0;
  min-width: 0;
}

/* Guide post: article and “Latest” share width; body uses full column (no inner 48rem cap) */
.page-guide-post .post-core-content.cr-article .rich-text-body.guide-post-md {
  max-width: none;
}

.page-guide-post .post-core-content.cr-article .guide-post-md>h1:first-child,
.page-guide-post .post-core-content.cr-article .guide-post-md>h2:first-child {
  margin-top: 0;
}

/* Guide post: “Latest” band below article (grid of cards) */
.gp-related-latest-section {
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, #fafafa 0%, #f1f5f9 100%);
  border-top: 1px solid var(--border-light);
}

.gp-related-latest-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.page-guide-post .gp-related-latest-inner {
  max-width: var(--container-max-width);
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
  box-sizing: border-box;
}

.gp-related-latest-head {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.page-guide-post .gp-related-latest-section .gp-related-title {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.page-guide-post .gp-related-latest-section .gp-related-dek {
  margin-bottom: 0;
}

.gp-related-latest-foot {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  justify-content: center;
}

.gp-related-latest-foot .gp-related-all {
  margin-top: 0;
}

.gp-related-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #020617;
  margin: 0;
  letter-spacing: -0.02em;
}

.gp-related-dek {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 4px;
  line-height: 1.45;
}

.gp-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp-related-list--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

.gp-related-list--grid>li {
  min-width: 0;
  display: flex;
}

.gp-related-loading {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
}

.gp-related-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.gp-related-list--grid .gp-related-card {
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

.gp-related-list--grid .gp-related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gp-related-card:hover {
  border-color: rgba(51, 190, 179, 0.45);
  box-shadow: var(--shadow-sm);
}

.gp-related-card__img {
  flex-shrink: 0;
  width: 88px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
  padding: 4px;
  box-sizing: border-box;
}

.gp-related-list--grid .gp-related-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  padding: 0;
}

.gp-related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gp-related-list--grid .gp-related-card__img img {
  object-fit: cover;
}

.gp-related-list--grid .gp-related-card__body {
  padding: 16px 18px 18px;
  gap: 6px;
}

.gp-related-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gp-related-card__cat {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.gp-related-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gp-related-card__meta {
  font-size: 0.72rem;
  color: var(--text-light);
}

.gp-related-card__meta-inner {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.gp-related-card__star {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #f59e0b;
}

.gp-related-card__star svg {
  width: 13px;
  height: 13px;
}

.gp-related-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  margin-top: 6px;
  transition: gap 0.2s ease;
}

.gp-related-all i,
.gp-related-all svg {
  width: 16px;
  height: 16px;
}

.gp-related-all:hover {
  gap: 10px;
}

@media (max-width: 900px) {
  .gp-related-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gp-related-list--grid {
    grid-template-columns: 1fr;
  }
}

.rs-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.rs-rec-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rs-rec-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: transform 0.2s;
}

.rs-rec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rs-rec-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.rs-rec-content {
  padding: 20px;
}

.rs-rec-content.no-img {
  padding: 24px;
}

.rs-rec-content h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
  line-height: 1.3;
}

.rs-rec-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.rs-premium-widget {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.3);
}

.pw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pw-badge i {
  width: 12px;
  height: 12px;
  color: white;
}

.pw-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
}

.pw-desc {
  font-size: 0.9rem;
  color: #e0e7ff;
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn-full {
  width: 100%;
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.btn-primary.bg-white.text-blue {
  background: white;
  color: var(--primary);
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 8px;
  padding: 14px;
}

.btn-primary.bg-white.text-blue:hover {
  background: #f1f5f9;
}

.pw-tc {
  font-size: 0.55rem;
  color: #bfdbfe;
  opacity: 0.8;
  line-height: 1.4;
}

.rs-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-light);
}

.rs-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.rs-badges i {
  width: 14px;
  height: 14px;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .ph-layout {
    flex-direction: column;
  }

  .ph-toc-wrapper {
    width: 100%;
    justify-content: flex-start;
  }

  .article-toc {
    max-width: 100%;
  }

  .post-layout {
    flex-wrap: wrap;
  }

  .post-share-sidebar {
    display: none;
  }

  .post-right-sidebar {
    flex: 1 1 100%;
  }

  .page-guide-post .post-core-content,
  .page-guide-post .post-right-sidebar {
    flex: 1 1 100%;
  }

  .sidebar-sticky {
    position: static;
  }

  .rs-rec-list {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .rs-rec-list {
    flex-direction: column;
  }

  .pro-tips-grid {
    grid-template-columns: 1fr;
  }

  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }

  .pab-links {
    justify-content: center;
  }
}

/* ========================================= */
/* News Page specific (mirrors guides rhythm; Casino News hero + navy accents) */
/* ========================================= */
.news-page {
  background: #fafafa;
  padding-bottom: 120px;
}

/* Wider left/right inset than default `.container` (20px); hero & grid set their own padding and ignore this */
body.page-news .container {
  padding-left: max(32px, env(safe-area-inset-left, 32px));
  padding-right: max(32px, env(safe-area-inset-right, 32px));
}

/* Hero: extra space after the 3px accent bar so copy never sits flush to it */
body.page-news .news-hero-inner.container {
  padding-left: calc(max(32px, env(safe-area-inset-left, 32px)) + 1.25rem);
  padding-right: max(32px, env(safe-area-inset-right, 32px));
}

/* Hero band is full width; horizontal inset lives on `.news-hero-inner.container` only */
body.page-news .guides-hero {
  padding: clamp(3.5rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 2.5rem);
}

body.page-news .guides-grid-section {
  padding-top: clamp(2.25rem, 5.5vw, 3.75rem);
  padding-left: max(48px, env(safe-area-inset-left, 48px));
  padding-right: max(48px, env(safe-area-inset-right, 48px));
}

.page-news .news-hero-inner {
  position: relative;
}

/* Accent: line up with text column (same inset as container padding on this inner) */
.page-news .news-hero-inner::before {
  content: '';
  position: absolute;
  left: max(32px, env(safe-area-inset-left, 32px));
  top: 0.75rem;
  bottom: 0.5rem;
  width: 3px;
  background: linear-gradient(180deg, #1e3a5f 0%, var(--primary) 100%);
  border-radius: 0 3px 3px 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .page-news .news-hero-inner::before {
    display: none;
  }

  body.page-news .container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  body.page-news .news-hero-inner.container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  body.page-news .guides-grid-section {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  body.page-news .bonuses-breadcrumb {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }
}

.page-news .news-hero-brand .gh-title {
  font-weight: 700;
  color: #0f172a;
}

.page-news .news-hero-brand .gh-title em {
  color: var(--primary);
  font-style: italic;
}

.page-news .news-hero-brand .gh-desc {
  max-width: 52rem;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

.page-news .gh-filter-btn.active {
  background: #1e3a5f;
  border-color: #1e3a5f;
  color: #fff;
}

.page-news .gh-filter-btn:hover:not(.active) {
  border-color: #94a3b8;
  color: #0f172a;
}

.page-news .guides-interstitial .gi-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-left-color: #1e3a5f;
}

.page-news .news-faq .section-header p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================= */
/* About + Privacy + Terms + Contact (editorial / legal static pages) */
/* ========================================= */
.about-page,
.privacy-page,
.terms-page,
.contact-page,
.how-we-rate-page {
  background: #fafafa;
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.page-about .about-hero-brand,
.page-privacy .privacy-hero-brand,
.page-terms .terms-hero-brand,
.page-contact .contact-hero-brand,
.page-how-we-rate .how-we-rate-hero-brand {
  position: relative;
}

.page-about .about-hero-brand::before,
.page-privacy .privacy-hero-brand::before,
.page-terms .terms-hero-brand::before,
.page-contact .contact-hero-brand::before,
.page-how-we-rate .how-we-rate-hero-brand::before {
  content: '';
  position: absolute;
  left: max(32px, env(safe-area-inset-left, 32px));
  top: 0.75rem;
  bottom: 0.5rem;
  width: 3px;
  background: linear-gradient(180deg, #1e3a5f 0%, var(--primary) 100%);
  border-radius: 0 3px 3px 0;
  pointer-events: none;
}

@media (max-width: 640px) {

  .page-about .about-hero-brand::before,
  .page-privacy .privacy-hero-brand::before,
  .page-terms .terms-hero-brand::before,
  .page-contact .contact-hero-brand::before,
  .page-how-we-rate .how-we-rate-hero-brand::before {
    display: none;
  }

  .page-about .guides-hero.about-hero-brand,
  .page-privacy .guides-hero.privacy-hero-brand,
  .page-terms .guides-hero.terms-hero-brand,
  .page-contact .guides-hero.contact-hero-brand,
  .page-how-we-rate .guides-hero.how-we-rate-hero-brand {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }
}

.page-about .about-hero-brand .gh-title,
.page-privacy .privacy-hero-brand .gh-title,
.page-terms .terms-hero-brand .gh-title,
.page-contact .contact-hero-brand .gh-title,
.page-how-we-rate .how-we-rate-hero-brand .gh-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-about .about-hero-brand .gh-title em,
.page-privacy .privacy-hero-brand .gh-title em,
.page-terms .terms-hero-brand .gh-title em,
.page-contact .contact-hero-brand .gh-title em,
.page-how-we-rate .how-we-rate-hero-brand .gh-title em {
  color: var(--primary);
  font-style: italic;
}

/* Legal / static pages: hero intro full column width (matches contact.html) */
.page-about .about-hero-brand .gh-desc,
.page-privacy .privacy-hero-brand .gh-desc,
.page-terms .terms-hero-brand .gh-desc,
.page-contact .contact-hero-brand .gh-desc,
.page-how-we-rate .how-we-rate-hero-brand .gh-desc {
  max-width: none;
  width: 100%;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

.page-privacy .privacy-hero-brand .gh-desc a,
.page-terms .terms-hero-brand .gh-desc a,
.page-contact .contact-hero-brand .gh-desc a,
.page-how-we-rate .how-we-rate-hero-brand .gh-desc a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-privacy .privacy-hero-brand .gh-desc a:hover,
.page-terms .terms-hero-brand .gh-desc a:hover,
.page-contact .contact-hero-brand .gh-desc a:hover,
.page-how-we-rate .how-we-rate-hero-brand .gh-desc a:hover {
  color: #1e3a5f;
}

/* Legal / static pages: roomier hero + space before main content */
.page-about .guides-hero,
.page-privacy .guides-hero,
.page-terms .guides-hero,
.page-contact .guides-hero,
.page-how-we-rate .guides-hero {
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
  padding-left: 32px;
  padding-right: 32px;
}

/* Same pattern as news: gap between 3px accent and title/body (hero has .about-hero-brand etc.) */
.page-about .guides-hero.about-hero-brand,
.page-privacy .guides-hero.privacy-hero-brand,
.page-terms .guides-hero.terms-hero-brand,
.page-contact .guides-hero.contact-hero-brand,
.page-how-we-rate .guides-hero.how-we-rate-hero-brand {
  padding-left: calc(max(32px, env(safe-area-inset-left, 32px)) + 1.25rem);
  padding-right: max(32px, env(safe-area-inset-right, 32px));
}

.page-about .about-hero-brand .gh-desc,
.page-privacy .privacy-hero-brand .gh-desc,
.page-terms .terms-hero-brand .gh-desc,
.page-contact .contact-hero-brand .gh-desc,
.page-how-we-rate .how-we-rate-hero-brand .gh-desc {
  margin-bottom: clamp(2rem, 3vw, 2.75rem);
}

.privacy-last-updated,
.terms-last-updated {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: #64748b;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.about-article,
.privacy-article,
.terms-article,
.how-we-rate-article {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  padding-top: 1.25rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.about-article__intro h2,
.about-section h2,
.privacy-article__intro h2,
.privacy-section h2,
.terms-article__intro h2,
.terms-section h2,
.how-we-rate-article__intro h2,
.how-we-rate-section h2,
.contact-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.about-article__intro p,
.about-section p,
.privacy-article__intro p,
.privacy-section p,
.terms-article__intro p,
.terms-section p,
.how-we-rate-article__intro p,
.how-we-rate-section p,
.contact-section p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
  margin: 0 0 1.5rem;
}

.about-article__intro p:last-child,
.about-section p:last-child,
.privacy-article__intro p:last-child,
.privacy-section p:last-child,
.terms-article__intro p:last-child,
.terms-section p:last-child,
.how-we-rate-article__intro p:last-child,
.how-we-rate-section p:last-child,
.contact-section p:last-child {
  margin-bottom: 0;
}

.about-article__intro,
.privacy-article__intro,
.terms-article__intro,
.how-we-rate-article__intro {
  margin-bottom: clamp(2.75rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.25rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.about-section,
.privacy-section,
.terms-section,
.how-we-rate-section,
.contact-section {
  margin-bottom: clamp(2.75rem, 5vw, 3.5rem);
}

.about-section:last-of-type,
.privacy-section:last-of-type,
.terms-section:last-of-type,
.how-we-rate-section:last-of-type,
.contact-section:last-of-type {
  margin-bottom: 0;
}

.about-section a,
.privacy-section a,
.terms-section a,
.how-we-rate-section a,
.contact-section a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.about-section a:hover,
.privacy-section a:hover,
.terms-section a:hover,
.how-we-rate-section a:hover,
.contact-section a:hover {
  color: #1e3a5f;
}

.privacy-list,
.terms-list {
  margin: 0.35rem 0 1.5rem;
  padding-left: 1.35rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

.privacy-list li,
.terms-list li {
  margin-bottom: 1rem;
}

.privacy-list li:last-child,
.terms-list li:last-child {
  margin-bottom: 0;
}

.page-how-we-rate .terms-list--with-icons {
  list-style: none;
  padding-left: 0;
}

.page-how-we-rate .terms-list--with-icons > li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.page-how-we-rate .terms-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 0.35rem;
  line-height: 0;
}

.page-how-we-rate .terms-list__icon svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.5;
}

.page-how-we-rate .terms-list__body {
  flex: 1;
  min-width: 0;
}

.page-about .about-faq .section-header p,
.page-how-we-rate .how-we-rate-faq .section-header p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.how-we-rate-section h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.01em;
}

.how-we-rate-toc {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.how-we-rate-toc h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.85rem;
}

.how-we-rate-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.how-we-rate-toc ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.page-how-we-rate .how-we-rate-toc__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 0.2rem;
  line-height: 0;
}

.page-how-we-rate .how-we-rate-toc__icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

.how-we-rate-toc a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.how-we-rate-toc a:hover {
  color: #1e3a5f;
}

.page-about .guides-interstitial,
.page-privacy .guides-interstitial,
.page-terms .guides-interstitial,
.page-contact .guides-interstitial,
.page-how-we-rate .guides-interstitial {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}

.page-about .guides-interstitial .gi-card,
.page-privacy .guides-interstitial .gi-card,
.page-terms .guides-interstitial .gi-card,
.page-contact .guides-interstitial .gi-card,
.page-how-we-rate .guides-interstitial .gi-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-left-color: #1e3a5f;
  padding: clamp(2.25rem, 4vw, 3rem) clamp(1.75rem, 4vw, 2.75rem);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.page-about .about-faq.seo-accordion {
  padding-top: clamp(5rem, 9vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 7rem);
}

.page-about .about-faq .section-header {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.page-about .about-faq .accordion--two-cols {
  gap: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
}

.page-about .about-faq .accordion--two-cols .accordion-col {
  gap: clamp(1rem, 2vw, 1.25rem);
}

/* Contact + About/Privacy/Terms: main column below hero (same width as .container) */
.contact-layout,
.static-page-layout {
  width: 100%;
  box-sizing: border-box;
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-email-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(2rem, 3.5vw, 2.85rem) clamp(1.75rem, 3vw, 2.25rem) clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 2.5vw, 1.85rem);
  margin-bottom: clamp(2.75rem, 5vw, 3.75rem);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md, 12px);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(15, 23, 42, 0.06));
}

.contact-email-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.1) 0%, rgba(30, 58, 95, 0.12) 100%);
  color: var(--primary);
}

.contact-email-card__icon i,
.contact-email-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-email-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.35rem;
}

.contact-email-card__dek {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 0.5rem;
}

.contact-email-card__link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  word-break: break-all;
}

.contact-email-card__link:hover {
  color: #1e3a5f;
}

.contact-email-card__note {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}

.contact-email-card__note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-email-card__note a:hover {
  color: #1e3a5f;
}

/* ========================================= */
/* Global Brand Overrides */
/* ========================================= */
.site-logo {
  height: 32px;
  width: auto;
  display: block;
}

/* ========================================= */
/* Slots Page specific */
/* ========================================= */
.slots-page {
  background: #fafafa;
  padding-bottom: 120px;
}

/* Hero: with `.container`, horizontal inset comes from site container only */
.slots-hero {
  padding: 80px 32px 40px;
}

.page-slots .slots-hero.container {
  padding: clamp(48px, 7vw, 72px) 0 36px;
  box-sizing: border-box;
}

.page-slots .slots-hero .dh-badge {
  font-size: 0.75rem;
  padding: 8px 14px;
  gap: 6px;
}

.page-slots .slots-hero .dh-badge i {
  width: 15px;
  height: 15px;
}

.slots-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.8vw, 3.35rem);
  font-weight: 700;
  color: #020617;
  line-height: 1.12;
  margin: 18px 0 16px;
  letter-spacing: -0.02em;
  max-width: none;
}

.slots-hero-desc {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: none;
  line-height: 1.58;
}

.slots-hero-desc .text-blue {
  color: var(--primary);
  font-weight: 700;
  font-style: normal;
}

.slots-hero-desc--secondary {
  margin-top: 1rem;
  font-family: var(--font-sans, Inter, system-ui, sans-serif);
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.62;
  max-width: none;
}

.slots-hero-desc--secondary a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.slots-hero-desc--secondary a:hover {
  color: #2a9d91;
}

/* Filter Bar (uses `.container`; do not set max-width here or it overrides `.container`) */
.slots-filter-section {
  padding: 0;
  margin-bottom: 48px;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: clip;
}

.slots-filter-bar {
  background: #f1f5f9;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.sf-search {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.sf-search label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sf-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 10px 16px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  box-sizing: border-box;
}

.sf-input-wrap i {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.sf-input-wrap input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text-main);
}

.sf-dropdowns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.sf-dropdown {
  background: white;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
  font-size: 0.85rem;
  font-weight: 600;
  color: #020617;
}

.sf-dropdown--field {
  cursor: default;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 0;
  flex: 1 1 10rem;
  /* Single surface: label + select only (no nested white card) */
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.sf-dropdown.sf-dropdown--field:hover {
  border-color: transparent;
}

.sf-dropdown-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.sf-select {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px 36px 10px 12px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background:
    #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #020617;
  font-family: var(--font-sans);
  cursor: pointer;
  appearance: none;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.sf-select:hover,
.sf-select:focus {
  border-color: #cbd5e1;
}

.sf-select:focus {
  outline: 2px solid rgba(51, 190, 179, 0.35);
  outline-offset: 0;
}

.sf-dropdown:hover {
  border-color: #cbd5e1;
}

.sf-dropdown i {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.sf-actions {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

.sf-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: transparent;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
  padding: 10px 18px;
  box-sizing: border-box;
}

.sf-clear-btn:hover {
  color: var(--primary-hover);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(51, 190, 179, 0.25);
}

.sf-clear-btn:focus-visible {
  outline: 2px solid rgba(51, 190, 179, 0.45);
  outline-offset: 2px;
}

/* Slots filter: one horizontal row on laptop / desktop (992px+) */
@media (min-width: 992px) {
  .slots-filter-bar {
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: clamp(14px, 1.6vw, 24px);
  }

  .sf-search {
    flex: 1 1 200px;
    min-width: 0;
  }

  .sf-dropdowns {
    flex: 0 1 auto;
    flex-wrap: nowrap;
    align-items: flex-end;
  }

  .sf-dropdown.sf-dropdown--field {
    flex: 0 1 10rem;
    min-width: 7.5rem;
  }

  .sf-dropdowns .sf-dropdown--field:first-child {
    flex-basis: 11.5rem;
    min-width: 9rem;
  }

  .sf-actions {
    flex: 0 0 auto;
    align-self: flex-end;
  }
}

/* Slots Grid: 4 columns on large screens, 8 items per page (see SLOTS_PAGE_SIZE in script.js) */
.slots-grid-section {
  margin-bottom: 8px;
}

/* Intro copy above grid: supports SEO heading hierarchy (h1 hero → h2 library) */
.slots-listing-seo,
.providers-listing-seo {
  max-width: 52rem;
  margin: 0 auto 28px;
  text-align: center;
  padding: 0 8px;
}

.page-slots .slots-listing-seo {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.slots-listing-seo h2,
.providers-listing-seo h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: #020617;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.slots-listing-seo p,
.providers-listing-seo p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  box-sizing: border-box;
  /* Explicit row/column gaps so tiles don’t read as one block */
  row-gap: clamp(24px, 3vw, 40px);
  column-gap: clamp(20px, 2.5vw, 36px);
  margin-bottom: 32px;
}

.slots-grid-disclaimer,
.providers-grid-disclaimer {
  font-size: 0.68rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
  max-width: 52rem;
  margin: 12px auto 0;
  padding: 0 16px 8px;
}

.page-slots .slots-grid-disclaimer {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Slot Card - listing tiles (slots.html); chrome aligned with footer carousel cards */
.slot-card {
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(51, 190, 179, 0.35);
}

/* Art area: full-bleed 16:9, light matte (no dark frame / letterboxing) */
.sc-image-wrap {
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 96px;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.sc-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 44%;
  border-radius: 0;
  background: transparent;
}

.sc-image-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Subtle bottom wash so RTP stays legible on light and dark key art */
  background: linear-gradient(180deg,
      rgba(248, 250, 252, 0) 0%,
      rgba(248, 250, 252, 0) 58%,
      rgba(248, 250, 252, 0.45) 100%);
}

.sc-volatility-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  background: #fff;
  color: #0f172a;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.sc-content {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-family: var(--font-sans);
  gap: 8px;
}

.sc-content-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0;
}

.sc-content .sc-provider-name {
  margin-bottom: 0;
}

.sc-content-head .sc-provider-name {
  flex: 1;
}

.sc-provider-name {
  font-size: 0.62rem;
  font-weight: 800;
  color: #0f2744;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 2px;
}

.sc-provider-name--empty {
  color: #cbd5e1;
  letter-spacing: 0.12em;
}

.sc-rtp-pill {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 6px 10px 7px;
  background: linear-gradient(180deg, #fafcfd 0%, #f4f8fb 100%);
  border: 1px solid rgba(51, 190, 179, 0.45);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  line-height: 1;
}

.sc-rtp-pill__val {
  font-size: 0.95rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.sc-rtp-pill__lbl {
  font-size: 0.5rem;
  font-weight: 800;
  color: #94a3b8;
  margin-top: 3px;
  letter-spacing: 0.12em;
}

.sc-title {
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.sc-dek {
  font-size: 0.74rem;
  line-height: 1.4;
  color: #64748b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sc-quick-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 600;
  color: #1e3a5f;
  margin: 0;
  padding: 0;
}

.sc-quick-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sc-quick-meta__item i {
  width: 13px;
  height: 13px;
  color: var(--primary);
  opacity: 0.85;
  flex-shrink: 0;
}

.sc-quick-meta__item.is-empty {
  color: #cbd5e1;
}

.sc-quick-meta__item.is-empty i {
  color: #cbd5e1;
  opacity: 1;
}

.sc-quick-meta__sep {
  color: #cbd5e1;
  font-weight: 700;
  user-select: none;
}

.sc-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.sc-card-actions .sc-btn {
  margin-bottom: 0;
}

.sc-btn--play {
  background: #fff !important;
  color: var(--primary) !important;
  border: 1.5px solid #cbd5e1 !important;
}

.sc-btn--play:hover {
  background: #f8fafc !important;
  border-color: rgba(45, 212, 191, 0.5) !important;
  color: #0d9488 !important;
}

.sc-btn {
  display: block;
  width: 100%;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #f4f8fb 0%, #eef3f8 100%);
  color: var(--primary);
  border: 1px solid #d8e0ea;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 9px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.sc-btn:hover {
  background: linear-gradient(180deg, #e8f7f5 0%, #dff5f2 100%);
  border-color: rgba(51, 190, 179, 0.5);
  color: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(51, 190, 179, 0.15);
}

.sc-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Responsive: 4 cols → 2 cols → 1 col */
@media (max-width: 1000px) {
  .slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(22px, 3.5vw, 36px);
    column-gap: clamp(18px, 3vw, 28px);
  }
}

/* Slots filter: stack + grid on tablet / phone (below laptop breakpoint) */
@media (max-width: 991px) {
  .slots-filter-bar {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 18px 18px 16px;
  }

  .sf-search {
    flex: 1 1 auto;
    width: 100%;
  }

  .sf-dropdowns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    width: 100%;
  }

  .sf-dropdown.sf-dropdown--field {
    flex: none;
    min-width: 0;
  }

  /* Three filters: two on row one, RTP full width on row two */
  .sf-dropdowns .sf-dropdown--field:nth-child(3) {
    grid-column: 1 / -1;
  }

  .sf-actions {
    padding-bottom: 0;
    align-self: stretch;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .slots-filter-section {
    margin-bottom: 32px;
  }

  .slots-filter-bar {
    padding: 16px 14px 14px;
    padding-left: max(14px, env(safe-area-inset-left, 0px));
    padding-right: max(14px, env(safe-area-inset-right, 0px));
    border-radius: 12px;
    gap: 14px;
  }

  .sf-dropdowns {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sf-input-wrap {
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 10px;
  }

  .sf-input-wrap input {
    font-size: 16px;
    /* avoids iOS zoom on focus */
  }

  .sf-select {
    min-height: 48px;
    font-size: 16px;
    border-radius: 10px;
    padding: 12px 40px 12px 14px;
  }

  .sf-actions {
    margin-top: 2px;
  }

  .sf-clear-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(51, 190, 179, 0.28);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  }

  .sf-clear-btn:hover {
    background: #fff;
    border-color: rgba(51, 190, 179, 0.45);
  }

  .slots-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
    column-gap: 0;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
}

/* ========================================================
   Mobile-first responsive polish (touch, fonts, spacing)
   ======================================================== */

/* Small phones: tighter container, smaller hero type */
@media (max-width: 400px) {
  .container {
    padding-left: max(14px, env(safe-area-inset-left, 14px));
    padding-right: max(14px, env(safe-area-inset-right, 14px));
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-content p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-card--simple {
    padding: 20px 18px;
  }

  .hero-card__headline {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .tier-card .info-header h3 {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .criteria-card {
    padding: 24px 20px;
  }

  .vertical-card {
    padding: 24px 20px;
  }
}

/* Better touch targets globally */
@media (hover: none) and (pointer: coarse) {
  .view-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 10px 2px;
  }

  .tier-expand-btn {
    min-height: 44px;
    padding: 10px 6px;
  }

  .accordion-header {
    min-height: 52px;
    padding: 16px 18px;
  }

  .btn {
    min-height: 48px;
    padding: 14px 28px;
  }

  .info-btn {
    min-width: 48px;
    min-height: 48px;
  }

  .tier-payment-chip {
    min-height: 32px;
  }

  .home-intro__pill {
    min-height: 44px;
    padding: 11px 16px;
  }
}

/* Disable hover-only effects on touch devices */
@media (hover: none) {
  .tier-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }

  .hero-card:hover {
    transform: none;
  }

  .vertical-card:hover {
    transform: none;
  }

  .criteria-card:hover {
    transform: none;
  }

  .home-intro__pill:hover {
    transform: none;
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }
}

/* Mobile section spacing: tighten generous desktop padding */
@media (max-width: 768px) {
  .verticals {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .home-criteria {
    padding: 64px 0;
  }

  .home-why {
    padding: 64px 0;
  }

  .seo-accordion {
    padding: 56px 0;
  }

  .top-providers {
    padding: 64px 0;
  }

  .verticals-grid {
    gap: 16px;
  }

  .vertical-card {
    padding: 28px 22px;
  }

  .vertical-card.large {
    padding: 28px 22px;
  }

  .criteria-grid {
    gap: 14px;
  }
}

/* Smooth card active state for touch feedback */
@media (hover: none) and (pointer: coarse) {
  .tier-card:active {
    transform: scale(0.99);
    box-shadow: var(--shadow-sm);
    transition-duration: 0.1s;
  }

  .vertical-card:active {
    transform: scale(0.98);
    transition-duration: 0.1s;
  }
}

/* Intermediate breakpoint: 2-col verticals for medium phones */
@media (min-width: 480px) and (max-width: 767px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .vertical-card.large {
    grid-column: span 2;
  }
}

/* --- Player reviews (casino / slot / provider detail) - match verdict article layout --- */
.pr-section {
  padding: 48px 0 72px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #fff 100%);
  border-bottom: 1px solid #f1f5f9;
}

.pr-main-shell .cr-verdict-title .pr-count {
  font-family: var(--font-sans, inherit);
  font-size: 0.5em;
  font-weight: 600;
  color: #64748b;
  margin-left: 10px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

.pr-reviews-header {
  margin-bottom: clamp(20px, 3vw, 28px);
}

/* Title “What players say” + sort on one row */
.pr-reviews-panel > .pr-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 14px;
  margin-bottom: 16px;
}

.pr-reviews-panel > .pr-panel-head .cr-verdict-panel-h {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: min(100%, 180px);
}

.pr-reviews-panel > .pr-panel-head .pr-sort {
  flex: 0 0 auto;
  margin-left: auto;
}

/* Player reviews: compact sort (matches verdict / primary palette) */
.pr-sort {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}

.pr-sort[hidden] {
  display: none !important;
}

.pr-sort__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  justify-content: space-between;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--primary);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-sans, inherit);
  line-height: 1.25;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.pr-sort__trigger:hover {
  background: #f8fafc;
  border-color: rgba(51, 190, 179, 0.35);
}

.pr-sort__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.pr-sort__chev {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.18s ease;
}

.pr-sort--open .pr-sort__chev {
  transform: rotate(180deg);
}

.pr-sort__menu {
  position: absolute;
  z-index: 50;
  right: 0;
  top: calc(100% + 5px);
  min-width: 200px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.pr-sort__menu[hidden] {
  display: none !important;
}

.pr-sort__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
}

.pr-sort__opt:last-child {
  border-bottom: none;
}

.pr-sort__opt:hover,
.pr-sort__opt:focus-visible {
  background: #f8fafc;
}

.pr-sort__opt--selected {
  background: rgba(51, 190, 179, 0.12);
  color: #0f172a;
}

.pr-sort__check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0;
}

.pr-sort__opt--selected .pr-sort__check {
  opacity: 1;
}

@media (max-width: 899px) {
  .pr-reviews-panel > .pr-panel-head .pr-sort {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }

  .pr-sort__trigger {
    max-width: 100%;
  }

  .pr-sort__menu {
    left: 0;
    right: 0;
    min-width: 0;
  }
}

.pr-main-shell .pr-summary {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.pr-reviews-panel {
  padding-top: 4px;
}

.pr-reviews-panel .pr-list {
  margin-top: 4px;
}

.pr-summary {
  margin-bottom: clamp(20px, 3vw, 28px);
  padding: clamp(20px, 3vw, 26px) clamp(18px, 2.5vw, 26px);
  border: 1px solid rgba(51, 190, 179, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(51, 190, 179, 0.06) 0%, #ffffff 55%, #f8fafc 100%);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.pr-summary[hidden] {
  display: none !important;
}

.pr-summary__grid {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.pr-summary-kicker {
  margin: 0 0 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.pr-summary-distribution .pr-summary-kicker {
  margin-bottom: 14px;
}

.pr-summary-score {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: clamp(12px, 2vw, 24px);
  border-right: 1px solid rgba(226, 232, 240, 0.95);
}

.pr-summary-distribution {
  min-width: 0;
}

.pr-summary-rating-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.pr-summary-avg {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5vw, 3.1rem);
  font-weight: 700;
  color: #020617;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.pr-summary-max {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
  transform: translateY(-2px);
}

.pr-summary-stars {
  margin-top: 6px;
}

.pr-summary-stars .stars-meter--units {
  font-size: 1.25rem;
  gap: 3px;
}

.pr-summary-stars .star-unit__track {
  color: #e2e8f0;
}

.pr-summary-stars .star-unit__fill {
  color: #f59e0b;
}

.pr-summary-total {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.95);
  border: 1px solid #e2e8f0;
  max-width: 100%;
}

.pr-summary-bars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-bar-row {
  display: grid;
  grid-template-columns: 76px 1fr 42px;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: #475569;
}

.pr-bar-label {
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  color: #64748b;
}

.pr-bar-track {
  height: 9px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.pr-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #0f766e);
  border-radius: 999px;
  min-width: 0;
  transition: width 0.3s ease-out;
}

.pr-bar-pct {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #64748b;
  font-size: 0.78rem;
}

.pr-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pr-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pr-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.pr-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.pr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf, #0f766e);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.pr-avatar--img {
  object-fit: cover;
  background: #f1f5f9;
}

.pr-id {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.pr-name {
  font-weight: 600;
  color: #020617;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pr-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: #f0fdfa;
  border-radius: 999px;
  padding: 2px 8px;
}

.pr-verified i {
  width: 12px;
  height: 12px;
}

.pr-date {
  font-size: 0.82rem;
  color: #64748b;
}

.pr-score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: #020617;
  white-space: nowrap;
}

.pr-score i {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  fill: #f59e0b;
}

.pr-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
  line-height: 1.55;
  color: #334155;
  font-size: 0.94rem;
}

.pr-line i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pr-line--pro i {
  color: #10b981;
}

.pr-line--con i {
  color: #ef4444;
}

.pr-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.pr-helpful {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 6px 14px;
  background: #f8fafc;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: not-allowed;
}

.pr-helpful i {
  width: 14px;
  height: 14px;
}

.pr-empty {
  display: block;
  margin-top: 6px;
}

.pr-empty[hidden] {
  display: none !important;
}

.pr-empty__inner {
  text-align: center;
  padding: clamp(26px, 4vw, 38px) clamp(18px, 3vw, 28px);
  border: 1px dashed rgba(51, 190, 179, 0.38);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(51, 190, 179, 0.06) 0%, rgba(248, 250, 252, 0.95) 45%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pr-empty__icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(51, 190, 179, 0.12);
  border: 1px solid rgba(51, 190, 179, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f766e;
}

.pr-empty__icon-wrap i,
.pr-empty__icon-wrap svg {
  width: 26px;
  height: 26px;
}

.pr-empty__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.pr-empty__dek {
  font-size: 0.88rem;
  line-height: 1.62;
  color: #64748b;
  margin: 0 auto;
  max-width: 38ch;
  font-weight: 500;
}

@media (max-width: 640px) {
  .pr-summary__grid {
    grid-template-columns: 1fr;
  }

  .pr-summary-score {
    border-right: none;
    padding-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  }

  .pr-item {
    padding: 18px;
  }

  .pr-head {
    flex-wrap: wrap;
  }

  .pr-bar-row {
    grid-template-columns: 64px 1fr 36px;
    font-size: 0.78rem;
  }
}