/* =====================================================================
   All India Story — "Bold Editorial" design system
   Display: Fraunces (serif headlines) · UI: Inter · Reading: Source Serif 4
   Light + dark themes via [data-theme]. Mobile-first.
   ===================================================================== */
:root {
  --brand: #CC2837;
  --brand-deep: #A01D2B;
  --brand-soft: #FBECEC;
  --gold: #B8862B;
  --paper: #FAF8F4;
  --surface: #FFFFFF;
  --surface-2: #F2EEE8;
  --ink: #111113;
  --ink-2: #393A3F;
  --muted: #72747A;
  --rule: #E3DDD4;
  --rule-strong: #111113;
  --shadow: 0 1px 2px rgba(17, 17, 19, .04), 0 10px 30px -18px rgba(17, 17, 19, .25);
  --shadow-lg: 0 30px 60px -24px rgba(17, 17, 19, .35);
  --radius: 10px;
  --radius-sm: 6px;
  --display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --article-size: 20px;
  --wrap: 1280px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}
[data-theme="dark"] {
  --brand: #F0525E; --brand-deep: #FF7682; --brand-soft: #34181C; --gold: #D9A94E;
  --paper: #0C0C0D; --surface: #151517; --surface-2: #1E1F22; --ink: #F3F1EC; --ink-2: #C8C9CC; --muted: #8C8F95;
  --rule: #2A2B2F; --rule-strong: #F3F1EC; --shadow: 0 1px 2px rgba(0, 0, 0, .4); color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 140px; }
body { margin: 0; font-family: var(--font); background: var(--paper); color: var(--ink); line-height: 1.5; font-size: 16px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; padding-bottom: 64px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0; }
::selection { background: var(--brand); color: #fff; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
@media (min-width: 700px) { .wrap { padding: 0 28px; } }
.sr-only, .hp { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; border: 0 !important; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { left: -9999px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--brand); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
.ico { width: 20px; height: 20px; flex: none; }
.ico.sm { width: 14px; height: 14px; }
.ico.lg { width: 30px; height: 30px; }
.muted { color: var(--muted); } .small { font-size: 13px; }
.hide-sm { display: none !important; }
@media (min-width: 760px) { .hide-sm { display: inline-flex !important; } }
@media (max-width: 420px) { .hide-xs { display: none !important; } }
.eyebrow { display: inline-block; font: 700 11.5px/1 var(--font); letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: transform .15s, background .2s, color .2s, box-shadow .2s; white-space: nowrap; letter-spacing: .01em; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); }
.btn-ink { background: var(--ink); color: var(--paper); padding: 9px 16px; font-size: 13px; }
.btn-ink:hover { background: var(--brand); color: #fff; }
.btn-outline { border: 1.5px solid var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: #fff; color: #111; }
.btn-light:hover { background: var(--brand); color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; display: inline-grid; place-items: center; position: relative; transition: background .2s; }
.icon-btn:hover { background: var(--surface-2); }
.badge[hidden] { display: none; }
.badge { position: absolute; top: 3px; right: 3px; background: var(--brand); color: #fff; font-size: 10px; font-weight: 800; min-width: 16px; height: 16px;
  border-radius: 8px; display: grid; place-items: center; padding: 0 4px; }

/* ---------- top strip ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--brand); z-index: 60; transition: width .1s linear; }
.topbar { background: #111113; color: #B9BBC0; font-size: 12px; display: none; letter-spacing: .02em; }
@media (min-width: 900px) { .topbar { display: block; } }
.topbar-in { display: flex; align-items: center; gap: 24px; height: 34px; }
.topbar .today { display: none; }
.top-links { display: flex; gap: 20px; }
.top-links a:hover, .topbar .socials a:hover { color: #fff; }
.socials { display: flex; gap: 14px; align-items: center; margin-left: auto; }
.socials .ico { width: 15px; height: 15px; }
.socials.big .ico { width: 19px; height: 19px; }

/* ---------- masthead (newspaper style, condenses on scroll) ---------- */
.masthead { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); transition: box-shadow .3s; }
.masthead.scrolled { box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .35); }
.mast-in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 70px; transition: height .35s var(--ease); }
@media (min-width: 900px) { .mast-in { height: 96px; } }
.mast-left { display: flex; align-items: center; gap: 14px; }
.menu-btn { margin-left: -8px; }
.edition { display: none; flex-direction: column; line-height: 1.3; font-size: 12px; color: var(--muted); }
.edition b { color: var(--ink); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 10.5px; }
@media (min-width: 900px) { .edition { display: flex; } }
.brand { color: var(--ink); display: inline-flex; justify-self: center; }
.brand svg { height: 46px; width: auto; transition: height .35s var(--ease); }
@media (min-width: 900px) { .brand svg { height: 64px; } }
.mast-actions { display: flex; align-items: center; gap: 2px; justify-self: end; }
.mast-actions .btn { margin-left: 8px; }
.ico.sun, [data-theme="dark"] .ico.moon { display: none; }
[data-theme="dark"] .ico.sun { display: block; } .ico.moon { display: block; }
.catnav { border-top: 1px solid var(--rule); border-bottom: 3px double var(--rule-strong); }
.catnav-in { display: flex; align-items: center; gap: 2px; overflow-x: auto; scrollbar-width: none; height: 46px; }
@media (min-width: 1100px) { .catnav-in { justify-content: safe center; } }
.catnav-in::-webkit-scrollbar { display: none; }
.catnav a, .catnav .more > button { position: relative; padding: 8px 10px; font-weight: 600; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2);
  white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; transition: color .2s; }
