/* SlayCasinos — Ink & Scarlet.
   Ported 1:1 from the Lovable build's design system (src/styles.css + the
   Tailwind utilities its components use). Every size here is the resolved value
   of the utility the React component used, so the two renders match.

   Rules: zero gradients, radius 0.5rem, flat colours only, no glow.
   Colour tokens are injected from Site Settings — see sc_css_tokens(). */

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

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

body {
	margin: 0;
	background: var(--sc-bg);
	color: var(--sc-ink);
	font-family: var(--sc-font-body);
	font-size: 16px;
	line-height: 1.5;
	font-feature-settings: "ss01", "cv11";
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
	font-family: var(--sc-font-heading);
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--sc-ink);
	margin: 0;
}
p { margin: 0; }
ul, ol { margin: 0; }
a { color: var(--sc-accent); text-decoration: none; }
a:hover { color: var(--sc-primary-hover); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--sc-primary); color: #fff; }

/* ---------------------------------------------------------------- primitives */
.sc-wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }
.sc-page { padding-top: 32px; padding-bottom: 32px; }
.sc-page > * + * { margin-top: 56px; }          /* space-y-14 */
.sc-mono { font-family: var(--sc-font-mono); }
.sc-muted { color: var(--sc-muted); }
.sc-display { font-family: var(--sc-font-heading); }
.sc-tabular { font-variant-numeric: tabular-nums; }

.sc-eyebrow { font-family: var(--sc-font-mono); font-size: 10px; line-height: 15px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-primary); }
.sc-eyebrow--muted { color: var(--sc-muted); }

.sc-h2 { font-size: 24px; line-height: 32px; }
.sc-sub { font-size: 14px; line-height: 20px; color: var(--sc-muted); margin-top: 4px; }
@media (min-width: 768px) { .sc-h2 { font-size: 30px; line-height: 36px; } }

