/* ============================================================
   boda8my.com — Design System CSS
   Site: boda8my.com | Bahasa Melayu — Casino Review / Trust Magazine
   Theme: Teal + Amber on dark teal-black (intercept: boda8 → WINMYR)
   Built: 2026-06-12
   ============================================================ */

/* ============================================================
   1. TOKENS & RESET
   ============================================================ */

:root {
  /* Core palette (locked — teal + amber) */
  --bg:        #07120f;
  --surface:   #0e1d18;
  --surface-2: #122620;
  --accent:    #0d9488;   /* teal */
  --accent-2:  #2dd4bf;   /* teal bright */
  --gold:      #f59e0b;   /* amber */
  --gold-2:    #fbbf24;   /* amber bright */
  --text:      #e6f2ee;
  --muted:     #94aaa2;
  --danger:    #ef4444;
  --radius:    14px;
  --maxw:      1180px;

  /* Extended palette */
  --surface-3:     #18352c;
  --accent-dim:    #115e56;
  --accent-glow:   rgba(13, 148, 136, 0.15);
  --accent-border: rgba(13, 148, 136, 0.32);
  --gold-glow:     rgba(245, 158, 11, 0.12);
  --gold-border:   rgba(245, 158, 11, 0.32);
  --text-inv:      #04130f;
  --border:        rgba(148, 170, 162, 0.16);
  --border-strong: rgba(148, 170, 162, 0.30);
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.35);
  --shadow-accent: 0 4px 24px rgba(13, 148, 136, 0.22);
  --shadow-gold:   0 4px 24px rgba(245, 158, 11, 0.22);

  /* Typography */
  --font-head: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;

  /* Spacing */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:   12px;
  --sp-4:   16px;
  --sp-5:   20px;
  --sp-6:   24px;
  --sp-8:   32px;
  --sp-10:  40px;
  --sp-12:  48px;
  --sp-16:  64px;

  /* Z-index scale */
  --z-base:    0;
  --z-raised:  10;
  --z-sticky:  20;
  --z-overlay: 40;
  --z-modal:   100;
  --z-toast:   1000;

  /* Transitions */
  --ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in:   cubic-bezier(0.4, 0.0, 1, 1);
  --ease-std:  cubic-bezier(0.4, 0.0, 0.2, 1);
  --dur-fast:  150ms;
  --dur-base:  200ms;
  --dur-slow:  300ms;
}

/* --- CSS reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
}

/* --- Typography base --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h2 { font-size: clamp(var(--text-xl), 3vw, var(--text-3xl)); }
h3 { font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); font-weight: 600; }

p { max-width: 70ch; color: var(--text); }

strong, b { font-weight: 600; }
em, i { font-style: italic; }
small { font-size: var(--text-sm); }

code, kbd, samp {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--sp-8) 0;
}

/* --- Links --- */
a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
  cursor: pointer;
}

a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:visited { color: var(--accent-2); }

/* --- Images --- */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img { border-radius: 8px; }

ul, ol { list-style: none; }

/* --- Focus / Accessibility --- */
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) { outline: none; }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-4);
  z-index: var(--z-toast);
  background: var(--accent);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius);
  font-weight: 600;
  transition: top var(--dur-fast);
}

.skip-link:focus { top: var(--sp-4); }

/* ============================================================
   2. LAYOUT
   ============================================================ */

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  width: 100%;
}

@media (max-width: 600px) {
  .container { padding-inline: var(--sp-4); }
}

.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-8);
  align-items: start;
}

.layout__main { min-width: 0; }
.layout__sidebar { min-width: 0; }

@media (max-width: 920px) {
  .layout {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .layout__sidebar { order: 2; }
}

.section { padding-block: var(--sp-10); border-top: 1px solid var(--border); }
.section:first-of-type { border-top: none; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-sm);
  color: var(--muted);
  padding-block: var(--sp-3);
  padding-inline: 0;
  list-style: none;
}

.breadcrumbs li { display: flex; align-items: center; gap: var(--sp-1); }

.breadcrumbs li + li::before {
  content: '/';
  color: var(--border-strong);
  font-size: var(--text-xs);
}