.catnav a::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 2px; height: 2px; background: var(--c, var(--brand)); transform: scaleX(0); transition: transform .3s var(--ease); }
.catnav a:hover, .catnav a.on { color: var(--ink); }
.catnav a:hover::after, .catnav a.on::after { transform: scaleX(1); }
.catnav .nav-pill { margin-left: 8px; background: var(--brand); color: #fff !important; border-radius: 999px; padding: 6px 14px; }
.catnav .nav-pill::after { display: none; }
.mini-brand { display: none !important; padding: 0 12px 0 0 !important; }
.mini-brand img { width: 26px; height: 26px; }
.catnav .mini-brand::after { display: none; }
@media (min-width: 900px) {
  .masthead.scrolled .mast-in { height: 0; overflow: hidden; }
  .masthead.scrolled .mini-brand { display: inline-flex !important; }
  .masthead.scrolled .catnav { border-top-color: transparent; }
}
.more { position: relative; }
.more-menu { position: fixed; margin-top: 8px; background: var(--surface); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 6px; min-width: 220px; display: none; flex-direction: column; z-index: 50; }
.more.open .more-menu { display: flex; }
.catnav .more-menu a { border-radius: 6px; text-transform: none; letter-spacing: 0; font-size: 14px; }
.catnav .more-menu a::after { display: none; }
.more-menu a:hover { background: var(--surface-2); }

/* ---------- live ticker ---------- */
.ticker { background: var(--surface); border-bottom: 1px solid var(--rule); font-size: 14px; font-weight: 600; }
.ticker-in { display: flex; align-items: center; height: 42px; gap: 16px; overflow: hidden; }
.ticker-label { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; font-size: 11px; letter-spacing: .14em; font-weight: 800;
  background: var(--brand); color: #fff; padding: 6px 11px; border-radius: 4px; flex: none; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .8); } 70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }
.ticker-track { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.ticker-move { display: flex; gap: 56px; width: max-content; animation: tick 80s linear infinite; }
.ticker-move a { white-space: nowrap; position: relative; }
.ticker-move a:hover { color: var(--brand); }
.ticker-move a::after { content: "◆"; position: absolute; right: -33px; top: 1px; font-size: 8px; color: var(--brand); }
.ticker:hover .ticker-move { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- type ---------- */
.kicker { display: inline-flex; align-items: center; gap: 7px; font: 700 11px/1 var(--font); letter-spacing: .14em; text-transform: uppercase;
  color: var(--c, var(--brand)); margin-bottom: 9px; }
.kicker::before { content: ""; width: 14px; height: 2px; background: var(--c, var(--brand)); }
.meta { display: flex; flex-wrap: wrap; gap: 4px 0; color: var(--muted); font-size: 12.5px; font-weight: 500; margin-top: 10px; align-items: center; }
.meta > * { display: inline-flex; align-items: center; gap: 4px; }
.meta > * + *::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .6; margin: 0 9px; }
.h-display { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.6vw, 48px); line-height: 1.04; letter-spacing: -.02em; }
.h-xl { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3vw, 38px); line-height: 1.08; letter-spacing: -.015em; }
.h-md { font-family: var(--display); font-weight: 600; font-size: 20px; line-height: 1.22; letter-spacing: -.01em; }
.h-sm { font-family: var(--display); font-weight: 600; font-size: 16.5px; line-height: 1.28; }
.h-display a, .h-xl a, .h-md a, .h-sm a, .c-mini h3 a, .c-rank h3 a, .timeline span {
  background-image: linear-gradient(currentColor, currentColor); background-size: 0 1.5px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .45s var(--ease), color .2s; }
article:hover .h-display a, article:hover .h-xl a, article:hover .h-md a, article:hover .h-sm a, .c-mini:hover h3 a, .c-rank:hover h3 a, .timeline a:hover span { background-size: 100% 1.5px; }

/* ---------- media ---------- */
.media { display: block; overflow: hidden; border-radius: var(--radius-sm); background: var(--surface-2); position: relative; aspect-ratio: 3 / 2; }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), opacity .5s; }
article:hover .media img, .story-card:hover img { transform: scale(1.045); }
img[loading="lazy"] { opacity: 0; } img.loaded, img[loading="eager"], img:not([loading]) { opacity: 1; }
.save-btn { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .92); color: #111;
  display: grid; place-items: center; opacity: 0; transform: translateY(-4px); transition: .25s var(--ease); box-shadow: 0 4px 12px rgba(0, 0, 0, .15); }
article:hover .save-btn, .save-btn.saved { opacity: 1; transform: none; }
.save-btn.saved { background: var(--brand); color: #fff; }
@media (hover: none) { .save-btn { opacity: 1; transform: none; } }
.save-btn .ico { width: 16px; height: 16px; }

/* ---------- cards ---------- */
.c-card { display: flex; flex-direction: column; min-width: 0; }
.c-body { padding-top: 14px; display: flex; flex-direction: column; flex: 1; }
.excerpt { color: var(--ink-2); font-family: var(--serif); font-size: 16px; margin: 8px 0 0; line-height: 1.5; }
.c-lead .media { aspect-ratio: 16 / 10; }
.c-lead-body { padding-top: 18px; }
.c-lead .dek { font-family: var(--serif); font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); line-height: 1.5; margin: 14px 0 0; max-width: 62ch; }
.c-row { display: grid; grid-template-columns: 1fr 104px; gap: 14px; align-items: start; }
.c-row .media { aspect-ratio: 1 / 1; border-radius: 4px; }
.c-row .kicker { margin-bottom: 6px; font-size: 10px; }
.c-row .meta { margin-top: 6px; }
.c-mini { padding-top: 16px; border-top: 1px solid var(--rule); }
.c-mini .kicker { font-size: 10px; margin-bottom: 6px; }
.c-mini h3 { font-family: var(--display); font-size: 17px; font-weight: 600; line-height: 1.28; }
.c-rank { display: grid; grid-template-columns: 40px 1fr; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.c-rank:last-child { border-bottom: 0; }
.c-rank .num { font-family: var(--display); font-size: 34px; font-weight: 800; line-height: .9; color: var(--brand); }
.c-rank h3 { font-family: var(--display); font-size: 16px; font-weight: 600; line-height: 1.3; }
.c-rank .meta { margin-top: 6px; font-size: 11.5px; }
.rk-cat { color: var(--c); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 10.5px; }
.c-overlay { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px; isolation: isolate; color: #fff; }
.c-overlay .media { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.c-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, .55) 58%, rgba(0, 0, 0, .92)); pointer-events: none; }
.c-overlay-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; z-index: 2; max-width: 820px; }
.c-overlay-body .kicker { color: #fff; } .c-overlay-body .kicker::before { background: var(--brand); }
.c-overlay-body .meta { color: rgba(255, 255, 255, .78); }
.c-overlay .dek { color: rgba(255, 255, 255, .88); margin: 12px 0 0; font-family: var(--serif); font-size: 17px; display: none; }
@media (min-width: 700px) { .c-overlay .dek { display: block; } .c-overlay-body { padding: 36px; } }

/* ---------- layout ---------- */
.layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 44px; margin-top: 40px; margin-bottom: 52px; }
@media (min-width: 1024px) { .layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 52px; } }
.main-col { min-width: 0; }
.grid-3, .grid-4 { display: grid; gap: 34px 24px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 560px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .main-col .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } .grid-4 .h-md { font-size: 17px; } }
.sec-title { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; padding-top: 12px; border-top: 3px solid var(--rule-strong); flex-wrap: wrap; }
.sec-title h2 { font-family: var(--display); font-weight: 700; font-size: clamp(25px, 2.6vw, 34px); letter-spacing: -.015em; display: flex; align-items: center; gap: 12px; }
.sec-title .sec-sub { color: var(--muted); font-size: 14px; }
.sec-title .see { margin-left: auto; }
.sec-title.colored { border-top-color: var(--c); }
.sec-title.colored h2 a:hover { color: var(--c); }
.see { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); white-space: nowrap; transition: color .2s; }
.see:hover { color: var(--brand); }
.load-more { display: flex; justify-content: center; margin: 34px 0 8px; }
.load-more .btn.loading { opacity: .6; pointer-events: none; }
.live-dot { width: 10px; height: 10px; background: var(--brand); border-radius: 50%; animation: pulse-red 1.6s infinite; flex: none; }
@keyframes pulse-red { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 70%, transparent); } 70% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.rule-head { display: flex; justify-content: space-between; align-items: center; padding: 11px 0 9px; border-top: 3px solid var(--rule-strong); border-bottom: 1px solid var(--rule);
  font: 800 12px/1 var(--font); letter-spacing: .14em; text-transform: uppercase; }