/* Full-bleed band, exactly the Lovable <Band> helper */
.sc-band { position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; width: 100vw; background: var(--sc-band); border-top: 1px solid var(--sc-border); border-bottom: 1px solid var(--sc-border); }
.sc-band__inner { max-width: 1280px; margin: 0 auto; padding: 48px 16px; }
.sc-band--dark { background: #17181C; border: 0; }
.sc-band--dark .sc-band__inner { padding-top: 80px; padding-bottom: 80px; }
.sc-band--dark h2, .sc-band--dark h3 { color: #fff; }
.sc-band--dark p { color: #A3A3A3; }

/* Bordered surface card — the unified panel edge */
.sc-card { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; box-shadow: 0 1px 2px rgba(23,24,28,.06); }
.sc-card--pad { padding: 16px; }
.sc-card--pad-lg { padding: 24px; }

/* ---------------------------------------------------------------- buttons */
.sc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border-radius: 7px; font-family: var(--sc-font-heading); font-weight: 600; border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: background-color .12s, border-color .12s, color .12s; }
.sc-btn:hover { text-decoration: none; }
.sc-btn--sm { padding: 6px 12px; font-size: 12px; line-height: 16px; }
.sc-btn--md { padding: 8px 16px; font-size: 14px; line-height: 20px; }
.sc-btn--lg { padding: 10px 20px; font-size: 16px; line-height: 24px; }
.sc-btn--primary { background: var(--sc-primary); color: #fff; border-color: var(--sc-primary); }
.sc-btn--primary:hover { background: var(--sc-primary-hover); border-color: var(--sc-primary-hover); color: #fff; }
.sc-btn--secondary { background: var(--sc-surface); color: var(--sc-ink); border-color: var(--sc-border); }
.sc-btn--secondary:hover { background: var(--sc-surface-2); color: var(--sc-ink); }
.sc-btn--block { width: 100%; }
.sc-icon-btn { display: inline-grid; place-items: center; width: 32px; height: 32px; padding: 0; border: 1px solid var(--sc-border); border-radius: 7px; background: var(--sc-surface); color: var(--sc-ink); cursor: pointer; font-family: var(--sc-font-body); font-size: 16px; line-height: 24px; }
.sc-row__toggle { width: 34px; height: 34px; font-size: 16px; }
.sc-icon-btn:hover { background: var(--sc-surface-2); }

/* ---------------------------------------------------------------- header (two rows, h-12 each) */
.sc-header { background: var(--sc-surface); border-bottom: 1px solid var(--sc-border); position: sticky; top: 0; z-index: 40; }
.sc-header__bar { display: flex; align-items: center; gap: 16px; height: 48px; }
.sc-brand { font-family: var(--sc-font-heading); font-weight: 700; font-size: 20px; line-height: 28px; display: flex; align-items: baseline; flex-shrink: 0; }
.sc-brand span:first-child { color: var(--sc-ink); }
.sc-brand__accent { color: var(--sc-primary); }
.sc-header__actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.sc-navbar { display: none; background: var(--sc-surface); border-bottom: 1px solid var(--sc-border); position: sticky; top: 0; z-index: 40; }
.sc-nav { display: flex; align-items: center; justify-content: center; gap: 2px; height: 48px; }
.sc-nav__item { position: relative; }
.sc-nav__link { display: flex; align-items: center; gap: 4px; padding: 8px 12px; font-size: 14px; line-height: 20px; font-weight: 500; color: var(--sc-ink); border-radius: 7px; white-space: nowrap; }
.sc-nav__link:hover { color: var(--sc-primary); background: var(--sc-surface-2); text-decoration: none; }
.sc-nav__caret { font-size: 9px; opacity: .6; }
.sc-nav__menu { position: absolute; left: 0; top: 100%; padding-top: 8px; width: 256px; z-index: 50; display: none; }
.sc-nav__item:hover .sc-nav__menu, .sc-nav__item:focus-within .sc-nav__menu { display: block; }
.sc-nav__menu-inner { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; overflow: hidden; box-shadow: 0 8px 24px rgba(23,24,28,.10); }
.sc-nav__menu a { display: block; padding: 8px 12px; font-size: 14px; line-height: 20px; color: var(--sc-ink); border-bottom: 1px solid var(--sc-border); white-space: nowrap; }
.sc-nav__menu a:last-child { border-bottom: 0; }
.sc-nav__menu a:hover { background: var(--sc-surface-2); color: var(--sc-primary); text-decoration: none; }
@media (min-width: 1024px) {
	.sc-header { position: static; }
	.sc-navbar { display: block; }
	.sc-burger { display: none; }
}

/* mobile drawer */
.sc-mobile-nav { display: none; background: var(--sc-surface); border-bottom: 1px solid var(--sc-border); padding: 8px 16px 16px; }
.sc-mobile-nav.is-open { display: block; }
.sc-mobile-nav a { display: block; padding: 8px 0; font-size: 14px; color: var(--sc-ink); }
.sc-mobile-nav .sc-mobile-group { border-bottom: 1px solid var(--sc-border); padding: 6px 0; }
.sc-mobile-nav .sc-mobile-group > a { font-weight: 600; }
.sc-mobile-nav .sc-mobile-children a { padding-left: 12px; color: var(--sc-muted); font-size: 13px; }

/* ---------------------------------------------------------------- hero */
.sc-hero { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 1024px) { .sc-hero { grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); } }
.sc-hero h1 { font-size: 36px; line-height: 1.05; letter-spacing: -0.025em; }
@media (min-width: 768px) { .sc-hero h1 { font-size: 48px; } }
@media (min-width: 1024px) { .sc-hero h1 { font-size: 60px; } }
.sc-hero h1 em { font-style: normal; color: var(--sc-primary); }
.sc-hero__sub { margin-top: 16px; font-size: 16px; line-height: 24px; color: var(--sc-muted); max-width: 576px; }
.sc-hero__chips { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.sc-hero__cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.sc-chip { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--sc-border); background: var(--sc-surface); border-radius: 7px; padding: 4px 10px; font-family: var(--sc-font-mono); font-size: 11px; line-height: 16px; color: var(--sc-ink); }

/* ---------------------------------------------------------------- casino rows */
.sc-rows > * + * { margin-top: 12px; }
.sc-row { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; overflow: hidden; }
.sc-row--pick { border: 1px solid var(--sc-primary); }
.sc-row__pickbar { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--sc-gold-soft); border-bottom: 1px solid var(--sc-gold); padding: 6px 12px; line-height: 16px; }
.sc-row__pickbar .sc-pick-star { display: inline-flex; align-items: center; color: var(--sc-gold); }
.sc-row__pickbar span.sc-pick-label { font-family: var(--sc-font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-bronze); }
.sc-row__pickbar .sc-pick-why { font-size: 12px; color: var(--sc-ink); }

.sc-row__main { display: grid; grid-template-columns: auto auto minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 12px; }
@media (min-width: 768px) {
	.sc-row__main { grid-template-columns: 48px 56px minmax(0,2fr) minmax(0,2fr) repeat(3, minmax(0,1fr)) auto auto; }
}
.sc-row__rank { display: flex; align-items: center; gap: 4px; }
.sc-row__rank b { font-family: var(--sc-font-mono); font-size: 18px; line-height: 28px; font-weight: 700; width: 24px; text-align: center; font-variant-numeric: tabular-nums; }
.sc-logo { display: grid; place-items: center; border-radius: 7px; color: #fff; font-family: var(--sc-font-heading); font-weight: 700; flex-shrink: 0; }
.sc-row__name { font-family: var(--sc-font-heading); font-weight: 600; color: var(--sc-ink); }
.sc-row__name:hover { color: var(--sc-primary); }
.sc-row__meta { font-size: 12px; line-height: 16px; color: var(--sc-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sc-row__offer { font-size: 14px; line-height: 20px; color: var(--sc-ink); }
.sc-row__col { display: flex; flex-direction: column; gap: 2px; font-size: 12px; line-height: 16px; }
.sc-row__col > span:first-child { color: var(--sc-muted); font-family: var(--sc-font-mono); }
.sc-row__col .sc-val { font-family: var(--sc-font-mono); color: var(--sc-ink); }

/* ---- mobile card layout -------------------------------------------------
   Below 768px the eight-column desktop grid is unusable: the name column
   collapses and the payout string wraps a word per line. On mobile the row
   becomes a stacked card — identity + score, the offer, then a full-width
   CTA pair — while the desktop grid stays exactly as the Lovable build. */
.sc-row__mob { display: none; }
.sc-row__mobile-meta { display: none; }

@media (max-width: 767px) {
	.sc-row__main {
		grid-template-columns: auto auto minmax(0,1fr) auto;
		grid-template-areas:
			"rank logo id    score"
			"offer offer offer offer"
			"cta  cta  review review"
			"facts facts facts toggle";
		align-items: center;
		row-gap: 10px;
		column-gap: 10px;
		padding: 12px;
	}
	.sc-row__rank { grid-area: rank; }
	.sc-row__main > .sc-logo { grid-area: logo; }
	.sc-row__id { grid-area: id; }
	.sc-row__score { grid-area: score; }
	.sc-row__offer { grid-area: offer; }
	.sc-row__cta { grid-area: cta; }
	.sc-row__review { grid-area: review; }
	.sc-row__mobile-meta { grid-area: facts; }
	.sc-row__toggle { grid-area: toggle; justify-self: end; }

	.sc-row__mob { display: flex; }
	.sc-row__mobile-meta { display: flex; gap: 6px; font-size: 12px; line-height: 16px; color: var(--sc-muted); align-items: center; flex-wrap: wrap; }
	.sc-row__mobile-meta b { font-family: var(--sc-font-mono); font-weight: 700; color: var(--sc-ink); }
	.sc-row__dot { opacity: .5; }

	.sc-row__name { font-size: 17px; line-height: 22px; }
	.sc-row__meta { font-size: 12px; line-height: 16px; }
	.sc-row__lic-full { display: none; }

	.sc-row__score {
		display: flex; align-items: baseline; gap: 1px;
		background: var(--sc-gold-soft); border: 1px solid var(--sc-gold);
		border-radius: 7px; padding: 4px 8px;
	}
	.sc-row__score b { font-family: var(--sc-font-mono); font-size: 17px; line-height: 20px; font-weight: 700; color: var(--sc-bronze); font-variant-numeric: tabular-nums; }
	.sc-row__score span { font-family: var(--sc-font-mono); font-size: 10px; color: var(--sc-bronze); opacity: .75; }

	.sc-row__offer { font-size: 15px; line-height: 20px; font-weight: 700; color: var(--sc-ink); }

	.sc-row__main > .sc-btn.sc-row__cta { width: 100%; height: 42px; font-size: 12px; }
	.sc-row__review {
		display: inline-flex; align-items: center; justify-content: center;
		height: 42px; width: 100%; border: 1px solid var(--sc-ink); border-radius: 7px;
		background: var(--sc-surface); color: var(--sc-ink);
		font-family: var(--sc-font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
	}
	.sc-row__review:hover { background: var(--sc-ink); color: var(--sc-surface); }

	.sc-row__pickbar { padding: 8px 12px; }
	.sc-row__panel { padding: 12px; }
}
@media (min-width: 768px) { .sc-row__lic-abbr { display: none; } }
.sc-row__desk { display: none; }
@media (min-width: 768px) { .sc-row__desk { display: flex; } .sc-row__desk--block { display: block; } }

.sc-badge { display: inline-flex; align-items: center; border-radius: 7px; padding: 2px 6px; font-family: var(--sc-font-mono); font-size: 10px; line-height: 14px; text-transform: uppercase; letter-spacing: .1em; border: 1px solid; }
.sc-badge--gold { background: var(--sc-gold-soft); color: var(--sc-gold); border-color: var(--sc-gold); }
.sc-badge--silver { background: var(--sc-surface-2); color: var(--sc-silver); border-color: var(--sc-silver); }
.sc-badge--bronze { background: var(--sc-gold-soft); color: var(--sc-bronze); border-color: var(--sc-bronze); }
.sc-badge--accent { background: var(--sc-accent-soft); color: var(--sc-primary); border-color: color-mix(in srgb, var(--sc-primary) 40%, transparent); }
.sc-badge--plain { background: var(--sc-bg); color: var(--sc-muted); border-color: var(--sc-border); }


/* expandable panel */
.sc-row__panel { border-top: 1px solid var(--sc-border); background: color-mix(in srgb, var(--sc-surface-2) 40%, transparent); padding: 16px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 1024px) { .sc-row__panel { grid-template-columns: repeat(3, 1fr); } }
.sc-row__panel[hidden] { display: none !important; }
.sc-row__panel h3 { font-size: 14px; line-height: 20px; margin-bottom: 8px; }
.sc-deflist { font-size: 12px; line-height: 16px; }
.sc-deflist div { display: flex; justify-content: space-between; gap: 8px; padding: 2px 0; }
.sc-deflist dt { color: var(--sc-muted); }
.sc-deflist dd { margin: 0; text-align: right; }
.sc-featurechips { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.sc-featurechip { border: 1px solid var(--sc-border); background: var(--sc-surface); border-radius: 7px; padding: 2px 6px; font-family: var(--sc-font-mono); font-size: 10px; color: var(--sc-muted); }

/* ---------------------------------------------------------------- stat strip (offer + new cards) */
.sc-stats3 { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--sc-border); border-radius: 6px; overflow: hidden; margin: 0 0 12px; }
.sc-stats3 > div { min-width: 0; padding: 8px; text-align: center; border-left: 1px solid var(--sc-border); }
.sc-stats3 > div:first-child { border-left: 0; }
.sc-stats3 dt { font-family: var(--sc-font-mono); text-transform: uppercase; letter-spacing: .05em; color: var(--sc-muted); font-size: 10px; line-height: 1.25; }
.sc-stats3 dd { margin: 2px 0 0; font-family: var(--sc-font-mono); font-size: 13px; line-height: 1.375; color: var(--sc-ink); word-break: break-word; }

.sc-tile-card { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; padding: 16px; display: flex; flex-direction: column; min-height: 240px; transition: border-color .12s, box-shadow .12s, transform .12s; }
.sc-tile-card:hover { border-color: var(--sc-primary); box-shadow: 0 4px 6px -1px rgba(23,24,28,.1); transform: translateY(-2px); }
.sc-tile-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.sc-tile-card__brand { display: flex; align-items: center; gap: 8px; min-width: 0; }
.sc-tile-card__brand a { font-family: var(--sc-font-heading); font-weight: 600; color: var(--sc-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sc-tile-card__headline { font-family: var(--sc-font-heading); font-weight: 700; font-size: 16px; line-height: 1.375; margin-bottom: 8px; min-height: 44px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sc-tile-card__foot { margin-top: auto; }
.sc-verified { display: flex; align-items: center; gap: 6px; font-size: 10px; line-height: 15px; color: var(--sc-muted); margin-bottom: 12px; }
.sc-verified b { color: var(--sc-primary); }
.sc-terms { text-align: center; font-family: var(--sc-font-mono); font-size: 11px; color: var(--sc-muted); margin-top: 8px; }
.sc-terms a { display: inline-block; padding: 12px 8px; min-height: 40px; line-height: 16px; }
.sc-terms a { color: var(--sc-muted); }

.sc-grid { display: grid; gap: 16px; }
.sc-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.sc-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.sc-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.sc-grid--gap3 { gap: 12px; }

/* ---------------------------------------------------------------- how we test */
.sc-howwetest { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .sc-howwetest { grid-template-columns: repeat(2, 1fr); } }
.sc-weights > * + * { margin-top: 12px; }
.sc-weight__top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.sc-weight__label { font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; }
.sc-weight__pct { font-family: var(--sc-font-mono); font-size: 12px; color: var(--sc-primary); }
.sc-weight__bar { height: 6px; background: var(--sc-surface-2); border-radius: 7px; overflow: hidden; margin-bottom: 4px; }
.sc-weight__bar i { display: block; height: 100%; background: var(--sc-primary); }
.sc-weight__note { font-size: 12px; line-height: 16px; color: var(--sc-muted); }
.sc-steps > * + * { margin-top: 12px; }
.sc-step { display: flex; gap: 12px; align-items: flex-start; }
.sc-step__n { flex-shrink: 0; width: 32px; height: 32px; border-radius: 7px; display: grid; place-items: center; background: var(--sc-primary); color: #fff; font-family: var(--sc-font-heading); font-weight: 700; font-size: 14px; }
.sc-step__t { font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; }
.sc-step__b { font-size: 12px; line-height: 16px; color: var(--sc-muted); margin-top: 2px; }
.sc-howwetest__foot { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--sc-border); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; font-family: var(--sc-font-mono); font-size: 12px; color: var(--sc-muted); }
.sc-howwetest__foot b { color: var(--sc-ink); }
.sc-howwetest__foot a { font-family: var(--sc-font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-primary); }

/* ---------------------------------------------------------------- payout tracker */
.sc-tracker { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; overflow: hidden; }
.sc-tracker__head, .sc-tracker__row { display: grid; grid-template-columns: 56px minmax(0,1fr); align-items: center; gap: 12px; padding: 12px 16px; }
@media (min-width: 768px) {
	.sc-tracker__head, .sc-tracker__row { grid-template-columns: 56px 1.5fr 1fr 1fr 1fr 1.2fr 110px; }
}
.sc-tracker__head { display: none; border-bottom: 1px solid var(--sc-border); background: var(--sc-bg); font-family: var(--sc-font-mono); font-size: 10px; line-height: 14px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-muted); padding-top: 8px; padding-bottom: 8px; }
@media (min-width: 768px) { .sc-tracker__head { display: grid; } }
.sc-tracker__row { border-bottom: 1px solid var(--sc-border); }
.sc-tracker__row:last-child { border-bottom: 0; }
.sc-tracker__rank { font-family: var(--sc-font-mono); font-size: 14px; line-height: 20px; font-weight: 700; }
.sc-tracker__row--top { background: color-mix(in srgb, var(--sc-gold-soft) 40%, transparent); }
.sc-tracker__mob { grid-column: span 2; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-left: 36px; margin-top: -4px; }
.sc-tracker__mob .sc-mono { font-size: 11px; line-height: 16px; color: var(--sc-muted); }
.sc-tracker__mob strong { font-size: 14px; line-height: 20px; color: var(--sc-ink); }
.sc-tracker__mobcta { grid-column: span 2; padding-left: 36px; }
@media (min-width: 768px) { .sc-tracker__mob, .sc-tracker__mobcta { display: none; } }
@media (min-width: 768px) { .sc-tracker__cta { display: flex; justify-content: flex-end; } }
.sc-btn--visit { width: 76px; height: 34px; padding: 0; font-size: 12px; }
.sc-eyebrow--live { display: flex; align-items: center; gap: 8px; }
.sc-ping { position: relative; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--sc-primary); }
.sc-ping::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--sc-primary); opacity: .6; animation: sc-ping 2s cubic-bezier(0,0,.2,1) infinite; }
@keyframes sc-ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.sc-pill { display: inline-flex; align-items: center; border-radius: 7px; background: var(--sc-surface-2); padding: 2px 8px; font-family: var(--sc-font-mono); font-size: 11px; color: var(--sc-muted); }
.sc-delta { display: inline-flex; align-items: center; height: 24px; white-space: nowrap; border-radius: 6px; border: 1px solid; padding: 0 8px; font-family: var(--sc-font-mono); font-size: 11px; line-height: 16px; font-variant-numeric: tabular-nums; }
@media (min-width: 768px) { .sc-tracker__row .sc-row__desk:nth-child(6) { display: flex; justify-content: flex-end; overflow: hidden; } }
.sc-delta--good { background: var(--sc-chip-success-bg); border-color: var(--sc-chip-success-border); color: var(--sc-chip-success-text); }
.sc-delta--bad { background: var(--sc-chip-danger-bg); border-color: var(--sc-chip-danger-border); color: var(--sc-chip-danger-text); }
.sc-delta--neutral { background: var(--sc-surface-2); border-color: var(--sc-border); color: var(--sc-muted); }


/* The stated/tested cells stay on one line — the Lovable rows use short
   labels ("Instant", "24h"), so a long stored string must clip, not wrap. */
.sc-tracker__row > .sc-mono { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-tracker__row > .sc-row__desk:nth-child(3) { min-width: 0; }
.sc-tracker__row > .sc-row__desk:nth-child(3) .sc-pill { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------------------------------------------------------------- finder */
.sc-finder { position: relative; background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; min-height: 380px; }
@media (min-width: 1024px) { .sc-finder { min-height: 420px; } }
.sc-finder__rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sc-primary); }
.sc-finder__head { padding: 16px 16px 12px; border-bottom: 1px solid var(--sc-border); background: color-mix(in srgb, var(--sc-accent-soft) 40%, transparent); flex-shrink: 0; }
.sc-finder__kicker { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.sc-finder__kicker i { display: inline-block; height: 6px; width: 6px; border-radius: 50%; background: var(--sc-primary); }
.sc-finder__kicker span { font-family: var(--sc-font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--sc-primary); }
.sc-finder__title { font-family: var(--sc-font-heading); font-weight: 700; font-size: 18px; line-height: 1.25; }
.sc-finder__lead { font-size: 12px; line-height: 16px; color: var(--sc-muted); margin-top: 4px; }
.sc-finder__body { flex: 1; padding: 12px 16px 8px; display: flex; flex-direction: column; }
.sc-finder__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.sc-finder__opt { text-align: left; background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 8px; padding: 10px; font-family: var(--sc-font-body); font-size: 16px; line-height: 24px; color: var(--sc-ink); cursor: pointer; display: flex; flex-direction: column; justify-content: center; min-height: 50px; }
.sc-finder__opt:hover, .sc-finder__opt[aria-pressed="true"] { border-color: var(--sc-primary); color: var(--sc-primary); }
.sc-finder__opt b { display: block; font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; line-height: 20px; }
.sc-finder__opt span { font-size: 11px; color: var(--sc-muted); }
.sc-finder__go { width: 100%; height: 52px; border-radius: 8px; background: var(--sc-primary); color: #fff; border: 0; font-family: var(--sc-font-heading); font-weight: 700; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
.sc-finder__go:hover { background: var(--sc-primary-hover); }
.sc-finder__stats { display: flex; gap: 24px; border-top: 1px solid var(--sc-border); padding: 12px 16px; margin-top: auto; }
.sc-finder__stat b { display: block; font-family: var(--sc-font-mono); font-size: 16px; }
.sc-finder__stat span { font-family: var(--sc-font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-muted); }
.sc-finder__note { padding: 0 16px 14px; font-size: 11px; color: var(--sc-muted); }
.sc-finder__result { padding: 12px 16px 0; }

/* ---------------------------------------------------------------- explore tiles */
.sc-tiles { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.sc-tile { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; padding: 16px; transition: border-color .12s, transform .12s; display: block; }
.sc-tile:hover { border-color: var(--sc-primary); transform: translateY(-2px); text-decoration: none; }
.sc-tile h3 { font-size: 15px; line-height: 20px; margin-bottom: 4px; }
.sc-tile p { font-size: 12px; line-height: 16px; color: var(--sc-muted); }
.sc-tile--wide { grid-column: span 2; }

/* ---------------------------------------------------------------- desk + record */

.sc-record { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 768px) { .sc-record { grid-template-columns: repeat(3, 1fr); } }
.sc-record__item { border-left: 2px solid var(--sc-primary); padding-left: 14px; }
.sc-record__quote { font-size: 15px; line-height: 22px; color: #E9EAEE; margin-bottom: 8px; }
.sc-record__src { font-family: var(--sc-font-mono); font-size: 11px; color: #A3A3A3; }
.sc-record__src a { color: #fff; }

/* ---------------------------------------------------------------- editorial cards */
.sc-post-card { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .12s, transform .12s; }
.sc-post-card:hover { border-color: var(--sc-primary); transform: translateY(-2px); text-decoration: none; }
.sc-post-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.sc-post-card__body { padding: 14px 16px 16px; }
.sc-post-card__cat { font-family: var(--sc-font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-primary); }
.sc-post-card h3 { font-size: 15px; line-height: 20px; margin: 6px 0; }
.sc-post-card p { font-size: 13px; line-height: 18px; color: var(--sc-muted); }

/* ---------------------------------------------------------------- FAQ */
.sc-faq__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .sc-faq__grid { grid-template-columns: 1fr 1fr; } }
.sc-faq__item { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 6px; overflow: hidden; }
.sc-faq__item[open] { background: var(--sc-band); border-left: 4px solid var(--sc-primary); }
.sc-faq__item summary { cursor: pointer; font-family: var(--sc-font-heading); font-weight: 600; font-size: 15px; line-height: 1.375; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; }
.sc-faq__item summary::-webkit-details-marker { display: none; }
.sc-faq__item summary::after { content: "+"; flex: 0 0 auto; width: 24px; height: 24px; border: 1px solid var(--sc-border); border-radius: 6px; display: grid; place-items: center; font-family: var(--sc-font-mono); font-size: 18px; line-height: 1; color: var(--sc-muted); transition: transform .2s; }
.sc-faq__item[open] summary::after { transform: rotate(45deg); border-color: var(--sc-primary); color: var(--sc-primary); }
.sc-faq__a { font-size: 14px; line-height: 1.625; color: var(--sc-muted); padding: 0 16px 16px; }
.sc-faq__a p { margin-bottom: 8px; }
.sc-faq__a p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- content pages */
.sc-layout { display: grid; grid-template-columns: minmax(0,1fr); gap: 32px; align-items: start; padding-top: 32px; padding-bottom: 48px; }
@media (min-width: 1024px) { .sc-layout { grid-template-columns: minmax(0,1fr) 300px; } }
.sc-content { min-width: 0; font-size: 16px; line-height: 1.5; }
.sc-content h1 { font-size: 30px; line-height: 1.2; margin-bottom: 8px; }
.sc-content h2 { font-size: 20px; line-height: 28px; margin: 32px 0 12px; }
.sc-content h3 { font-size: 14px; line-height: 20px; font-weight: 600; margin: 24px 0 8px; }
.sc-content p { margin: 0 0 16px; font-size: 16px; line-height: 24px; }
.sc-content ul, .sc-content ol { padding-left: 20px; margin: 0 0 16px; }
.sc-content li { margin-bottom: 6px; font-size: 16px; line-height: 24px; }
.sc-content figure { margin: 20px 0; }
.sc-content table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 20px 0; background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; overflow: hidden; }
.sc-content th, .sc-content td { border-bottom: 1px solid var(--sc-border); padding: 8px; text-align: left; font-size: 12px; line-height: 16px; }
.sc-content th { background: var(--sc-surface-2); font-family: var(--sc-font-body); font-size: 12px; line-height: 16px; font-weight: 700; color: var(--sc-ink); }
.sc-content tr:last-child td { border-bottom: 0; }

.sc-breadcrumbs { font-family: var(--sc-font-mono); font-size: 11px; color: var(--sc-muted); padding-top: 16px; }
.sc-breadcrumbs a { color: var(--sc-muted); }
.sc-byline { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--sc-muted); margin: 0 0 20px; }
.sc-byline a { color: var(--sc-ink); font-weight: 500; }
.sc-byline__sep { opacity: .5; }

.sc-verdict { background: var(--sc-surface); border: 1px solid var(--sc-border); border-left: 3px solid var(--sc-primary); border-radius: 7px; padding: 16px 18px; margin: 0 0 20px; }
.sc-verdict h2 { font-size: 16px; line-height: 22px; margin: 0 0 6px; }
.sc-keyfacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); border: 1px solid var(--sc-border); border-radius: 7px; overflow: hidden; margin: 0 0 24px; background: var(--sc-surface); }
.sc-keyfact { padding: 10px 14px; border-left: 1px solid var(--sc-border); border-top: 1px solid var(--sc-border); }
.sc-keyfact span { display: block; font-family: var(--sc-font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-muted); margin-bottom: 2px; }
.sc-keyfact b { font-size: 14px; font-weight: 600; }
.sc-proscons { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 24px 0; }
@media (min-width: 768px) { .sc-proscons { grid-template-columns: 1fr 1fr; } }
.sc-proscons ul { list-style: none; padding: 0; margin: 0; }
.sc-proscons li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 14px; line-height: 20px; }
.sc-proscons li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.sc-pros li::before { content: "+"; color: var(--sc-chip-success-text); }
.sc-cons li::before { content: "−"; color: var(--sc-primary); }

.sc-rail { position: sticky; top: 64px; background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; padding: 16px; }
.sc-rail__title { font-family: var(--sc-font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-muted); margin-bottom: 12px; }
.sc-rail__item { padding: 12px 0; border-top: 1px solid var(--sc-border); }
.sc-rail__item:first-of-type { border-top: 0; padding-top: 0; }
.sc-rail__head { display: flex; align-items: center; gap: 8px; font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.sc-rail__bonus { font-size: 13px; color: var(--sc-muted); margin: 0 0 8px; }
.sc-rail__meta { font-family: var(--sc-font-mono); font-size: 11px; color: var(--sc-muted); margin-bottom: 8px; }
.sc-disclosure { font-size: 11px; line-height: 16px; color: var(--sc-muted); margin: 0 0 12px; }

/* ---------------------------------------------------------------- footer */
.sc-footer { margin-top: 64px; background: var(--sc-band); border-top: 2px solid var(--sc-ink); }
.sc-footer__inner { max-width: 1280px; margin: 0 auto; padding: 48px 16px; }
.sc-footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .sc-footer__grid { grid-template-columns: repeat(6, 1fr); } }
.sc-footer__brand { grid-column: span 1; }
@media (min-width: 768px) { .sc-footer__brand { grid-column: span 2; } }
@media (min-width: 1024px) { .sc-footer__brand { grid-column: span 1; } }
.sc-footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 768px) { .sc-footer__cols { grid-column: span 4; grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .sc-footer__cols { grid-column: span 5; grid-template-columns: repeat(5, 1fr); } }
.sc-footer .sc-brand { font-size: 24px; }
.sc-footer__tag { margin-top: 12px; font-size: 14px; color: var(--sc-muted); max-width: 320px; }
.sc-footer__about { margin-top: 12px; font-size: 12px; line-height: 18px; color: var(--sc-muted); max-width: 320px; }
.sc-footer h3 { font-family: var(--sc-font-mono); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--sc-muted); margin-bottom: 12px; }
.sc-footer ul { list-style: none; padding: 0; margin: 0; }
.sc-footer li { margin-bottom: 8px; }
.sc-footer li a { font-size: 14px; color: var(--sc-muted); }
.sc-footer li a:hover { color: var(--sc-primary); }
.sc-footer__chips { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.sc-footer__chip { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--sc-border); background: var(--sc-surface); border-radius: 7px; padding: 4px 8px; font-family: var(--sc-font-mono); font-size: 10px; color: var(--sc-muted); }
.sc-footer__social { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.sc-footer__social a { height: 36px; width: 36px; border-radius: 7px; border: 1px solid var(--sc-border); background: var(--sc-surface); display: grid; place-items: center; color: var(--sc-muted); font-family: var(--sc-font-mono); font-size: 11px; }
.sc-footer__social a:hover { color: var(--sc-primary); border-color: var(--sc-primary); }
.sc-footer__trust { margin-top: 40px; border-top: 1px solid var(--sc-border); border-bottom: 1px solid var(--sc-border); padding: 24px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.sc-footer__trust span, .sc-footer__trust a { display: inline-flex; align-items: center; border: 1px solid var(--sc-border); background: var(--sc-surface); border-radius: 999px; padding: 4px 12px; font-family: var(--sc-font-mono); font-size: 11px; color: var(--sc-muted); }
.sc-footer__trust .sc-age { font-weight: 700; color: var(--sc-ink); }
.sc-footer__disclosure { flex-basis: 100%; margin-top: 4px; font-size: 12px; color: var(--sc-muted); border: 0; background: none; padding: 0; }
.sc-footer__bottom { padding: 24px 0 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 12px; color: var(--sc-muted); }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1023px) {
	.sc-tiles { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.sc-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.sc-rail { position: static; }
}
@media (max-width: 767px) {
	.sc-grid--2, .sc-grid--3, .sc-grid--4 { grid-template-columns: minmax(0,1fr); }
	.sc-tiles { grid-template-columns: minmax(0,1fr); }
	.sc-tile--wide { grid-column: span 1; }
	.sc-finder__opts { grid-template-columns: 1fr; }
	.sc-hero h1 { font-size: 36px; }
	.sc-page > * + * { margin-top: 40px; }
	.sc-band__inner { padding: 32px 16px; }
}

.sc-hide-sm { display: none; }
@media (min-width: 768px) { .sc-hide-sm { display: inline-flex; } }
.sc-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.sc-flex { display: flex; align-items: center; gap: 8px; }
.sc-table-wrap { overflow-x: auto; }


/* ---------------------------------------------------------------- section heads (border-b + pb-2 + mb-4) */
.sc-sechead { margin-bottom: 16px; border-bottom: 1px solid var(--sc-border); padding-bottom: 8px; }
.sc-viewall { margin-top: 24px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.sc-btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 40px; padding: 0 24px; border-radius: 7px; border: 1px solid var(--sc-ink); background: var(--sc-surface); color: var(--sc-ink); font-family: var(--sc-font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.sc-btn-outline:hover { background: var(--sc-ink); color: var(--sc-surface); text-decoration: none; }

/* tabs */
.sc-tabs { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 1px solid var(--sc-border); margin-bottom: 16px; }
.sc-tab { padding: 8px 16px; font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; line-height: 20px; background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px; color: var(--sc-muted); cursor: pointer; }
.sc-tab:hover { color: var(--sc-ink); }
.sc-tab.is-active { border-bottom-color: var(--sc-primary); color: var(--sc-primary); }
.sc-tabpanel.is-hidden { display: none; }

/* explore tiles — 3 columns, 150px auto rows, rounded-xl, icon square */
.sc-tiles { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .sc-tiles { grid-template-columns: repeat(3, minmax(0,1fr)); grid-auto-rows: 150px; } }
.sc-tile { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; justify-content: space-between; min-height: 110px; transition: border-color .15s, transform .15s, box-shadow .15s; }
.sc-tile:hover { border-color: var(--sc-primary); transform: translateY(-2px); box-shadow: 0 4px 6px -1px rgba(23,24,28,.1); text-decoration: none; }
.sc-tile__top { display: flex; align-items: flex-start; gap: 12px; }
.sc-tile__icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 7px; display: grid; place-items: center; background: var(--sc-accent-soft); color: var(--sc-primary); font-size: 16px; }
.sc-tile__title { font-family: var(--sc-font-heading); font-weight: 600; font-size: 16px; color: var(--sc-ink); }
.sc-tile__title--lg { font-size: 18px; }
.sc-tile__hook { font-size: 13px; line-height: 18px; color: var(--sc-muted); margin-top: 4px; }
.sc-tile__arrow { margin-top: 12px; text-align: right; color: var(--sc-primary); opacity: .6; }
.sc-tile:hover .sc-tile__arrow { opacity: 1; }
@media (min-width: 768px) { .sc-tile--wide { grid-column: span 2; } }

.sc-tile-card__verdict { font-size: 12px; line-height: 18px; font-style: italic; color: var(--sc-muted); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* editorial heading block shared by the desk and on-the-record bands */
.sc-band--tall .sc-band__inner { padding-top: 80px; padding-bottom: 80px; }
.sc-editorial-head { max-width: 768px; }
.sc-eyebrow--wide { letter-spacing: .18em; font-size: 11px; }
.sc-h-editorial { margin-top: 16px; font-size: 32px; line-height: 1.1; letter-spacing: -0.02em; }
@media (min-width: 768px) { .sc-h-editorial { font-size: 40px; } }
.sc-editorial-lead { margin-top: 16px; font-size: 16px; line-height: 1.625; color: var(--sc-muted); max-width: 60ch; }

/* the desk */
.sc-desk { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .sc-desk { grid-template-columns: 1fr 1fr; } }
.sc-desk__card { display: block; background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 16px; padding: 32px; transition: border-color .15s; }
.sc-desk__card:hover { border-color: var(--sc-primary); }
.sc-desk__top { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 768px) { .sc-desk__top { flex-direction: row; align-items: flex-start; } }
.sc-desk__avatar { flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--sc-font-heading); font-weight: 700; font-size: 24px; box-shadow: 0 0 0 4px var(--sc-surface), 0 0 0 6px var(--sc-primary); }
@media (min-width: 768px) { .sc-desk__avatar { width: 96px; height: 96px; } }
.sc-desk__name { font-family: var(--sc-font-heading); font-weight: 600; font-size: 22px; line-height: 1.25; }
.sc-desk__quote { margin: 20px 0 0; font-size: 17px; font-style: italic; line-height: 1.375; color: var(--sc-ink); border: 0; padding: 0; }
.sc-desk__bio { margin-top: 16px; font-size: 14px; line-height: 1.625; color: var(--sc-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sc-desk__foot { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--sc-border); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sc-desk__foot a { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; line-height: 20px; color: var(--sc-primary); }
.sc-desk__stats { font-family: var(--sc-font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--sc-muted); }

/* on the record */
.sc-record { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .sc-record { grid-template-columns: repeat(3, 1fr); } }
.sc-record__card { background: #1E1F24; border: 1px solid #2E2F35; border-radius: 16px; padding: 32px; display: flex; flex-direction: column; transition: border-color .15s; }
.sc-record__card:hover { border-color: var(--sc-primary); }
.sc-record__mark { font-family: var(--sc-font-heading); font-weight: 700; color: var(--sc-primary); font-size: 60px; line-height: 1; }
.sc-record__quote { margin: 12px 0 0; color: #fff; font-size: 16px; line-height: 1.375; border: 0; padding: 0; }
.sc-record__foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid #2E2F35; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sc-record__foot a { font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; color: var(--sc-primary); }
.sc-record__tag { flex-shrink: 0; border: 1px solid color-mix(in srgb, var(--sc-primary) 40%, transparent); background: color-mix(in srgb, var(--sc-primary) 10%, transparent); border-radius: 7px; padding: 2px 8px; font-family: var(--sc-font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-primary); }

/* editorial strip */
.sc-editorial { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .sc-editorial { grid-template-columns: 2fr 1fr; gap: 32px; } }
/* Story card — StoryCard: the text sits on the page, not in a panel. */
.sc-story { display: block; min-width: 0; }
.sc-story:hover { text-decoration: none; }
.sc-story__thumb { position: relative; display: block; overflow: hidden; border-radius: 7px; border: 1px solid var(--sc-border); background: var(--sc-surface-2); aspect-ratio: 16/9; }
.sc-story__thumb img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s; }
.sc-story:hover .sc-story__thumb img { transform: scale(1.05); }
.sc-story__scrim { position: absolute; inset: auto 0 0 0; height: 50%; background: linear-gradient(to top, color-mix(in srgb, var(--sc-ink) 80%, transparent), transparent); pointer-events: none; }
.sc-story__cat { position: absolute; left: 12px; bottom: 12px; border-radius: 4px; background: color-mix(in srgb, var(--sc-surface) 95%, transparent); padding: 4px 8px; font-family: var(--sc-font-mono); font-size: 10px; line-height: 15px; text-transform: uppercase; letter-spacing: .14em; color: var(--sc-ink); }
.sc-story__title { margin-top: 12px; font-family: var(--sc-font-heading); font-weight: 700; font-size: 18px; line-height: 1.375; color: var(--sc-ink); }
.sc-story:hover .sc-story__title { color: var(--sc-primary); }
.sc-story--lg .sc-story__title { font-size: 24px; line-height: 1.25; }
.sc-story__excerpt { margin-top: 8px; font-size: 14px; line-height: 20px; color: var(--sc-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sc-story__meta { margin-top: 12px; display: flex; min-width: 0; flex-wrap: wrap; align-items: center; gap: 4px 8px; font-size: 12px; line-height: 16px; color: var(--sc-muted); }
.sc-story__by { display: inline-flex; min-width: 0; align-items: center; gap: 8px; }
.sc-story__avatar { display: grid; height: 24px; width: 24px; flex-shrink: 0; place-items: center; border-radius: 50%; font-family: var(--sc-font-mono); font-size: 10px; font-weight: 700; color: #fff; }
.sc-story__byname { color: var(--sc-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sc-storylist { display: flex; flex-direction: column; }
.sc-storylist > * + * { border-top: 1px solid var(--sc-border); }
.sc-storyrow { display: grid; grid-template-columns: 96px minmax(0,1fr); gap: 12px; padding: 16px 0; align-items: start; }
.sc-storylist .sc-storyrow:first-child { padding-top: 0; }
.sc-storylist .sc-storyrow:last-child { padding-bottom: 0; }
.sc-storyrow:hover { text-decoration: none; }
.sc-storyrow__thumb { display: block; height: 72px; width: 96px; flex-shrink: 0; overflow: hidden; border-radius: 6px; border: 1px solid var(--sc-border); background: var(--sc-surface-2); }
.sc-storyrow__thumb img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s; }
.sc-storyrow:hover .sc-storyrow__thumb img { transform: scale(1.05); }
.sc-storyrow__body { min-width: 0; display: block; }
.sc-storyrow__cat { display: block; font-family: var(--sc-font-mono); font-size: 10px; line-height: 15px; text-transform: uppercase; letter-spacing: .14em; color: var(--sc-muted); }
.sc-storyrow__title { display: -webkit-box; margin-top: 4px; font-family: var(--sc-font-heading); font-weight: 600; font-size: 15px; line-height: 1.375; color: var(--sc-ink); -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sc-storyrow:hover .sc-storyrow__title { color: var(--sc-primary); }
.sc-storyrow__date { display: block; margin-top: 4px; font-size: 12px; line-height: 16px; color: var(--sc-muted); }
.sc-guideband { margin-top: 24px; background: #17181C; color: #fff; border-radius: 8px; padding: 16px; display: grid; grid-template-columns: 96px minmax(0,1fr); align-items: center; gap: 16px; transition: background-color .15s; }
@media (min-width: 640px) { .sc-guideband { grid-template-columns: 160px minmax(0,1fr) auto; gap: 20px; } }
.sc-guideband:hover { background: var(--sc-primary); text-decoration: none; }
.sc-guideband__thumb { display: block; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 6px; }
.sc-guideband__thumb img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s; }
.sc-guideband:hover .sc-guideband__thumb img { transform: scale(1.05); }
.sc-guideband__body { min-width: 0; }
.sc-guideband__eyebrow { display: block; font-family: var(--sc-font-mono); font-size: 10px; line-height: 15px; text-transform: uppercase; letter-spacing: .14em; opacity: .7; }
.sc-guideband__title { display: block; margin-top: 4px; font-family: var(--sc-font-heading); font-weight: 700; font-size: 18px; line-height: 1.25; }
.sc-guideband__excerpt { display: -webkit-box; margin-top: 4px; font-size: 12px; line-height: 16px; opacity: .8; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 640px) { .sc-guideband__excerpt { -webkit-line-clamp: 1; } }
.sc-guideband__cta { grid-column: span 2; display: inline-flex; align-items: center; gap: 4px; font-family: var(--sc-font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; white-space: nowrap; }
@media (min-width: 640px) { .sc-guideband__cta { grid-column: span 1; } }

/* review page head + sidebar stack */
.sc-review-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.sc-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 64px; }
@media (max-width: 1023px) { .sc-sidebar { position: static; } }
.sc-sidebar .sc-finder { min-height: 0; }
.sc-sidebar .sc-finder__stats { display: none; }


/* ---------------------------------------------------------------- row detail panel (ported 1:1) */
.sc-stars { display: inline-flex; align-items: center; gap: 2px; line-height: 1; }
.sc-star { color: var(--sc-gold); font-size: 14px; line-height: 1; }
.sc-star--empty { color: var(--sc-gold); opacity: .35; }
.sc-star--half { position: relative; display: inline-block; color: var(--sc-gold); opacity: .35; }
.sc-star--half > span { position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; opacity: 1; }
.sc-stars__num { font-family: var(--sc-font-mono); font-size: 12px; color: var(--sc-ink); margin-left: 4px; }
.sc-cta-arrow { font-size: 11px; line-height: 1; }
.sc-pick-star { color: var(--sc-gold); font-size: 12px; }
.sc-pick-why { font-size: 12px; color: var(--sc-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 639px) { .sc-pick-why { display: none; } }
.sc-deflist div { display: flex; justify-content: space-between; gap: 8px; padding-bottom: 4px; margin-bottom: 4px; border-bottom: 1px solid color-mix(in srgb, var(--sc-border) 70%, transparent); }
.sc-deflist dd { text-align: right; overflow: hidden; text-overflow: ellipsis; }
.sc-panel-link { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--sc-primary); }
.sc-statgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.sc-statbox { border: 1px solid var(--sc-border); background: var(--sc-surface); border-radius: 7px; padding: 8px; }
.sc-statbox span { display: block; font-family: var(--sc-font-mono); font-size: 10px; line-height: 15px; text-transform: uppercase; letter-spacing: .1em; color: var(--sc-muted); }
.sc-statbox b { display: block; font-family: var(--sc-font-mono); font-size: 12px; line-height: 16px; font-weight: 400; color: var(--sc-ink); }
.sc-thirdparty { border-top: 1px solid var(--sc-border); padding-top: 8px; margin-bottom: 12px; }
.sc-thirdparty__list { display: flex; flex-wrap: wrap; gap: 4px 12px; font-family: var(--sc-font-mono); font-size: 12px; margin-top: 4px; }
.sc-bonusbox { border: 1px solid var(--sc-border); background: var(--sc-surface); border-radius: 7px; padding: 12px; margin-bottom: 12px; }
.sc-bonusbox__label { font-family: var(--sc-font-mono); font-size: 12px; text-transform: uppercase; color: var(--sc-muted); margin-bottom: 2px; }
.sc-bonusbox__offer { font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; color: var(--sc-ink); margin-bottom: 8px; }
.sc-bonusbox__maths { margin-top: 8px; font-family: var(--sc-font-mono); font-size: 11px; color: var(--sc-muted); }
.sc-code { display: inline-flex; align-items: center; gap: 8px; border: 1px dashed var(--sc-border); background: var(--sc-bg); border-radius: 7px; padding: 4px 10px; font-family: var(--sc-font-mono); font-size: 12px; color: var(--sc-ink); cursor: pointer; }
.sc-code:hover { border-color: var(--sc-primary); color: var(--sc-primary); }
.sc-similar { margin-bottom: 12px; }
.sc-similar__row { display: flex; align-items: center; gap: 8px; padding: 4px; margin: 0 -4px; border-radius: 7px; font-size: 12px; color: var(--sc-ink); }
.sc-similar__row:hover { background: var(--sc-surface-2); text-decoration: none; }
.sc-similar__rating { margin-left: auto; font-size: 10px; color: var(--sc-muted); }
.sc-compliance { margin-top: 8px; text-align: center; font-size: 10px; line-height: 15px; color: var(--sc-muted); }


/* ---------------------------------------------------------------- category page */
.sc-page--tight { padding-top: 24px; padding-bottom: 24px; }
.sc-page--tight > * + * { margin-top: 0; }
.sc-layout--flush { padding-top: 0; }
.sc-content h1 { font-size: 30px; line-height: 1.15; }
@media (min-width: 768px) { .sc-content h1 { font-size: 36px; } }
.sc-lede { margin-top: 8px; font-size: 16px; line-height: 1.5; color: var(--sc-muted); max-width: 768px; }
.sc-h3 { font-family: var(--sc-font-heading); font-weight: 700; font-size: 20px; line-height: 28px; margin: 0 0 12px; }

.sc-pills { border-bottom: 1px solid var(--sc-border); margin: 0 -16px 24px; padding: 0 16px; overflow-x: auto; }
.sc-pills::-webkit-scrollbar { display: none; }
.sc-pills ul { display: flex; gap: 8px; padding: 8px 0; margin: 0; list-style: none; min-width: max-content; }
.sc-pill-link { display: inline-block; padding: 6px 12px; font-family: var(--sc-font-heading); font-weight: 500; font-size: 12px; line-height: 16px; border-radius: 7px; border: 1px solid var(--sc-border); background: var(--sc-surface); color: var(--sc-ink); white-space: nowrap; }
.sc-pill-link:hover { background: var(--sc-surface-2); text-decoration: none; }
.sc-pill-link.is-active { background: var(--sc-primary); border-color: var(--sc-primary); color: #fff; }

.sc-comparewrap { overflow-x: auto; border: 1px solid var(--sc-border); border-radius: 7px; }
table.sc-compare { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 12px; line-height: 16px; background: var(--sc-surface); }
.sc-compare thead { background: var(--sc-surface-2); }
.sc-compare th { text-align: left; padding: 8px; font-family: var(--sc-font-body); font-size: 12px; line-height: 16px; font-weight: 700; color: var(--sc-ink); }
.sc-compare td { padding: 8px; border-top: 1px solid var(--sc-border); font-size: 12px; line-height: 16px; }
.sc-compare td a { color: var(--sc-primary); font-weight: 600; }


/* ---------------------------------------------------------------- sister page */
.sc-subject { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
@media (min-width: 768px) { .sc-subject { grid-template-columns: 1fr 3fr; align-items: center; } }
.sc-subject__brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.sc-subject__name { font-family: var(--sc-font-heading); font-weight: 700; color: var(--sc-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sc-subject__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 768px) { .sc-subject__stats { grid-template-columns: repeat(4, 1fr); } }
.sc-sisters { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
@media (min-width: 768px) { .sc-sisters { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.sc-sister { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; padding: 12px; display: block; }
a.sc-sister:hover { border-color: var(--sc-primary); text-decoration: none; }
.sc-sister__name { font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; color: var(--sc-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sc-sister__licence { margin-top: 4px; font-family: var(--sc-font-mono); font-size: 10px; color: var(--sc-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sc-compare--wide { min-width: 720px; }


/* ---------------------------------------------------------------- header button variants */
.sc-header__actions .sc-btn--secondary { background: transparent; font-family: var(--sc-font-body); }
.sc-header__actions .sc-btn--secondary:hover { background: var(--sc-surface-2); }
.sc-header__actions .sc-btn--primary { border: 0; }

/* Size modifiers that were missing on the list buttons */
.sc-btn--loadmore { padding: 10px 24px; font-size: 14px; line-height: 20px; }
.sc-btn--claim { min-height: 40px; }
.sc-btn--card { padding: 8px 12px; font-size: 12px; line-height: 16px; }

/* The "view all" button is the mono outline style everywhere in the Lovable build */
.sc-viewall .sc-btn-outline { width: auto; }
@media (max-width: 640px) { .sc-viewall .sc-btn-outline { width: 100%; } }

/* ---------------------------------------------------------------- newsletter (footer) */
.sc-newsletter { border-bottom: 1px solid var(--sc-border); padding: 24px 0; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (min-width: 640px) { .sc-newsletter { flex-direction: row; align-items: center; } }
.sc-newsletter__copy b { display: block; font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; color: var(--sc-ink); }
.sc-newsletter__copy span { font-size: 12px; color: var(--sc-muted); }
.sc-newsletter__form { display: flex; gap: 8px; width: 100%; }
@media (min-width: 640px) { .sc-newsletter__form { width: auto; margin-left: auto; } }
.sc-newsletter input { border-radius: 7px; background: var(--sc-surface); border: 1px solid var(--sc-border); color: var(--sc-ink); padding: 8px 12px; font-size: 14px; min-width: 0; flex: 1; font-family: inherit; }
@media (min-width: 640px) { .sc-newsletter input { min-width: 240px; } }
.sc-newsletter input:focus { outline: none; border-color: var(--sc-primary); }
.sc-newsletter button { border-radius: 7px; background: var(--sc-primary); color: #fff; border: 0; padding: 8px 16px; font-size: 14px; line-height: 22px; font-family: var(--sc-font-heading); font-weight: 600; cursor: pointer; }
.sc-newsletter button:hover { background: var(--sc-primary-hover); }
.sc-footer__affiliate { margin-top: 24px; font-size: 12px; line-height: 1.625; color: var(--sc-muted); }
.sc-footer__affiliate span { font-family: var(--sc-font-mono); text-transform: uppercase; letter-spacing: .08em; margin-right: 4px; }

/* ---------------------------------------------------------------- cookie banner + back to top */
.sc-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--sc-surface); border-top: 1px solid var(--sc-border); box-shadow: 0 -1px 2px rgba(23,24,28,.06); }
.sc-cookie[hidden] { display: none; }
.sc-cookie__inner { max-width: 1280px; margin: 0 auto; padding: 12px 16px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
@media (min-width: 768px) { .sc-cookie__inner { flex-direction: row; align-items: center; } }
.sc-cookie p { font-size: 12px; color: var(--sc-ink); flex: 1; margin: 0; }
.sc-cookie__actions { display: flex; gap: 8px; width: 100%; }
@media (min-width: 768px) { .sc-cookie__actions { width: auto; } }
.sc-cookie__btn { flex: 1; padding: 6px 12px; font-size: 12px; line-height: 16px; border: 1px solid var(--sc-border); border-radius: 7px; background: var(--sc-surface); color: var(--sc-ink); cursor: pointer; font-family: inherit; }
@media (min-width: 768px) { .sc-cookie__btn { flex: 0 0 auto; } }
.sc-cookie__btn:hover { background: var(--sc-surface-2); }
.sc-cookie__btn--accept { background: var(--sc-primary); border-color: var(--sc-primary); color: #fff; }
.sc-cookie__btn--accept:hover { background: var(--sc-primary-hover); }
.sc-cookie__close { padding: 6px; border: 1px solid var(--sc-border); border-radius: 7px; background: var(--sc-surface); cursor: pointer; font-size: 16px; line-height: 16px; }
.sc-totop { position: fixed; right: 16px; bottom: 96px; z-index: 30; padding: 10px; border-radius: 7px; background: var(--sc-surface); border: 1px solid var(--sc-border); box-shadow: 0 1px 2px rgba(23,24,28,.06); cursor: pointer; line-height: 1; }
.sc-totop[hidden] { display: none; }


/* sidebar variant of the finder: shorter CTA, no stats strip */
.sc-sidebar .sc-finder__go { height: 40px; font-size: 14px; font-weight: 600; }
.sc-sidebar .sc-finder__title { font-size: 16px; }
.sc-sidebar .sc-finder__opts { gap: 6px; }
.sc-sidebar .sc-finder__opt { min-height: 44px; font-size: 14px; padding: 8px 10px; }
.sc-sidebar .sc-finder__opt b { font-size: 13px; }

.sc-sitemap { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 32px; }
@media (min-width: 1024px) { .sc-sitemap { columns: 3; } }
.sc-sitemap li { margin-bottom: 6px; font-size: 14px; break-inside: avoid; }
.sc-authorbio p { color: var(--sc-muted); line-height: 1.625; }


/* ---------------------------------------------------------------- picks rail (ported) */
.sc-rail { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 7px; padding: 0; overflow: hidden; }
.sc-rail__cap { display: flex; align-items: center; gap: 8px; background: var(--sc-gold-soft); border-bottom: 1px solid var(--sc-gold); padding: 8px 12px; }
.sc-rail__star { color: var(--sc-gold); font-size: 14px; }
.sc-rail__title { font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; color: var(--sc-bronze); margin: 0; text-transform: none; letter-spacing: 0; }
.sc-rail__list { list-style: none; margin: 0; padding: 0; }
.sc-rail__item { padding: 12px; border-top: 1px solid var(--sc-border); }
.sc-rail__list > li:first-child { border-top: 0; }
.sc-rail__item--first { background: color-mix(in srgb, var(--sc-gold-soft) 30%, transparent); }
.sc-rail__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.sc-rail__rank { font-family: var(--sc-font-mono); font-size: 12px; font-weight: 700; width: 20px; }
.sc-rail__name { display: block; font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; color: var(--sc-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sc-rail__badges { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.sc-licencebadge { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--sc-border); border-radius: 7px; padding: 2px 6px; font-family: var(--sc-font-mono); font-size: 10px; color: var(--sc-muted); }
.sc-licencebadge b { color: var(--sc-ink); font-weight: 600; }
.sc-rail__bonus { font-size: 12px; line-height: 18px; color: var(--sc-ink); margin-bottom: 8px; min-height: 40px; }
.sc-rail__item .sc-code { margin-bottom: 8px; }
.sc-rail__compliance { padding: 8px 12px; border-top: 1px solid var(--sc-border); font-size: 10px; line-height: 14px; color: var(--sc-muted); margin: 0; }

/* breadcrumbs as a list */
.sc-breadcrumbs ol { list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; }
.sc-breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.sc-crumb-sep { opacity: .6; }

/* The picks rail also appears inline on mobile, as in the Lovable layout. */
.sc-rail-mobile { margin: 16px 0 24px; }
@media (min-width: 1024px) { .sc-rail-mobile { display: none; } }


/* ---------------------------------------------------------------- inline icons */
.sc-i { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.sc-stars { display: inline-flex; align-items: center; gap: 2px; color: var(--sc-gold); line-height: 1; }
.sc-star--full { color: var(--sc-gold); }
.sc-star--empty { color: var(--sc-gold); opacity: .45; }
.sc-star--half { position: relative; display: inline-flex; line-height: 0; }
.sc-star--halffill { position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; line-height: 0; }
.sc-nav__caret { opacity: .7; }
.sc-cta-arrow { display: none; }
.sc-verified .sc-i { color: var(--sc-primary); }
.sc-footer__chip .sc-i, .sc-chip .sc-i { color: var(--sc-muted); }
.sc-tile__arrow .sc-i { display: inline-block; }
.sc-rail__star { display: inline-flex; color: var(--sc-gold); }
.sc-crumb-sep { display: inline-flex; align-items: center; opacity: .6; }
.sc-code .sc-i { opacity: .6; }

/* Fixed line-heights, matching the Tailwind scale the Lovable build resolves to. */
.sc-content .sc-muted { line-height: 1.5; }
.sc-content p.sc-muted { line-height: 26px; }
.sc-lede { line-height: 24px; }
.sc-sub { line-height: 20px; }
.sc-row__meta, .sc-row__col, .sc-deflist { line-height: 16px; }
.sc-mono { line-height: inherit; }
.sc-authorbio p { line-height: 24px; }

.sc-content .sc-mono, .sc-content .sc-row__meta, .sc-content .sc-sister__licence { line-height: 16px; }
.sc-content .sc-eyebrow { line-height: 15px; }

/* Pin the line-height that goes with each small size, the way the Tailwind
   text-xs / text-[10px] utilities do in the Lovable build. */
.sc-similar__row, .sc-bonusbox__label, .sc-thirdparty__list, .sc-rail__bonus,
.sc-tile-card__verdict, .sc-terms, .sc-desk__stats, .sc-pick-why { line-height: 16px; }
[style*="font-size:12px"] { line-height: 16px; }
[style*="font-size:13px"] { line-height: 18px; }
[style*="font-size:11px"] { line-height: 16.5px; }
[style*="font-size:10px"] { line-height: 15px; }
[style*="font-size:14px"] { line-height: 20px; }

/* Curated related-page cluster: label plus the one-line hook. */
.sc-clustercard { display: block; background-color: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 6px; padding: 16px; }
.sc-clustercard, .sc-clustercard:link, .sc-clustercard:visited { background-color: var(--sc-surface); }
.sc-clustercard:hover { background: var(--sc-surface-2); text-decoration: none; }
.sc-clustercard__label { font-family: var(--sc-font-heading); font-weight: 600; font-size: 14px; line-height: 20px; color: var(--sc-ink); }
.sc-clustercard__blurb { display: block; margin-top: 4px; font-size: 12px; line-height: 1.625; color: var(--sc-muted); }

/* News / guides index grid — StoryCard columns. */
.sc-storygrid { display: grid; grid-template-columns: 1fr; column-gap: 24px; row-gap: 32px; margin-top: 32px; }
@media (min-width: 768px) { .sc-storygrid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .sc-storygrid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.sc-clamp4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* New-slots release grid. */
.sc-slotgrid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
@media (min-width: 768px) { .sc-slotgrid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.sc-slotcard { background: var(--sc-surface); border: 1px solid var(--sc-border); border-radius: 6px; padding: 16px; }
.sc-slotcard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.sc-slotcard__name { font-family: var(--sc-font-heading); font-weight: 600; font-size: 16px; line-height: 24px; margin: 0; }
.sc-slotcard__meta { font-family: var(--sc-font-mono); font-size: 12px; line-height: 16px; color: var(--sc-muted); }
.sc-slotcard__new { flex: 0 0 auto; white-space: nowrap; background: var(--sc-surface-2); color: var(--sc-muted); border-radius: 4px; padding: 2px 8px; font-family: var(--sc-font-mono); font-size: 10px; line-height: 15px; text-transform: uppercase; letter-spacing: .05em; }
.sc-slotcard__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; text-align: center; border-top: 1px solid var(--sc-border); border-bottom: 1px solid var(--sc-border); padding: 8px 0; margin: 8px 0; }
.sc-slotcard__stats > div:nth-child(2) { border-left: 1px solid var(--sc-border); border-right: 1px solid var(--sc-border); }
.sc-slotcard__stats span { display: block; font-family: var(--sc-font-mono); font-size: 10px; line-height: 15px; text-transform: uppercase; color: var(--sc-muted); }
.sc-slotcard__stats b { font-family: var(--sc-font-mono); font-size: 14px; line-height: 20px; font-weight: 400; color: var(--sc-ink); }
.sc-slotcard__note { font-size: 12px; line-height: 1.625; color: var(--sc-muted); margin: 0; }
.sc-slotcard__play { margin-top: 12px; font-size: 12px; line-height: 16px; }
.sc-slotcard__play span { color: var(--sc-muted); }
.sc-slotcard__play a { color: var(--sc-primary); font-weight: 600; }
.sc-brandpicks { margin-top: 12px; font-size: 14px; line-height: 20px; }
.sc-brandpicks li + li { margin-top: 8px; }
.sc-brandpicks a { color: var(--sc-primary); font-weight: 600; }

/* Touch targets: the compact desktop buttons are too small to tap. Desktop
   sizing is unchanged — this only applies on phones. */
@media (max-width: 767px) {
	.sc-rail .sc-btn, .sc-rail__item .sc-btn { height: 40px; }
	.sc-header__actions .sc-btn--sm { height: 34px; }
	.sc-tile-card__foot .sc-btn { min-height: 40px; }
	.sc-compare .sc-btn { height: 34px; }
}

/* Brand mark tile: the fetched logo, letterboxed inside the same rounded chip
   the initials fallback uses. */
.sc-logo--mark { position: relative; overflow: hidden; padding: 0; }
.sc-logo--mark img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