.breadcrumbs a { color: var(--muted); font-size: var(--text-sm); }
.breadcrumbs a:hover { color: var(--accent-2); }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ============================================================
   3. HEADER & NAV
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(7, 18, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  text-decoration: none;
  flex-shrink: 0;
}

.logo__img {
  height: auto;
  max-height: 36px;
  max-width: min(220px, 52vw);
  width: auto;
  border-radius: 6px;
}

.logo__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.logo__text span { color: var(--gold); }
.logo:hover { text-decoration: none; opacity: 0.9; }

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--text);
  background: var(--surface-2);
  text-decoration: none;
}

.nav__link.active,
.nav__link[aria-current="page"] {
  color: var(--accent-2);
  background: var(--accent-glow);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}

.mobile-toggle:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
}

.header-bottom {
  display: none;
  padding-bottom: var(--sp-4);
  border-top: 1px solid var(--border);
  margin-top: 1px;
}

.header-bottom.active { display: block; }

.header-bottom .nav {
  flex-direction: column;
  align-items: stretch;
  gap: var(--sp-1);
  padding-top: var(--sp-3);
}

.header-bottom .nav__link {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
}

.header-bottom .btn { margin-top: var(--sp-3); width: 100%; }
.header__cta { flex-shrink: 0; }

@media (max-width: 920px) {
  .nav { display: none; }
  .header__cta.desktop-only { display: none; }
  .mobile-toggle { display: flex; }
}

/* ============================================================
   4. FOOTER
   ============================================================ */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-8);
  margin-top: var(--sp-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}

.footer__brand .logo { margin-bottom: var(--sp-4); }

.footer__tagline {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 32ch;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--sp-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__links a {
  color: var(--muted);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__links a:hover { color: var(--accent-2); text-decoration: none; }

.footer__legal {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.affiliate-disclosure {
  background: var(--surface-2);
  border: 1px solid var(--accent-border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.55;
}

.affiliate-disclosure strong { color: var(--accent-2); }

.footer__badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--danger);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 800;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer__rg { font-size: var(--text-sm); color: var(--muted); }
.footer__rg a { color: var(--accent-2); }
.footer__copyright { font-size: var(--text-xs); color: var(--muted); }

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  list-style: none;
}

.footer__legal-links a {
  font-size: var(--text-xs);
  color: var(--muted);
  text-decoration: none;
}

.footer__legal-links a:hover { color: var(--accent-2); }

@media (max-width: 920px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}

/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 11px var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;

  /* Amber gradient (primary CTA — converts to WINMYR) */
  background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
  color: #1a1206;
  box-shadow: 0 2px 14px rgba(245, 158, 11, 0.35),
              0 1px 3px rgba(0, 0, 0, 0.3);

  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}

.btn:hover {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 100%);
  box-shadow: 0 4px 22px rgba(245, 158, 11, 0.5),
              0 2px 6px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
  text-decoration: none;
  color: #1a1206;
}

.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 6px rgba(245, 158, 11, 0.25);
}

.btn:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Teal variant (secondary / navigational) */
.btn.teal {
  background: linear-gradient(135deg, var(--accent) 0%, #0f766e 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.35), 0 1px 3px rgba(0,0,0,0.3);
}

.btn.teal:hover {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.5);
  color: #fff;
}

/* Ghost variant */
.btn.ghost {
  background: transparent;
  color: var(--accent-2);
  border: 1.5px solid var(--accent);
  box-shadow: none;
}

.btn.ghost:hover {
  background: var(--accent-glow);
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  transform: translateY(-1px);
}

.btn.block { display: flex; width: 100%; }

.btn.sm { padding: 7px var(--sp-4); font-size: var(--text-xs); min-height: 36px; }
.btn.lg { padding: 14px var(--sp-8); font-size: var(--text-base); min-height: 52px; }

/* ============================================================
   6. RANK CARD + RANK BADGE
   ============================================================ */

.rank-list { display: flex; flex-direction: column; gap: var(--sp-4); }

.rank-card {
  display: grid;
  grid-template-columns: 48px 80px 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.rank-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--accent-border);
}

