/* =============================================================================
 * CasinoCut — Stylesheet (BEM). Swiss editorial minimal theme.
 * Near-white paper, black text, one red accent, hairline grid, conic donuts.
 * Distinct from the other eight sites.
 * ========================================================================== */
:root {
  --paper: #faf9f5;
  --paper-2: #ffffff;
  --paper-3: #f0efe9;
  --ink: #121210;
  --ink-soft: #52504a;
  --muted: #8b897e;
  --line: #e4e2da;
  --line-2: #cfcdc3;

  --red: #e5322d;
  --red-d: #c11f1b;
  --red-soft: #fcece9;

  --radius: 3px;
  --wrap: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--ink); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
code { font-family: var(--mono); }
h1, h2, h3 { line-height: 1.06; letter-spacing: -.025em; font-weight: 800; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--red); color: #fff; padding: 10px 16px; border-radius: var(--radius); font-weight: 700; transition: top .2s; }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; border-radius: var(--radius); padding: 12px 20px; line-height: 1.1; border: 1.5px solid transparent; transition: transform .14s var(--ease), background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-d); }
.btn--line { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn--line:hover { border-color: var(--ink); }
.btn--sm { padding: 9px 15px; font-size: .88rem; }
.btn--lg { padding: 15px 26px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--red-d); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--red); }
.tag { display: inline-block; padding: 3px 9px; border: 1px solid var(--line-2); font-size: .74rem; color: var(--muted); font-weight: 600; }
.red { color: var(--red-d); font-weight: 800; }
.pill { display: inline-block; padding: 5px 12px; background: var(--ink); color: var(--paper); font-weight: 800; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; }

.sect-head { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.sect-head h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); letter-spacing: -.03em; }
.sect-head p { margin-top: 10px; color: var(--muted); font-size: 1.05rem; }
.h-sect { font-size: 1.15rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .02em; }

/* ---- conic donut ----------------------------------------------------------- */
.donut { position: relative; width: 92px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--red) calc(var(--p, 0) * 1%), var(--paper-3) 0); flex: none; }
.donut::before { content: ""; position: absolute; inset: 11px; background: var(--paper-2); border-radius: 50%; border: 1px solid var(--line); }
.donut__num { position: relative; font-family: var(--mono); font-weight: 800; font-size: 1.4rem; line-height: 1; text-align: center; }
.donut__num small { display: block; color: var(--muted); font-size: .5rem; font-weight: 700; margin-top: 3px; }
.donut--lg { width: 150px; }
.donut--lg::before { inset: 16px; }
.donut--lg .donut__num { font-size: 2.2rem; }
.donut--lg .donut__num small { font-size: .6rem; }
.donut--xl { width: 184px; }
.donut--xl::before { inset: 18px; }
.donut--xl .donut__num { font-size: 2.8rem; }

/* verdict badge */
.vbadge { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 3px 0; color: var(--ink-soft); }
.vbadge::before { content: ""; width: 8px; height: 8px; background: var(--muted); }
.vbadge--top { color: var(--red-d); }
.vbadge--top::before { background: var(--red); }
.vbadge--short::before { background: var(--ink); }
.vbadge--solid::before { background: var(--muted); }
.vbadge--fair::before { background: var(--line-2); }

/* metric lines */
.metric-list { display: grid; gap: 16px; }
.metric { display: grid; grid-template-columns: 130px 1fr 40px; align-items: center; gap: 16px; }
.metric__k { font-weight: 700; font-size: .92rem; }
.metric__bar { height: 3px; background: var(--line); position: relative; }
.metric__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--red); transition: width 1s var(--ease); }
.metric__v { font-family: var(--mono); font-weight: 800; text-align: right; }