.rule-head a { color: var(--brand); letter-spacing: .06em; }

/* ---------- editorial hero ---------- */
.hero-ed { display: grid; gap: 34px; margin-top: 34px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 860px) { .hero-ed { grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr); } }
@media (min-width: 1200px) { .hero-ed { grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr) minmax(0, .92fr); gap: 0; }
  .hero-ed > * { padding: 0 28px; } .hero-ed > *:first-child { padding-left: 0; } .hero-ed > *:last-child { padding-right: 0; }
  .hero-ed > * + * { border-left: 1px solid var(--rule); } }
.he-second { display: flex; flex-direction: column; gap: 22px; }
.he-second .c-card .h-md { font-size: 19px; }
.he-second .c-card + .c-card { padding-top: 22px; border-top: 1px solid var(--rule); }
.he-minis { display: grid; gap: 20px; margin-top: 26px; }
@media (min-width: 600px) { .he-minis { grid-template-columns: 1fr 1fr; } }
.he-top { display: none; }
@media (min-width: 1200px) { .he-top { display: block; } }

/* ---------- web stories ---------- */
.stories-sec { margin-top: 56px; }
.story-rail { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 2px 14px; scrollbar-width: thin; }
.story-rail > * { scroll-snap-align: start; }
.story-card { position: relative; flex: none; width: 168px; aspect-ratio: 9 / 16; border-radius: 12px; overflow: hidden; color: #fff; isolation: isolate; background: #222;
  box-shadow: var(--shadow); transition: transform .35s var(--ease); }
.story-card:hover { transform: translateY(-4px); }
.story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease); }
.story-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0, 0, 0, .3), transparent 25%, transparent 45%, rgba(0, 0, 0, .9)); }
.story-card::before { content: ""; position: absolute; top: 9px; left: 9px; right: 9px; height: 3px; border-radius: 3px; z-index: 1;
  background: linear-gradient(90deg, #fff 30%, rgba(255, 255, 255, .35) 30%); }
.sc-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.sc-body em { font-style: normal; font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--brand); align-self: flex-start; padding: 3px 7px; border-radius: 3px; }
.sc-body b { font-family: var(--display); font-weight: 700; font-size: 16px; line-height: 1.2; }
.sc-body small { opacity: .75; font-size: 11.5px; }
.sc-play { position: absolute; top: 22px; right: 10px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, .24); backdrop-filter: blur(6px); display: grid; place-items: center; }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 18px; margin: 34px 0 52px; }
.stories-grid .story-card { width: auto; }

/* ---------- topic strip ---------- */
.topic-strip { display: flex; align-items: center; gap: 14px; margin-top: 44px; padding-top: 14px; padding-bottom: 14px; position: relative; }
.topic-strip::before, .topic-strip::after { content: ""; position: absolute; left: 16px; right: 16px; height: 1px; background: var(--rule); }
.topic-strip::before { top: 0; } .topic-strip::after { bottom: 0; }
@media (min-width: 700px) { .topic-strip::before, .topic-strip::after { left: 28px; right: 28px; } }
.topic-strip > span { font: 800 11px/1 var(--font); letter-spacing: .14em; text-transform: uppercase; color: var(--brand); flex: none; }
.topic-strip [data-rail] { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.topic-strip [data-rail]::-webkit-scrollbar { display: none; }
.chip { display: inline-block; padding: 6px 13px; border-radius: 999px; border: 1px solid var(--rule); font-size: 13px; font-weight: 600; color: var(--ink-2); transition: .2s; white-space: nowrap; background: var(--surface); }
.chip:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 10px; }

/* ---------- Quick Reads promo ---------- */
.qr-promo { position: relative; margin: 60px 0 8px; border-radius: 18px; overflow: hidden; background: #0E0E10; color: #fff; display: grid; gap: 24px; padding: 34px 28px;
  background-image: radial-gradient(90% 120% at 100% 0%, rgba(204, 40, 55, .55), transparent 55%), radial-gradient(60% 80% at 0% 100%, rgba(184, 134, 43, .25), transparent 60%); }