.rank-card--1 { border-left: 3px solid var(--gold); }
.rank-card--2 { border-left: 3px solid #c0c0c0; }
.rank-card--3 { border-left: 3px solid #cd7f32; }

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: var(--text-base);
  font-weight: 800;
  flex-shrink: 0;
  background: var(--surface-2);
  color: var(--muted);
  border: 2px solid var(--border);
}

.rank-badge--1 {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #000;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.rank-badge--2 {
  background: linear-gradient(135deg, #e2e8f0, #94aaa2);
  color: #1e293b;
  border-color: transparent;
}

.rank-badge--3 {
  background: linear-gradient(135deg, #cd7f32, #92400e);
  color: #fff;
  border-color: transparent;
}

.rank-card__logo {
  width: 80px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--surface-2);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.rank-card__logo-placeholder {
  width: 80px;
  height: 48px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px dashed var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: var(--text-sm);
}

.rank-card__info { min-width: 0; flex: 1; }

.rank-card__name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-1);
}

.rank-card__pros {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.rank-card__pro {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--muted);
}

.rank-card__pro::before { content: '✓'; color: var(--accent-2); font-weight: 700; }

.rank-card__cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2);
}

@media (max-width: 920px) {
  .rank-card {
    grid-template-columns: 44px 72px 1fr;
    grid-template-rows: auto auto;
  }
  .rank-card__cta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--sp-3);
    border-top: 1px solid var(--border);
    margin-top: var(--sp-3);
  }
}

@media (max-width: 600px) {
  .rank-card { grid-template-columns: 40px 1fr; padding: var(--sp-4); gap: var(--sp-3); }
  .rank-card__logo, .rank-card__logo-placeholder { display: none; }
  .rank-card__name { font-size: var(--text-base); }
}

/* ============================================================
   7. COMPARE TABLE
   ============================================================ */

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: var(--sp-6) 0;
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--surface);
  font-size: var(--text-sm);
}

.compare-table thead { background: var(--surface-2); }

.compare-table th {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
}

.compare-table td {
  padding: var(--sp-4);
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--surface-2); }

/* Highlighted column (recommended = WINMYR) */
.compare-table th.highlight,
.compare-table td.highlight {
  background: var(--accent-glow);
  color: var(--accent-2);
  border-left: 1px solid var(--accent-border);
  border-right: 1px solid var(--accent-border);
}

.compare-table td.highlight { font-weight: 600; }
.compare-table .win { color: var(--accent-2); font-weight: 700; }
.compare-table .check { color: var(--accent-2); font-weight: 700; }
.compare-table .cross { color: var(--danger); font-weight: 700; }
.compare-table .feature-label { font-weight: 600; color: var(--text); }

@media (max-width: 380px) {
  .compare-table { font-size: var(--text-xs); }
  .compare-table th, .compare-table td { padding: var(--sp-2) var(--sp-3); }
}

/* ============================================================
   8. OFFER CARD
   ============================================================ */

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--gold-border);
}

.offer-card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-2));
}

.offer-card__inner { padding: var(--sp-6); }

.offer-card__type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.offer-card__amount {
  font-size: clamp(var(--text-2xl), 4vw, 2.75rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--sp-2);
}

.offer-card__amount em { color: var(--gold); font-style: normal; }

.offer-card__subtitle {
  font-size: var(--text-base);
  color: var(--muted);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}

.offer-card__terms {
  font-size: var(--text-xs);
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
  margin-top: var(--sp-4);
  line-height: 1.55;
}

.offer-card__cta { margin-top: var(--sp-5); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
}

/* ============================================================
   9. SIDEBAR & TOP PICK
   ============================================================ */

.sidebar { display: flex; flex-direction: column; gap: var(--sp-5); }

.top-pick {
  position: sticky;
  top: 90px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(245,158,11,0.08);
}

.top-pick::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent-2), var(--gold));
}

.top-pick__inner { padding: var(--sp-5); }

.top-pick__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.top-pick__logo {
  width: 100%;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  margin-bottom: var(--sp-4);
}

.top-pick__name {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.top-pick__bonus {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.top-pick__bonus-sub { font-size: var(--text-sm); color: var(--muted); margin-bottom: var(--sp-4); }

.top-pick__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.top-pick__perks li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--muted);
}