/* brand lockup */
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand__ic { width: 38px; height: 38px; object-fit: contain; padding: 3px; background: var(--paper-2); border: 1px solid var(--line); flex: none; }
.brand__name { font-weight: 800; font-size: 1.1rem; }
.brand__mark { height: 30px; width: auto; }
.brand--wide { background: #14100a; padding: 6px 11px; border: 1px solid var(--line); }

/* ---- header ---------------------------------------------------------------- */
.cc-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 249, 245, .92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--ink); }
.cc-header__in { display: flex; align-items: center; gap: 20px; min-height: 66px; }
.wordmark { font-weight: 800; font-size: 1.3rem; letter-spacing: -.04em; text-transform: uppercase; }
.wordmark__hi { color: var(--red-d); }
.cc-nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.cc-nav__link { padding: 9px 12px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); transition: color .2s; }
.cc-nav__link:hover { color: var(--ink); }
.cc-nav__link.is-active { color: var(--red-d); }
.cc-header__side { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.hamb { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamb span { width: 24px; height: 2px; background: var(--ink); transition: .25s var(--ease); }
.cc-header.is-open .hamb span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cc-header.is-open .hamb span:nth-child(2) { opacity: 0; }
.cc-header.is-open .hamb span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid var(--line-2); background: var(--paper-2); font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.lang__btn:hover { border-color: var(--ink); color: var(--ink); }
.lang__menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 190px; background: var(--paper-2); border: 1px solid var(--ink); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .16s var(--ease); z-index: 60; }
.lang[data-open] .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__opt { display: flex; gap: 9px; padding: 10px 12px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.lang__opt:hover { background: var(--paper-3); color: var(--ink); }
.lang__opt.is-active { color: var(--red-d); }

/* ---- hero ------------------------------------------------------------------ */
.hero { padding: 60px 0 52px; border-bottom: 1px solid var(--line); }
.hero__in { display: grid; grid-template-columns: 1.3fr .82fr; gap: 48px; align-items: center; }
.hero__title { font-size: clamp(2.3rem, 5.2vw, 3.9rem); margin: 18px 0 0; letter-spacing: -.04em; }
.hero__lead { margin-top: 18px; color: var(--ink-soft); font-size: 1.14rem; max-width: 30em; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero__trust { margin-top: 26px; }
.hero__pick { position: relative; border: 1px solid var(--ink); padding: 30px 26px 24px; text-align: center; background: var(--paper-2); }
.hero__pick-tag { position: absolute; top: -11px; left: 22px; background: var(--red); color: #fff; font-weight: 800; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 4px 12px; }
.hero__pick .donut { margin: 6px auto 16px; }
.hero__pick-brand { display: flex; justify-content: center; margin-bottom: 12px; }
.hero__pick-bonus { font-weight: 800; margin-bottom: 16px; }
.hero__pick-link { display: inline-block; margin-top: 12px; color: var(--red-d); font-weight: 700; }

/* ---- the cut (editorial list) --------------------------------------------- */
.cut { padding: 56px 0; }
.cut-list { border-top: 1px solid var(--ink); }
.cut-item { display: grid; grid-template-columns: 60px 1fr 92px 210px; gap: 26px; align-items: center; padding: 26px 4px; border-bottom: 1px solid var(--line); }
.cut-item--feat { border-bottom: 2px solid var(--ink); }
.cut-item__no { font-family: var(--mono); font-size: 1.6rem; font-weight: 800; color: var(--muted); }
.cut-item--feat .cut-item__no { color: var(--red-d); }
.cut-item__head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.cut-item__tag { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 12px; }
.cut-item__facts { display: flex; gap: 26px; flex-wrap: wrap; }
.cut-item__facts dt { font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.cut-item__facts dd { font-weight: 700; font-size: .95rem; }
.cut-item__donut { display: grid; justify-items: center; }
.cut-item__act { display: grid; gap: 8px; }

/* ---- why ------------------------------------------------------------------- */
.why { padding: 24px 0 56px; }
.why__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.why__intro h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: 14px 0 12px; letter-spacing: -.03em; }
.why__intro p { color: var(--ink-soft); font-size: 1.06rem; }
.why__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.why__list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.why__list li:nth-child(odd) { padding-right: 20px; border-right: 1px solid var(--line); padding-left: 2px; }
.why__list li:nth-child(even) { padding-left: 20px; }
.why__list h3 { font-size: 1.02rem; position: relative; padding-left: 20px; }
.why__list h3::before { content: ""; position: absolute; left: 0; top: 6px; width: 10px; height: 10px; background: var(--red); }
.why__list p { margin-top: 8px; color: var(--muted); font-size: .93rem; }

/* ---- judge (method) -------------------------------------------------------- */
.judge { padding: 56px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.judge__wrap { display: grid; grid-template-columns: 1.4fr .85fr; gap: 44px; align-items: start; }
.judge__list { display: grid; }
.judge__step { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.judge__step:last-child { border-bottom: 0; }
.judge__n { flex: none; font-family: var(--mono); font-weight: 800; color: var(--red-d); font-size: 1.05rem; }
.judge__step h3 { font-size: 1.05rem; }
.judge__step p { margin-top: 5px; color: var(--muted); font-size: .93rem; }
.scale { border: 1px solid var(--ink); padding: 24px; background: var(--paper-2); }
.scale h3 { font-size: 1.05rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .02em; }
.scale__row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.scale__row:last-child { border-bottom: 0; }
.scale__dot { width: 12px; height: 12px; flex: none; }
.scale__dot--top { background: var(--red); }
.scale__dot--short { background: var(--ink); }
.scale__dot--solid { background: var(--muted); }
.scale__dot--fair { background: var(--line-2); }
.scale__rng { margin-left: auto; font-family: var(--mono); color: var(--muted); font-weight: 700; }

/* ---- compare table --------------------------------------------------------- */
.ctable-sec { padding: 56px 0; }
.ctable__scroll { overflow-x: auto; border: 1px solid var(--ink); }
.ctable { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--paper-2); }
.ctable th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 14px 18px; border-bottom: 1px solid var(--ink); }
.ctable td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-weight: 700; font-size: .92rem; vertical-align: middle; }
.ctable tr:last-child td { border-bottom: 0; }
.ctable .red { font-family: var(--mono); font-size: 1.2rem; }
.ctable__go { text-align: right; }

/* ---- faq ------------------------------------------------------------------- */
.faq { padding: 56px 0; }
.faq__wrap { max-width: 800px; }
.faq__list { border-top: 1px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 2px; text-align: left; font-weight: 700; font-size: 1.05rem; }
.faq__pm { position: relative; width: 16px; height: 16px; flex: none; }
.faq__pm::before, .faq__pm::after { content: ""; position: absolute; background: var(--red); }
.faq__pm::before { inset: 7px 0; height: 2px; }
.faq__pm::after { inset: 0 7px; width: 2px; transition: transform .25s var(--ease); }
.faq__q[aria-expanded="true"] .faq__pm::after { transform: scaleY(0); }
.faq__a { padding: 0 2px 20px; color: var(--ink-soft); }

/* ---- cta strip ------------------------------------------------------------- */
.cta-strip { padding: 20px 0 64px; }
.cta-strip__in { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; padding: 48px 24px; background: var(--ink); color: var(--paper); }
.cta-strip__in h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 20em; }

/* ---- trustpilot ------------------------------------------------------------ */
.tscore { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 11px 15px; background: var(--paper-2); border: 1px solid var(--line-2); }
.tscore:hover { border-color: #00b67a; }
.tscore__brand { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; }
.tscore__pips { display: inline-flex; gap: 3px; }
.tscore__pip { width: 20px; height: 20px; background: #d8d6cc; position: relative; }
.tscore__pip.is-on { background: #00b67a; }
.tscore__pip::after { content: "★"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 12px; }
.tscore__meta { font-size: .84rem; color: var(--muted); }
.tscore__meta strong { color: var(--ink); }

/* ---- subhead --------------------------------------------------------------- */
.subhead { padding: 44px 0 8px; }
.subhead h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-top: 10px; letter-spacing: -.03em; }
.subhead p { margin-top: 12px; color: var(--ink-soft); font-size: 1.05rem; max-width: 44em; }
.subhead__trust { margin-top: 20px; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); flex-wrap: wrap; }
.crumbs a:hover { color: var(--red-d); }

/* ---- article (review) ------------------------------------------------------ */
.article__head { padding: 30px 0 36px; border-bottom: 1px solid var(--ink); }
.article__top { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; margin-top: 18px; }
.article__brand { margin: 0 0 12px; }
.article__title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); letter-spacing: -.03em; }
.article__tag { margin: 10px 0 12px; color: var(--ink-soft); font-size: 1.05rem; max-width: 40em; }
.article__body { display: grid; grid-template-columns: 1fr 340px; gap: 44px; padding-top: 40px; padding-bottom: 60px; align-items: start; }
.article__lead { font-size: 1.22rem; color: var(--ink); margin-bottom: 32px; line-height: 1.55; }
.article__main section { margin-bottom: 34px; }

.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
.pc__box { padding: 24px 24px 24px 0; }
.pc__box--up { border-right: 1px solid var(--line); }
.pc__box--dn { padding-left: 24px; }
.pc__box h2 { font-size: 1.05rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .02em; }
.pc__list { display: grid; gap: 10px; }
.pc__list li { position: relative; padding-left: 22px; color: var(--ink-soft); }
.pc__list--up li::before { content: "+"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.pc__list--dn li::before { content: "–"; position: absolute; left: 2px; color: var(--muted); font-weight: 800; }

.article__tp .tscore { display: inline-flex; }
.verdict { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; padding: 26px; border: 1px solid var(--ink); background: var(--paper-2); }
.verdict__txt h2 { font-size: 1.3rem; margin-bottom: 10px; }
.verdict__txt p { color: var(--ink-soft); margin: 12px 0 14px; }

.article__side { position: sticky; top: 84px; display: grid; gap: 20px; }
.offer { background: var(--ink); color: var(--paper); padding: 24px; }
.offer__k { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: #a9a79c; font-weight: 700; }
.offer__h { display: block; font-size: 1.3rem; font-weight: 800; margin: 6px 0 12px; color: #ff8a80; }
.offer__meta { display: flex; flex-direction: column; gap: 4px; font-size: .86rem; color: #cbc9bd; margin-bottom: 16px; }
.offer__meta code { color: #ffb3ad; font-weight: 700; }
.numbers { border: 1px solid var(--line-2); padding: 22px; background: var(--paper-2); }
.numbers__t { font-size: 1.05rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .02em; }
.numbers__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.numbers__row:last-child { border-bottom: 0; }
.numbers__row dt { color: var(--muted); font-size: .9rem; }
.numbers__row dd { font-weight: 700; text-align: right; }
.facts { border: 1px solid var(--line-2); padding: 22px; background: var(--paper-2); }
.facts__t { font-size: 1.05rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .02em; }
.facts__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.facts__row:last-child { border-bottom: 0; }
.facts__row dt { color: var(--muted); font-size: .9rem; }
.facts__row dd { font-weight: 700; text-align: right; }
.side-more { border: 1px solid var(--line-2); padding: 18px 20px; background: var(--paper-2); }
.side-more h2 { font-size: 1.05rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .02em; }
.othr { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.othr:last-child { border-bottom: 0; }
.othr__sc { margin-left: auto; font-family: var(--mono); font-weight: 800; color: var(--red-d); }
.othr:hover .brand__name { color: var(--red-d); }
.side-back { display: inline-block; color: var(--muted); font-weight: 700; }
.side-back:hover { color: var(--red-d); }
.stickybar { position: sticky; bottom: 0; z-index: 80; display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; background: rgba(250, 249, 245, .96); backdrop-filter: blur(8px); border-top: 1px solid var(--ink); }
.stickybar__g { display: flex; align-items: center; gap: 8px; font-size: .85rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---- prose ----------------------------------------------------------------- */
.prose { padding: 26px 0 48px; }
.prose__col { max-width: 720px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); font-size: 1.08rem; }
.prose h2 { margin: 28px 0 12px; font-size: 1.4rem; letter-spacing: -.02em; }
.ticks { display: grid; gap: 10px; margin-bottom: 16px; }
.ticks li { position: relative; padding-left: 24px; color: var(--ink-soft); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; background: var(--red); }
.agegate { margin-top: 22px; padding: 16px 20px; background: var(--red-soft); border-left: 3px solid var(--red); font-weight: 700; }
.values { padding: 10px 0 56px; }
.values__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; border-top: 1px solid var(--ink); }
.valuecard { padding: 26px 24px 26px 0; border-bottom: 1px solid var(--line); }
.valuecard h3 { font-size: 1.12rem; }
.valuecard p { margin-top: 8px; color: var(--muted); }

/* ---- redirect -------------------------------------------------------------- */
.beam { min-height: 58vh; display: grid; place-items: center; padding: 60px 0; text-align: center; }
.beam__in { max-width: 520px; }
.beam__spin { width: 54px; height: 54px; margin: 0 auto 24px; border: 3px solid var(--line); border-top-color: var(--red); border-radius: 50%; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.beam h1 { font-size: 1.8rem; }
.beam p { margin-top: 12px; color: var(--ink-soft); }
.beam a { color: var(--red-d); font-weight: 700; text-decoration: underline; }
.beam__disc { margin-top: 20px; font-size: .82rem; color: var(--muted); }

/* ---- footer ---------------------------------------------------------------- */
.cc-footer { margin-top: 0; border-top: 1px solid var(--ink); background: var(--paper); }
.cc-footer__trust { border-bottom: 1px solid var(--line); padding: 32px 0; }
.cc-footer__trust-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cc-footer__trust-in h2 { font-size: 1.35rem; }
.cc-footer__trust-in p { margin-top: 6px; color: var(--muted); }
.cc-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 32px; padding: 44px 24px; }
.cc-footer__brand p { margin: 14px 0 14px; color: var(--muted); max-width: 340px; }
.cc-footer__col h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.cc-footer__col ul { display: grid; gap: 10px; }
.cc-footer__col a { color: var(--ink-soft); }
.cc-footer__col a:hover { color: var(--red-d); }
.cc-footer__legal { border-top: 1px solid var(--line); padding: 24px 0; font-size: .84rem; color: var(--muted); }
.cc-footer__legal p { max-width: 900px; }
.cc-footer__rg { margin-top: 10px; font-weight: 600; color: var(--ink-soft); }

/* ---- responsive ------------------------------------------------------------ */
@media (max-width: 980px) {
  .cc-nav { display: none; }
  .hamb { display: flex; }
  .cc-header.is-open .cc-nav { display: flex; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 2px; padding: 14px; background: var(--paper); border-bottom: 1px solid var(--ink); }
  .cc-header.is-open .cc-nav__link { padding: 12px; }
  .hero__in { grid-template-columns: 1fr; gap: 34px; }
  .cut-item { grid-template-columns: 44px 1fr 78px; grid-template-areas: "no body donut" "act act act"; row-gap: 16px; }
  .cut-item__no { grid-area: no; } .cut-item__body { grid-area: body; } .cut-item__donut { grid-area: donut; }
  .cut-item__act { grid-area: act; grid-auto-flow: column; }
  .why__grid { grid-template-columns: 1fr; gap: 26px; }
  .judge__wrap { grid-template-columns: 1fr; }
  .article__body { grid-template-columns: 1fr; }
  .article__side { position: static; }
  .article__top { grid-template-columns: 1fr; }
  .stickybar { display: flex; }
}
@media (max-width: 620px) {
  .cc-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .cc-footer__trust-in { flex-direction: column; align-items: flex-start; }
  .pc { grid-template-columns: 1fr; }
  .pc__box--up { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; }
  .pc__box--dn { padding-left: 0; padding-top: 24px; }
  .verdict { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .why__list { grid-template-columns: 1fr; }
  .why__list li:nth-child(odd) { border-right: 0; padding-right: 2px; }
  .why__list li:nth-child(even) { padding-left: 2px; }
  .cut-item { grid-template-columns: 40px 1fr; grid-template-areas: "no body" "donut donut" "act act"; }
  .cut-item__donut { justify-items: center; }
  .cut-item__act { grid-auto-flow: row; }
  .metric { grid-template-columns: 96px 1fr 34px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; } }