@media (min-width: 760px) { .qr-promo { grid-template-columns: 1.2fr 1fr; align-items: center; padding: 44px 48px; } }
.qr-promo h2 { font-family: var(--display); font-size: clamp(32px, 3.8vw, 48px); font-weight: 700; line-height: 1.02; letter-spacing: -.02em; }
.qr-promo p { color: rgba(255, 255, 255, .78); max-width: 44ch; margin: 14px 0 22px; font-size: 16px; }
.qr-promo .eyebrow { color: #FF8A94; }
.qr-phone { display: none; justify-self: center; width: 250px; height: 430px; border-radius: 34px; background: #17181B; border: 8px solid #26272B;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .06); overflow: hidden; transform: rotate(4deg); transition: transform .5s var(--ease); flex-direction: column; }
.qr-phone:hover { transform: rotate(0) translateY(-6px); }
@media (min-width: 760px) { .qr-phone { display: flex; } }
.qp-img { height: 38%; background: #333 center/cover; flex: none; }
.qp-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.qp-body em { font-style: normal; font-size: 9.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #FF8A94; }
.qp-body b { font-family: var(--display); font-size: 16px; line-height: 1.2; }
.qp-body span { font-size: 11.5px; line-height: 1.55; color: rgba(255, 255, 255, .75); }

/* ---------- category sections ---------- */
.cat-sec { margin-top: 60px; }
.cat-grid { display: grid; gap: 28px; }
@media (min-width: 700px) { .cat-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); } }
.cat-grid.single { grid-template-columns: minmax(0, 560px); }
.cat-lead .h-md { font-size: clamp(21px, 2vw, 26px); }
.cat-list { display: grid; gap: 18px; align-content: start; }
.cat-list .c-row { padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
.cat-list .c-row:last-child { border-bottom: 0; padding-bottom: 0; }
.also { display: flex; gap: 12px; align-items: baseline; margin-top: 24px; padding-top: 14px; border-top: 1px solid var(--rule); font-family: var(--display); font-size: 17px; font-weight: 600; }
.also span { font: 800 10.5px/1 var(--font); letter-spacing: .12em; text-transform: uppercase; color: var(--c); flex: none; }
.also a:hover { color: var(--c); }

/* ---------- poll ---------- */
.poll-card { margin-top: 60px; border-radius: 18px; padding: 32px; background: var(--surface); border: 1px solid var(--rule); display: grid; gap: 22px; position: relative; overflow: hidden; }
.poll-card::before { content: "?"; position: absolute; right: -6px; top: -50px; font-family: var(--display); font-size: 250px; font-weight: 800; color: var(--brand); opacity: .07; line-height: 1; }
@media (min-width: 800px) { .poll-card { grid-template-columns: 1fr 1.15fr; align-items: center; } }
.poll-card h3 { font-family: var(--display); font-size: clamp(24px, 2.4vw, 30px); font-weight: 700; line-height: 1.12; }
.poll-opts { display: grid; gap: 10px; position: relative; }
.poll-opt { position: relative; overflow: hidden; border: 1.5px solid var(--rule); border-radius: 10px; padding: 14px 18px; text-align: left; font-weight: 700;
  display: flex; justify-content: space-between; transition: border-color .2s, transform .15s; background: var(--paper); }
.poll-opt:hover { border-color: var(--ink); }
.poll-opt:active { transform: scale(.99); }
.poll-opt span, .poll-opt b { position: relative; z-index: 1; }
.poll-opt::before { content: ""; position: absolute; inset: 0; width: 0; background: var(--brand-soft); transition: width 1s var(--ease); }
.voted .poll-opt::before { width: var(--pct); }
.voted .poll-opt { pointer-events: none; }
.voted .poll-opt.mine { border-color: var(--brand); }
.poll-foot { margin: 0; font-size: 13px; color: var(--muted); grid-column: 1 / -1; }

/* ---------- sidebar (sticky tail = never empty) ---------- */
.sidebar { display: flex; flex-direction: column; gap: 36px; min-width: 0; }
.sticky-stack { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 36px; }
.w-head { display: flex; justify-content: space-between; align-items: center; padding: 11px 0 10px; margin-bottom: 4px; border-top: 3px solid var(--rule-strong); border-bottom: 1px solid var(--rule); }
.w-head h3 { font: 800 12px/1 var(--font); letter-spacing: .14em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.w-head h3 .ico { color: var(--brand); width: 15px; height: 15px; }
.w-head a { font-size: 12px; font-weight: 700; color: var(--brand); }
.thumb-list { display: grid; gap: 16px; padding-top: 10px; }
.thumb-list .c-row { grid-template-columns: 1fr 84px; }
.thumb-list .h-sm { font-size: 15px; }
.timeline { display: flex; flex-direction: column; }
.timeline a { display: grid; grid-template-columns: 46px 1fr; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--rule); font-family: var(--display); font-size: 15px; font-weight: 600; line-height: 1.3; }
.timeline a:last-child { border-bottom: 0; }
.timeline time { color: var(--brand); font: 800 12px/1.6 var(--font); }
.cat-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.cat-links a { display: flex; align-items: center; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--rule); font-weight: 600; font-size: 13.5px; transition: color .2s; }
.cat-links a::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--c); flex: none; }
.cat-links a .ico { display: none; }
.cat-links a:hover { color: var(--c); }
.news-card { background: #111113; color: #F3F1EC; border-radius: 14px; padding: 24px; position: relative; overflow: hidden; }
.news-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 150px; height: 150px; border-radius: 50%; background: #CC2837; opacity: .5; filter: blur(34px); }
.news-card .ico.lg { color: #FF6B77; margin-bottom: 8px; position: relative; z-index: 1; }
.news-card h3 { font-family: var(--display); font-size: 23px; font-weight: 700; position: relative; z-index: 1; }
.news-card p { color: #B9BBC0; font-size: 14px; margin: 6px 0 14px; position: relative; z-index: 1; }
.news-card .subscribe input { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); color: #fff; }
.news-card .subscribe input::placeholder { color: rgba(255, 255, 255, .5); }
.follow-card h3 { font-family: var(--display); font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.follow { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 12px; font-weight: 700; font-size: 14px; margin-top: 8px; transition: transform .2s var(--ease); }
.follow:hover { transform: translateY(-2px); }
.follow.wa { background: #1FAF55; color: #fff; }
.follow.wide { margin: 28px 0; padding: 16px 20px; }
.follow.wide span { display: flex; flex-direction: column; } .follow.wide small { font-weight: 500; opacity: .9; }
.follow.wide .ico { width: 28px; height: 28px; }
.subscribe { display: flex; gap: 8px; position: relative; z-index: 1; }
.subscribe input { flex: 1; min-width: 0; padding: 12px 18px; border-radius: 999px; border: 1.5px solid var(--rule); background: var(--surface); }
.subscribe input:focus { outline: none; border-color: var(--brand); }
.subscribe.stacked { flex-direction: column; }
.subscribe.done { justify-content: center; font-weight: 700; color: var(--brand); }

/* ---------- ads ---------- */
.ad-slot { text-align: center; margin: 22px auto; position: relative; }
.ad-slot img { margin: 0 auto; border-radius: 4px; }
.ad-label { display: block; font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.ad-leader { margin-top: 18px; }
.sidebar .ad-slot { margin: 0; }
.ad-mobile_sticky { position: fixed; left: 0; right: 0; bottom: 64px; z-index: 30; margin: 0; background: var(--surface); border-top: 1px solid var(--rule); padding: 4px; }
.ad-mobile_sticky .ad-label { display: none; }
@media (min-width: 900px) { .ad-mobile_sticky, .only-mobile { display: none !important; } }
@media (max-width: 899px) { .only-desktop { display: none !important; } }

/* ---------- article ---------- */
.preview-bar { background: #FEF3C7; color: #78350F; text-align: center; padding: 10px; font-weight: 600; }
.preview-bar a { text-decoration: underline; }
.a-head { max-width: 880px; }
.crumbs { display: flex; gap: 10px; align-items: center; font: 700 11.5px/1 var(--font); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--brand); }
.flag-live { color: #fff; background: var(--brand); padding: 4px 8px; border-radius: 3px; }
.flag-sp { color: var(--gold); border: 1px solid var(--gold); padding: 3px 7px; border-radius: 3px; }
.a-title { font-family: var(--display); font-size: clamp(32px, 5vw, 58px); font-weight: 700; line-height: 1.04; letter-spacing: -.025em; margin: 0 0 18px; }
.a-dek { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 23px); color: var(--ink-2); margin: 0 0 24px; line-height: 1.45; font-style: italic; }
.a-byline { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.by { display: flex; gap: 12px; align-items: center; }
.by .meta { margin-top: 3px; }
.by-line { font-size: 14px; color: var(--muted); }
.by-name { font-weight: 800; color: var(--ink); }
a.by-name { background-image: linear-gradient(var(--brand), var(--brand)); background-size: 100% 1.5px; background-repeat: no-repeat; background-position: 0 100%; }
.avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--surface-2); border: 2px solid var(--paper); box-shadow: 0 0 0 1px var(--rule); }
.avatar.lg { width: 72px; height: 72px; } .avatar.xl { width: 104px; height: 104px; }
.tools { display: flex; gap: 6px; }
.tool { height: 40px; min-width: 40px; padding: 0 13px; border-radius: 999px; border: 1px solid var(--rule); display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 700; transition: .2s; background: var(--surface); }
.tool:hover { border-color: var(--ink); }
.tool.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tool .ico { width: 17px; height: 17px; }
.a-figure { margin: 28px 0 0; }
.a-figure img { width: 100%; border-radius: var(--radius-sm); aspect-ratio: 16 / 9; object-fit: cover; background: var(--surface-2); }
.a-figure figcaption { font-size: 13px; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--rule); }
.a-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; margin-top: 32px; }
@media (min-width: 1200px) { .a-grid { grid-template-columns: 56px minmax(0, 1fr); } }
.share-rail { display: flex; gap: 8px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.share-rail::-webkit-scrollbar { display: none; }
.share-rail > span { font: 800 10.5px/1 var(--font); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
@media (min-width: 1200px) { .share-rail { flex-direction: column; position: sticky; top: 90px; align-self: start; overflow: visible; }
  .share-rail > span { writing-mode: vertical-rl; transform: rotate(180deg); margin: 0 0 6px; } }
.sh { width: 42px; height: 42px; flex: none; border-radius: 50%; display: inline-grid; place-items: center; color: var(--ink); border: 1px solid var(--rule); background: var(--surface); transition: .2s var(--ease); }
.sh:hover { transform: translateY(-2px); color: #fff; border-color: transparent; }
.sh .ico { width: 18px; height: 18px; }
.sh.wa { background: #1FAF55; color: #fff; border-color: transparent; }
.sh.x:hover { background: #000; } .sh.fb:hover { background: #1877F2; } .sh.li:hover { background: #0A66C2; } .sh.tg:hover { background: #229ED9; } .sh.cp:hover { background: var(--ink); color: var(--paper); }
.a-content { min-width: 0; max-width: 720px; }
.in60 { background: var(--surface); border: 1px solid var(--rule); border-left: 4px solid var(--brand); border-radius: 10px; margin-bottom: 32px; }
.in60 summary { list-style: none; display: flex; align-items: center; gap: 12px; padding: 14px 18px; cursor: pointer; }
.in60 summary::-webkit-details-marker { display: none; }
.in60 summary > span:nth-child(2) { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.in60 summary b { font-size: 14px; letter-spacing: .02em; } .in60 summary small { color: var(--muted); font-size: 12.5px; }
.in60 summary .ico { transition: transform .3s; }
.in60[open] summary .ico { transform: rotate(180deg); }
.in60-badge { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; font-family: var(--display); font-weight: 800; font-size: 17px; display: grid; place-items: center; flex: none; }
.in60 p { margin: 0; padding: 0 20px 20px 70px; font-family: var(--serif); font-size: 17.5px; line-height: 1.6; color: var(--ink-2); }
@media (max-width: 600px) { .in60 p { padding-left: 20px; } }
.a-body { font-family: var(--serif); font-size: var(--article-size); line-height: 1.75; color: var(--ink); overflow-wrap: break-word; }
.a-body > * { margin: 0 0 1.2em; }
.a-body > p:first-of-type::first-letter { float: left; font-family: var(--display); font-weight: 800; font-size: 4.1em; line-height: .82; padding: 8px 12px 0 0; color: var(--brand); }
.a-body h2, .a-body h3 { font-family: var(--display); font-weight: 700; margin-top: 1.7em; letter-spacing: -.01em; }
.a-body h2 { font-size: 1.45em; } .a-body h3 { font-size: 1.2em; }
.a-body a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.a-body img { border-radius: var(--radius-sm); margin: 0 auto; }
.a-body blockquote { margin: 1.6em 0; padding: 4px 0 4px 28px; border-left: 3px solid var(--brand); font-family: var(--display); font-size: 1.3em; font-weight: 500; line-height: 1.35; }
.a-body ul, .a-body ol { padding-left: 1.3em; }
.a-body li { margin-bottom: .5em; }
.a-body li::marker { color: var(--brand); }
.a-body table { width: 100%; border-collapse: collapse; font-family: var(--font); font-size: 15px; display: block; overflow-x: auto; }
.a-body th, .a-body td { border-bottom: 1px solid var(--rule); padding: 10px 12px; text-align: left; }
.a-body th { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.a-body iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; border-radius: var(--radius-sm); }
.a-body .ad-slot { font-family: var(--font); }
.a-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 36px 0; padding-top: 20px; border-top: 1px solid var(--rule); }
.a-tags > span { font: 800 10.5px/1 var(--font); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.reactions { padding: 24px; border-radius: 14px; text-align: center; background: var(--surface); border: 1px solid var(--rule); margin: 28px 0; }
.reactions p { margin: 0 0 14px; font-family: var(--display); font-weight: 600; font-size: 19px; }
.react-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.react { display: inline-flex; align-items: center; gap: 6px; padding: 8px 15px; border-radius: 999px; background: var(--paper); border: 1px solid var(--rule); font-weight: 800; font-size: 14px; transition: .2s; }
.react .emo { font-size: 22px; transition: transform .25s var(--ease); }
.react:hover .emo { transform: scale(1.3) rotate(-8deg); }
.react.picked { background: var(--brand-soft); border-color: var(--brand); }
.react.pop .emo { animation: pop .5s; }
@keyframes pop { 40% { transform: scale(1.7); } }
.author-box { display: flex; gap: 18px; padding: 24px 0; margin: 28px 0; align-items: flex-start; border-top: 3px solid var(--rule-strong); border-bottom: 1px solid var(--rule); }
.author-box h3 { font-family: var(--display); font-size: 22px; margin-bottom: 6px; } .author-box p { margin: 0; color: var(--ink-2); font-size: 15px; }
.related { margin-top: 60px; }
.next-up { display: flex; flex-direction: column; gap: 6px; position: relative; margin-top: 44px; padding: 26px 70px 26px 28px; border-radius: 14px; background: #111113; color: #F3F1EC; transition: transform .3s var(--ease); }
[data-theme="dark"] .next-up { background: var(--surface-2); }
.next-up:hover { transform: translateY(-3px); }
.next-up .eyebrow { margin: 0; color: #FF8A94; }
.next-up strong { font-family: var(--display); font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; line-height: 1.2; }
.next-up .ico { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; transition: transform .3s; }
.next-up:hover .ico { transform: translate(6px, -50%); }
.fab-wa { position: fixed; right: 16px; bottom: 80px; width: 54px; height: 54px; border-radius: 50%; background: #1FAF55; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 24px -8px rgba(31, 175, 85, .7); z-index: 25; transform: scale(0); transition: transform .35s cubic-bezier(.3, 1.6, .5, 1); }
.fab-wa.show { transform: scale(1); }
.fab-wa .ico { width: 28px; height: 28px; }
@media (min-width: 1200px) { .fab-wa { display: none; } }

/* ---------- listing pages ---------- */
.list-hero { padding: 48px 0 28px; border-bottom: 1px solid var(--rule); position: relative; }
.list-hero::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--c); }
.list-hero h1 { font-family: var(--display); font-size: clamp(40px, 6vw, 76px); font-weight: 700; letter-spacing: -.035em; line-height: 1; }
.list-hero p { color: var(--ink-2); max-width: 64ch; margin: 14px 0 0; font-family: var(--serif); font-size: 18px; }
.list-hero .count { color: var(--muted); font: 700 12px/1 var(--font); letter-spacing: .12em; text-transform: uppercase; margin-top: 16px; }
.author-hero { display: flex; gap: 22px; align-items: center; }
.author-hero .socials { margin: 12px 0 0; }
.list-lead { margin-bottom: 36px; } .list-lead .c-overlay { min-height: 440px; }
.ranked { display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.ranked .num { font-family: var(--display); font-size: 48px; font-weight: 800; color: var(--brand); text-align: center; line-height: 1; }
.ranked .c-row { grid-template-columns: 1fr 150px; } .ranked .c-row .media { aspect-ratio: 3 / 2; }
.pager { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 28px; font-weight: 700; font-size: 14px; }
.pager a { color: var(--brand); }
.inline-search { display: flex; gap: 8px; margin-top: 18px; max-width: 580px; }
.inline-search input { flex: 1; padding: 13px 20px; border-radius: 999px; border: 1.5px solid var(--rule); background: var(--surface); }
.empty { text-align: center; padding: 60px 20px; border: 1px dashed var(--rule); border-radius: var(--radius); }
.empty h2 { font-family: var(--display); }
.empty a { color: var(--brand); font-weight: 700; }
.nf { text-align: center; padding: 60px 16px 30px; }
.nf-code { font-family: var(--display); font-size: clamp(90px, 20vw, 170px); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.nf-code span { color: var(--brand); display: inline-block; animation: wob 2.5s ease-in-out infinite; }
@keyframes wob { 50% { transform: rotate(14deg) scale(1.05); } }
.nf h1 { font-family: var(--display); }
.nf .inline-search { margin: 22px auto 34px; }
.static-page .a-body > p:first-of-type::first-letter { all: unset; }

/* ---------- forms ---------- */
.form-card { background: var(--surface); padding: 28px; border-radius: 14px; border: 1px solid var(--rule); display: grid; gap: 18px; }
.form-card label { display: grid; gap: 7px; font-weight: 700; font-size: 14px; }
.form-card > *, .form-card label > *, .row2 > * { min-width: 0; }
.form-card input[type=file] { max-width: 100%; }
.form-card label small { font-weight: 500; color: var(--muted); }
.form-card input:not([type=checkbox]):not([type=file]), .form-card select, .form-card textarea { width: 100%; padding: 13px 15px; border-radius: 10px; border: 1.5px solid var(--rule); background: var(--paper); font-weight: 500; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: none; border-color: var(--ink); background: var(--surface); }
.row2 { display: grid; gap: 18px; } @media (min-width: 640px) { .row2 { grid-template-columns: 1fr 1fr; } }
.check { display: flex !important; align-items: flex-start; gap: 10px !important; font-weight: 500 !important; }
.check input { margin-top: 4px; accent-color: var(--brand); }
.check a { color: var(--brand); }
.steps { display: flex; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.steps span { flex: 1; padding-top: 10px; border-top: 3px solid var(--rule); }
.steps span.on { border-color: var(--brand); color: var(--brand); }
.mini-editor { border: 1.5px solid var(--rule); border-radius: 10px; overflow: hidden; background: var(--paper); }
.mini-toolbar { display: flex; gap: 2px; padding: 6px; border-bottom: 1px solid var(--rule); background: var(--surface); flex-wrap: wrap; align-items: center; }
.mini-toolbar button { padding: 6px 10px; border-radius: 6px; font-size: 13px; font-weight: 600; }
.mini-toolbar button:hover { background: var(--surface-2); }
.mini-toolbar .wc { margin-left: auto; font-size: 12px; color: var(--muted); padding-right: 6px; }
.mini-area { min-height: 300px; padding: 18px; font-family: var(--serif); font-size: 18px; line-height: 1.7; outline: none; }
.mini-area:empty::before { content: attr(data-placeholder); color: var(--muted); }
.file-drop { border: 2px dashed var(--rule); border-radius: 12px; padding: 18px; text-align: center; cursor: pointer; }
.file-drop:hover { border-color: var(--brand); }
.file-drop img { max-height: 220px; margin: 10px auto 0; border-radius: 8px; }
.alert { background: #FDECEC; color: #8A1C23; padding: 14px 18px; border-radius: 12px; margin-bottom: 16px; border: 1px solid #F5C2C6; }
[data-theme="dark"] .alert { background: #3A1A1E; color: #FFC9CE; border-color: #5a2a30; }
.alert p { margin: 2px 0; }
.success-card { text-align: center; background: var(--surface); padding: 48px 24px; border-radius: 14px; border: 1px solid var(--rule); }
.success-card h2 { font-family: var(--display); }
.big-check { width: 72px; height: 72px; border-radius: 50%; background: #16a34a; color: #fff; font-size: 38px; display: grid; place-items: center; margin: 0 auto 16px; animation: pop .6s; }
.success-card p { color: var(--ink-2); max-width: 52ch; margin: 10px auto 20px; }
.tips h3 { font-family: var(--display); font-size: 18px; margin: 4px 0 8px; } .tips ul { list-style: none; padding: 0; margin: 0 0 18px; font-size: 14px; }
.tips li { padding: 7px 0 7px 26px; position: relative; border-bottom: 1px solid var(--rule); }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 800; }
.crosses li::before { content: "✕"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }

/* ---------- newsletter band + footer ---------- */
.cta-band { background: var(--brand); color: #fff; padding: 48px 0; margin-top: 40px; position: relative; overflow: hidden; }
.cta-band::after { content: "AIS"; position: absolute; right: -20px; bottom: -80px; font-family: var(--display); font-weight: 800; font-size: 270px; line-height: 1; opacity: .08; letter-spacing: -.05em; }
.cta-in { display: grid; gap: 20px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 860px) { .cta-in { grid-template-columns: 1fr 460px; } }
.cta-band .eyebrow { color: #fff; opacity: .85; }
.cta-band h2 { font-family: var(--display); font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; }
.cta-band p { margin: 10px 0 0; opacity: .9; font-size: 16px; }
.cta-band .subscribe input { border-color: transparent; background: #fff; color: #111; }
.cta-band .btn-light:hover { background: #111; }
.cta-band .subscribe.done { color: #fff; }
.footer { background: #0B0B0C; color: #A7A9AE; padding: 60px 0 24px; font-size: 14px; }
.footer .brand { color: #fff; }
.footer .brand svg { height: 58px; }
.foot-grid { display: grid; gap: 34px; grid-template-columns: 1fr 1fr; }
@media (min-width: 860px) { .foot-grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; } }
.foot-brand { grid-column: 1 / -1; } @media (min-width: 860px) { .foot-brand { grid-column: auto; } }
.foot-brand p { max-width: 42ch; margin: 16px 0; font-family: var(--serif); font-size: 16px; color: #C9CACD; }
.footer .socials { margin-left: 0; }
.footer h3 { color: #fff; font: 800 11.5px/1 var(--font); text-transform: uppercase; letter-spacing: .16em; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid #222; margin-top: 40px; padding-top: 20px; font-size: 12.5px; }

/* ---------- mobile bottom nav ---------- */
.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 35; display: grid; grid-template-columns: repeat(5, 1fr); background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--rule); padding-bottom: env(safe-area-inset-bottom); }
.bottom-nav a, .bottom-nav button { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10.5px; font-weight: 700; padding: 8px 0 7px; color: var(--muted); }
.bottom-nav .on { color: var(--ink); }
.bottom-nav .qr span { width: 46px; height: 46px; margin-top: -22px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 18px -6px var(--brand), 0 0 0 4px var(--paper); }
@media (min-width: 900px) { .bottom-nav { display: none; } }

/* ---------- drawers / overlays ---------- */
.drawer, .overlay { position: fixed; inset: 0; z-index: 70; visibility: hidden; }
.drawer::before, .overlay::before { content: ""; position: absolute; inset: 0; background: rgba(8, 8, 9, .6); opacity: 0; transition: opacity .3s; backdrop-filter: blur(3px); }
.drawer.open, .overlay.open { visibility: visible; }
.drawer.open::before, .overlay.open::before { opacity: 1; }
.drawer-panel { position: absolute; top: 0; bottom: 0; left: 0; width: min(360px, 88vw); background: var(--paper); transform: translateX(-100%);
  transition: transform .4s var(--ease); display: flex; flex-direction: column; overflow-y: auto; }
.drawer.right .drawer-panel { left: auto; right: 0; transform: translateX(100%); }
.drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-bottom: 3px double var(--rule-strong); }
.drawer-head .brand svg { height: 42px; }
.drawer-head h3 { font-family: var(--display); font-size: 22px; }
.drawer-nav { display: flex; flex-direction: column; padding: 10px 18px; }
.drawer-nav a { padding: 12px 0; font-family: var(--display); font-weight: 600; font-size: 19px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--rule); }
.drawer-nav a:hover { color: var(--brand); }
.drawer-nav i { width: 8px; height: 8px; border-radius: 2px; }
.drawer-nav hr { border: 0; margin: 10px 0; }
.search-box { position: relative; max-width: 760px; margin: 80px auto 0; padding: 0 16px; transform: translateY(-20px); opacity: 0; transition: .35s var(--ease); }
.overlay.open .search-box { transform: none; opacity: 1; }
.search-form { display: flex; align-items: center; gap: 12px; background: var(--surface); border-radius: 14px; padding: 10px 10px 10px 20px; box-shadow: var(--shadow-lg); }
.search-form input { flex: 1; border: 0; background: none; font-family: var(--display); font-size: 24px; padding: 8px 0; outline: none; min-width: 0; }
.search-form input::-webkit-search-cancel-button { display: none; }
.suggest { margin-top: 10px; background: var(--surface); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); }
.suggest:empty { display: none; }
.suggest a { display: grid; grid-template-columns: 76px 1fr; gap: 14px; padding: 12px 16px; align-items: center; border-bottom: 1px solid var(--rule); }
.suggest a:hover, .suggest a.active { background: var(--surface-2); }
.suggest img { width: 76px; height: 51px; object-fit: cover; border-radius: 5px; opacity: 1; }
.suggest strong { font-family: var(--display); font-size: 16px; font-weight: 600; line-height: 1.3; display: block; }
.suggest small { color: var(--muted); font-size: 12px; }
.search-hint { color: #fff; margin-top: 16px; font-size: 13px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.search-hint a { background: rgba(255, 255, 255, .14); padding: 6px 12px; border-radius: 999px; }
.saved-list { padding: 14px 18px; display: grid; gap: 12px; }
.saved-item { display: grid; grid-template-columns: 72px 1fr 28px; gap: 12px; align-items: center; }
.saved-item img { width: 72px; height: 48px; object-fit: cover; border-radius: 5px; opacity: 1; }
.saved-item a { font-family: var(--display); font-weight: 600; font-size: 15px; line-height: 1.3; }
.toast { position: fixed; left: 50%; bottom: 90px; transform: translate(-50%, 30px); background: var(--ink); color: var(--paper); padding: 11px 20px; border-radius: 999px;
  font-weight: 700; font-size: 14px; opacity: 0; pointer-events: none; transition: .35s var(--ease); z-index: 80; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Quick Reads page ---------- */
.qr-body { background: #0B0B0C; color: #F1F1EF; padding: 0; overflow: hidden; height: 100dvh; }
.qr-stage { height: 100dvh; display: flex; justify-content: center; align-items: center; gap: 70px;
  background: radial-gradient(60% 70% at 85% 10%, rgba(204, 40, 55, .35), transparent 60%), radial-gradient(50% 60% at 10% 90%, rgba(184, 134, 43, .18), transparent 60%); }
.qr-side { display: none; max-width: 360px; }
@media (min-width: 1000px) { .qr-side { display: block; } }
.qr-logo { color: #fff; display: inline-block; margin-bottom: 30px; } .qr-logo svg { height: 60px; width: auto; }
.qr-side h1 { font-family: var(--display); font-size: 54px; line-height: 1; letter-spacing: -.03em; font-weight: 700; }
.qr-side h1 em { color: #FF6B77; }
.qr-side p { color: #A9ABB0; font-size: 16px; margin: 18px 0 26px; }
kbd { background: #222; border: 1px solid #333; border-radius: 5px; padding: 1px 7px; font-size: 13px; }
.qr-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.qr-cats a { padding: 6px 13px; border-radius: 999px; border: 1px solid #2c2d31; font-size: 13px; font-weight: 600; color: #C9CACD; }
.qr-cats a:hover, .qr-cats a.on { background: #fff; color: #111; border-color: #fff; }
.qr-device { position: relative; width: 100%; height: 100dvh; overflow: hidden; background: #111214; }
@media (min-width: 700px) { .qr-device { width: 420px; height: min(860px, 92dvh); border-radius: 44px; border: 10px solid #1d1e21; box-shadow: 0 50px 100px -30px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .06); } }
.qr-top { position: absolute; top: 0; left: 0; right: 0; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 14px 16px 22px; font-weight: 800;
  background: linear-gradient(rgba(0, 0, 0, .75), transparent); }
.qr-brand { font-size: 14px; letter-spacing: .02em; }
.qr-back { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, .16); backdrop-filter: blur(8px); display: grid; place-items: center; font-size: 18px; }
.qr-count { margin-left: auto; font-size: 12.5px; opacity: .85; font-variant-numeric: tabular-nums; }
.qr-progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(255, 255, 255, .12); z-index: 6; }
.qr-progress i { display: block; height: 100%; width: 0; background: #FF4D5B; transition: width .4s var(--ease); }
.qr-feed { height: 100%; overflow-y: auto; scroll-snap-type: y mandatory; scrollbar-width: none; }
.qr-feed::-webkit-scrollbar { display: none; }
.qr-card { height: 100%; scroll-snap-align: start; scroll-snap-stop: always; display: flex; flex-direction: column; background: #111214; }
.qr-img { height: 40%; flex: none; overflow: hidden; position: relative; }
.qr-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, #111214); }
.qr-img img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.qr-text { flex: 1; padding: 6px 22px calc(22px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 12px; min-height: 0; }
.qr-meta { display: flex; align-items: center; gap: 10px; }
.qr-cat { font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: var(--c); padding: 4px 8px; border-radius: 3px; }
.qr-wc { font-size: 11px; font-weight: 700; color: #8C8F95; letter-spacing: .06em; text-transform: uppercase; }
.qr-text h2 { font-family: var(--display); font-size: 23px; font-weight: 700; line-height: 1.18; letter-spacing: -.01em; }
.qr-text p { margin: 0; color: #CDCFD2; font-family: var(--serif); font-size: 17px; line-height: 1.6; }
.qr-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: #8C8F95; gap: 10px; }
.qr-foot > div { display: flex; gap: 8px; flex: none; }
.qr-btn { background: #fff; color: #111; padding: 10px 16px; border-radius: 999px; font-weight: 800; font-size: 13.5px; display: inline-flex; align-items: center; transition: .2s; }
.qr-btn:hover { background: #FF4D5B; color: #fff; }
.qr-btn.wa { background: #1FAF55; color: #fff; padding: 10px; }
.qr-end { justify-content: center; text-align: center; }
.qr-end .qr-text { flex: none; align-items: center; }
.qr-done { width: 64px; height: 64px; border-radius: 50%; background: #1FAF55; display: grid; place-items: center; font-size: 30px; }
.qr-hint { position: absolute; top: calc(40% - 50px); left: 50%; transform: translateX(-50%); background: rgba(0, 0, 0, .55); backdrop-filter: blur(8px); padding: 8px 16px;
  border-radius: 999px; font-size: 12.5px; font-weight: 700; animation: bob 1.6s ease-in-out infinite; transition: opacity .4s; white-space: nowrap; z-index: 4; }
.qr-hint.gone { opacity: 0; pointer-events: none; }
@keyframes bob { 50% { transform: translate(-50%, -6px); } }

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .ticker-move { animation: none; } * { scroll-behavior: auto !important; } }
@media print { .masthead, .topbar, .ticker, .sidebar, .footer, .cta-band, .bottom-nav, .share-rail, .tools, .reactions, .ad-slot, .fab-wa, .related, .next-up { display: none !important; } body { background: #fff; } }