.top-pick__perks li svg { color: var(--accent-2); width: 16px; flex-shrink: 0; }

.top-pick__cta { margin-bottom: var(--sp-3); }

.top-pick__disclaimer {
  font-size: var(--text-xs);
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
}

.sidebar-widget__title {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.sidebar-widget ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.sidebar-widget li a { font-size: var(--text-sm); color: var(--muted); }
.sidebar-widget li a:hover { color: var(--accent-2); }

/* ============================================================
   10. FAQ ITEM (CSS-only accordion via <details>)
   ============================================================ */

.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}

.faq-item[open] { border-color: var(--accent-border); }

.faq-item__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: color var(--dur-fast) var(--ease-out);
}

.faq-item summary.faq-item__label::-webkit-details-marker { display: none; }
.faq-item__label:hover { color: var(--accent-2); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: 50%;
  color: var(--muted);
  font-size: var(--text-xs);
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}

.faq-item[open] summary .faq-item__icon {
  transform: rotate(180deg);
  background: var(--accent-glow);
  color: var(--accent-2);
}

.faq-item[open] summary { color: var(--accent-2); }

.faq-item__body {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-4);
}

.faq-item__body p + p { margin-top: var(--sp-3); }
.faq-item__body a { color: var(--accent-2); }

/* ============================================================
   11. GEO BOX (definitional answer block)
   ============================================================ */

.geo-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
}

.geo-box__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: var(--sp-3);
}

.geo-box__title { font-size: var(--text-xl); font-weight: 700; color: var(--text); margin-bottom: var(--sp-3); }
.geo-box__body { font-size: var(--text-base); color: var(--muted); line-height: 1.7; max-width: none; }
.geo-box__body p + p { margin-top: var(--sp-3); }

/* ============================================================
   12. STEP CARD
   ============================================================ */

.step-card {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--sp-4);
}

.step-card__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #0f766e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.step-card__body h3 { margin-bottom: var(--sp-2); font-size: var(--text-lg); }
.step-card__body p { font-size: var(--text-sm); color: var(--muted); max-width: none; }

/* ============================================================
   13. LAST UPDATED
   ============================================================ */

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--muted);
  margin-bottom: var(--sp-5);
}

.last-updated time { font-weight: 500; }
.last-updated a { color: var(--accent-2); }

/* ============================================================
   14. GAME CARD & CARD GRID
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--sp-4);
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-border);
  text-decoration: none;
}

.game-card__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--surface-2);
  border-radius: 0;
}

.game-card__thumb-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.game-card__body {
  padding: var(--sp-3);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.game-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.game-card__provider { font-size: var(--text-xs); color: var(--muted); }

.game-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--sp-2);
}

.game-card__rtp { font-size: var(--text-xs); font-weight: 700; color: var(--accent-2); }

.game-card__badge {
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-2);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-card__badge--hot { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1206; }
.game-card__badge--new { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #04130f; }

@media (max-width: 600px) {
  .card-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--sp-3); }
}

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

/* ============================================================
   15. PROSE (Long-form article typography)
   ============================================================ */

.prose { color: var(--text); font-size: var(--text-base); line-height: 1.75; max-width: 72ch; }
.prose > * + * { margin-top: 1.4em; }

.prose h2 {
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 2.2em;
  margin-bottom: 0.8em;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  scroll-margin-top: 90px;
}

.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.prose h3 {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
  font-weight: 700;
  color: var(--text);
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  scroll-margin-top: 90px;
}

.prose h4 { font-size: var(--text-lg); font-weight: 700; color: var(--text); margin-top: 1.5em; margin-bottom: 0.5em; }
.prose p { color: var(--text); max-width: none; }

.prose a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent-border);
  font-weight: 500;
}

.prose a:hover { color: var(--gold); text-decoration-color: var(--gold); }

.prose ul, .prose ol { padding-left: var(--sp-6); }
.prose ul { list-style: none; }
.prose ul > li { position: relative; padding-left: var(--sp-5); }

.prose ul > li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

.prose ol { list-style: decimal; }
.prose ol > li { padding-left: var(--sp-2); }
.prose ol > li::marker { color: var(--accent-2); font-weight: 700; }
.prose li { margin-bottom: 0.4em; }

.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-6) 0;
  background: var(--gold-glow);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  font-style: italic;
  font-size: var(--text-lg);
}

.prose blockquote p { margin: 0; }

/* Table inside prose */
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  margin: var(--sp-6) 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.prose thead { background: var(--surface-2); }

.prose th {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  border-bottom: 1px solid var(--border-strong);
}

.prose td { padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--border); vertical-align: middle; }
.prose tbody tr:last-child td { border-bottom: none; }
.prose tbody tr:hover td { background: var(--surface-2); }
.prose img { border-radius: var(--radius); border: 1px solid var(--border); width: 100%; height: auto; }
.prose figure { margin: var(--sp-6) 0; }
.prose figcaption { text-align: center; font-size: var(--text-sm); color: var(--muted); margin-top: var(--sp-2); }

.prose .callout {
  display: flex;
  gap: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.prose .callout--tip   { border-left: 4px solid var(--accent); }
.prose .callout--warn  { border-left: 4px solid var(--gold); }
.prose .callout--alert { border-left: 4px solid var(--danger); }
.prose .callout p { max-width: none; }

/* ============================================================
   16. HERO SECTION
   ============================================================ */

.hero {
  padding-block: var(--sp-12) var(--sp-10);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13,148,136,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 5px 14px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: var(--sp-5);
}

.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(245,158,11,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

.hero__title {
  font-size: clamp(var(--text-3xl), 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: var(--sp-5);
  max-width: 20ch;
}

.hero__title em { font-style: normal; color: var(--gold); }
.hero__title .teal { color: var(--accent-2); }

.hero__desc {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.65;
  margin-bottom: var(--sp-8);
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.hero__stats { display: flex; flex-wrap: wrap; gap: var(--sp-8); }

.hero__stat-num {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__stat-num span { color: var(--accent-2); }

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ============================================================
   17. PAYMENT / FEATURE CARD GRID
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  transition: transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  margin-bottom: var(--sp-3);
}

.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: var(--text-lg); margin-bottom: var(--sp-2); color: var(--gold); }
.feature-card p { font-size: var(--text-sm); color: var(--muted); max-width: none; }

/* ============================================================
   18. ALT / CONVERSION BLOCK (the WINMYR funnel band)
   ============================================================ */

.alt-band {
  background: linear-gradient(135deg, rgba(13,148,136,0.12), rgba(245,158,11,0.07));
  border: 1px solid var(--accent-border);
  border-radius: 18px;
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.alt-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.alt-band h2 { font-size: clamp(var(--text-xl), 4vw, var(--text-3xl)); margin-bottom: var(--sp-3); }
.alt-band h2 span { color: var(--gold); }
.alt-band p { color: var(--muted); max-width: 60ch; margin: 0 auto var(--sp-6); }

/* ============================================================
   19. UTILITIES
   ============================================================ */

.mt-0 {margin-top:0}.mt-2{margin-top:var(--sp-2)}.mt-4{margin-top:var(--sp-4)}
.mt-6{margin-top:var(--sp-6)}.mt-8{margin-top:var(--sp-8)}.mt-10{margin-top:var(--sp-10)}
.mb-0{margin-bottom:0}.mb-2{margin-bottom:var(--sp-2)}.mb-4{margin-bottom:var(--sp-4)}
.mb-6{margin-bottom:var(--sp-6)}.mb-8{margin-bottom:var(--sp-8)}.mb-10{margin-bottom:var(--sp-10)}

.muted{color:var(--muted)}.accent{color:var(--accent-2)}.gold{color:var(--gold)}.danger{color:var(--danger)}
.text-sm{font-size:var(--text-sm)}.text-xs{font-size:var(--text-xs)}.text-lg{font-size:var(--text-lg)}
.font-bold{font-weight:700}.font-800{font-weight:800}
.uppercase{text-transform:uppercase;letter-spacing:.06em}
.text-center{text-align:center}.text-right{text-align:right}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.tag--accent { background: var(--accent-glow); border-color: var(--accent-border); color: var(--accent-2); }
.tag--gold { background: var(--gold-glow); border-color: var(--gold-border); color: var(--gold); }

.section-heading { margin-bottom: var(--sp-6); }

.section-heading__eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: var(--sp-2);
}

.section-heading__title {
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.section-heading__title span { color: var(--gold); }
.section-heading__sub { color: var(--muted); margin-top: var(--sp-2); max-width: 60ch; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  border: none;
  margin: var(--sp-10) 0;
}

.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--surface-2);
  color: var(--muted);
  border: 1px solid var(--border);
}

.pill--accent { background: var(--accent-glow); color: var(--accent-2); border-color: var(--accent-border); }
.pill--gold { background: var(--gold-glow); color: var(--gold); border-color: var(--gold-border); }

.related-links {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-8);
}

.related-links h3 { font-size: var(--text-lg); margin-bottom: var(--sp-3); }
.related-links ul { display: flex; flex-direction: column; gap: var(--sp-2); padding-left: 0; }
.related-links ul li { padding-left: var(--sp-5); position: relative; }
.related-links ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-2); }

.hidden { display: none; }
@media (max-width: 920px) { .hide-mobile { display: none; } }
@media (min-width: 921px) { .hide-desktop { display: none; } }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

::selection { background: var(--accent-glow); color: var(--accent-2); }

/* ============================================================
   20. BLOG (hub + article) — appended 2026-06-13
   ============================================================ */

/* --- Blog hub cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-5);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-border);
  text-decoration: none;
}

.blog-card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--gold));
}

.blog-card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.blog-card__cat {
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
}
.blog-card__title { font-size: var(--text-lg); font-weight: 700; color: var(--text); line-height: 1.3; }
.blog-card:hover .blog-card__title { color: var(--accent-2); }
.blog-card__excerpt { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; }
.blog-card__meta {
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.blog-card__meta .read-time { margin-left: auto; }

.blog-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(245,158,11,0.08);
}
.blog-featured__media {
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--text-2xl);
  letter-spacing: 0.04em;
}
.blog-featured__body { padding: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-3); justify-content: center; }
@media (max-width: 720px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__media { min-height: 140px; }
  .blog-featured__body { padding: var(--sp-5); }
}

/* --- Article: byline + meta --- */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.post-meta a { color: var(--accent-2); }
.post-meta .dot-sep { color: var(--border-strong); }
.av-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0f766e);
  color: #fff;
  font-weight: 800;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

/* --- Table of contents --- */
.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
}
.toc__title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: var(--sp-3);
}
.toc ol { list-style: decimal; padding-left: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2); }
.toc ol > li::marker { color: var(--accent-2); font-weight: 700; }
.toc a { color: var(--text); font-size: var(--text-sm); text-decoration: none; }
.toc a:hover { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }

/* --- Key takeaway box --- */
.keytake {
  background: linear-gradient(135deg, rgba(13,148,136,0.10), rgba(245,158,11,0.05));
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-6) 0;
}
.keytake__title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.keytake ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); padding-left: 0; }
.keytake li { position: relative; padding-left: var(--sp-6); font-size: var(--text-sm); color: var(--text); line-height: 1.6; }
.keytake li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-2); font-weight: 800; }
.keytake li strong { color: var(--gold); font-weight: 700; }

/* --- Inline CTA strip --- */
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-8) 0;
}
.inline-cta p { margin: 0; max-width: 46ch; color: var(--text); font-weight: 500; }
.inline-cta .btn { flex-shrink: 0; }

/* --- Post tags --- */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}
.post-tags span {
  font-size: var(--text-xs);
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 12px;
}

/* --- Author end-box (E-E-A-T) --- */
.author-box {
  display: flex;
  gap: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-8);
}
.author-box__av {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0f766e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--text-lg);
  font-family: var(--font-head);
}
.author-box__name { font-size: var(--text-base); font-weight: 700; color: var(--text); }
.author-box__role { font-size: var(--text-xs); color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--sp-2); }
.author-box__bio { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; max-width: none; }
.author-box__bio a { color: var(--accent-2); }

/* --- Method/disclosure note --- */
.method-note {
  font-size: var(--text-sm);
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-6) 0;
  line-height: 1.6;
}
.method-note strong { color: var(--accent-2); }
