/* Radio Ratio — Classic Theme CSS v2.0 */

:root {
  --red:       #E94B2B;
  --red-deep:  #C7351A;
  --red-ink:   #8E1F0E;
  --ink:       #131211;
  --ink-soft:  #2A2725;
  --paper:     #F5F2EA;
  --paper-2:   #EBE6DB;
  --paper-3:   #DDD6C6;
  --rule:      #221F1C;
  --rule-soft: #C9C2B2;
  --muted:     #6B655A;
  --hi:        #F2C94C;
  --serif:     'Source Serif 4', Georgia, serif;
  --sans:      'Inter Tight', system-ui, sans-serif;
  --mono:      'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); font-family: var(--serif); font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--red); color: #fff; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── TOPBAR ── */
.topbar { background: var(--ink); color: #cfc8b9; font-family: var(--sans); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.topbar .wrap { max-width: 1380px; margin: 0 auto; padding: 9px 28px; display: flex; align-items: center; gap: 20px; }
.topbar .ticker { flex: 1; overflow: hidden; white-space: nowrap; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.topbar .ticker span { display: inline-block; animation: rr-slide 60s linear infinite; }
.topbar .ticker em { font-style: normal; color: var(--hi); margin: 0 8px; }
@keyframes rr-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.topbar .meta { color: #8a8478; flex-shrink: 0; white-space: nowrap; }
/* Topbar live link */
.topbar-live { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; flex-shrink: 0; transition: .15s; }
.topbar-live:hover { color: var(--red); }
.topbar-pulse { display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--red); flex-shrink: 0; position: relative; }
.topbar-pulse::before { content: ""; width: 0; height: 0; border-left: 6px solid #fff; border-top: 4px solid transparent; border-bottom: 4px solid transparent; margin-left: 2px; }

/* ── MASTHEAD ── */
.masthead { background: var(--paper); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 100; }
.masthead .wrap { max-width: 1380px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 24px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo .icon { width: 44px; height: 44px; background: var(--red); display: grid; place-items: center; border-radius: 6px; color: #fff; flex-shrink: 0; }
.logo .icon svg { width: 28px; height: 28px; }
.logo .word { font-family: var(--sans); font-weight: 900; font-size: 24px; letter-spacing: -.025em; line-height: 1; color: var(--ink); display: flex; flex-direction: column; gap: 3px; }
.logo .word-main { display: block; }
.logo .word small { display: block; font-size: 9px; letter-spacing: .2em; font-weight: 700; color: var(--muted); text-transform: uppercase; }

/* Nav desktop */
.nav { display: flex; align-items: center; gap: 2px; margin-left: 16px; font-family: var(--sans); font-weight: 600; font-size: 14px; }
.nav-item { position: relative; }
.nav-item > a, .nav > a { padding: 9px 13px; text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: 5px; border-radius: 3px; white-space: nowrap; }
.nav-item > a:hover, .nav > a:hover { background: var(--paper-2); }
.nav-item > a.has-drop::after { content: ""; width: 5px; height: 5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; opacity: .6; }
.nav .dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: #fff; border: 1px solid var(--rule-soft); border-top: 2px solid var(--red); min-width: 210px; z-index: 200; padding: 6px 0; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: block; }
.nav .dropdown a { display: block; padding: 9px 18px; font-size: 13px; font-weight: 600; color: var(--ink-soft); text-decoration: none; }
.nav .dropdown a:hover { background: var(--paper); color: var(--red); }

/* Nav right */
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.search { display: flex; align-items: center; gap: 8px; background: var(--paper-2); border: 1px solid var(--rule-soft); padding: 8px 12px; border-radius: 3px; width: 210px; }
.search input { border: 0; background: transparent; outline: 0; font-family: var(--sans); font-size: 13px; color: var(--ink); width: 100%; }
.search svg { width: 14px; height: 14px; color: var(--muted); flex-shrink: 0; }
.socials { display: flex; gap: 4px; }
.socials a { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--rule-soft); border-radius: 3px; color: var(--ink); transition: .15s; text-decoration: none; }
.socials a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.socials a svg { width: 13px; height: 13px; display: block; }
.donate { padding: 9px 15px; background: var(--red); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 13px; text-decoration: none; border-radius: 3px; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; transition: .15s; }
.donate:hover { background: var(--red-deep); color: #fff; }
.ham, .search-btn { display: none; background: none; border: 0; color: var(--ink); width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.ham { flex-direction: column; gap: 5px; }
.ham span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; transition: .2s; }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.search-btn svg { width: 20px; height: 20px; }

/* ── CATRAIL ── */
.catrail { background: var(--paper-2); border-bottom: 1px solid var(--rule-soft); overflow: hidden; }
.catrail .wrap { max-width: 1380px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; overflow-x: auto; scrollbar-width: none; }
.catrail .wrap::-webkit-scrollbar { display: none; }
.catrail a { padding: 12px 15px; text-decoration: none; color: var(--ink-soft); border-right: 1px solid var(--rule-soft); white-space: nowrap; transition: .12s; }
.catrail a:first-child { border-left: 1px solid var(--rule-soft); }
.catrail a:hover { background: var(--ink); color: #fff; }
.catrail a.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ── LAYOUT ── */
.wrap { max-width: 1380px; margin: 0 auto; padding: 0 28px; }

/* ── HERO ── */
.hero { padding: 36px 28px 0; max-width: 1380px; margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.65fr) minmax(0,1fr); gap: 36px; }
.h-lead .badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 5px 11px; }
.h-lead .badge .ax { background: rgba(255,255,255,.2); padding: 2px 7px; font-size: 10px; }
.h-lead h1 { font-family: var(--serif); font-weight: 800; font-size: 58px; line-height: 1.04; letter-spacing: -.022em; margin: 18px 0 12px; text-wrap: balance; }
.h-lead h1 a { text-decoration: none; color: var(--ink); }
.h-lead h1 a:hover { color: var(--red); }
.h-lead .deck { font-size: 20px; line-height: 1.45; color: var(--ink-soft); margin: 0 0 18px; }
.h-lead .meta { display: flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 13px; color: var(--muted); margin-bottom: 20px; flex-wrap: wrap; }
.h-lead .meta .by { color: var(--ink); font-weight: 600; }
.h-lead .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rule-soft); }
.h-lead .img { position: relative; border: 1px solid var(--rule); overflow: hidden; background: #000; }
.h-lead .img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.h-side { display: flex; flex-direction: column; border-left: 1px solid var(--rule-soft); padding-left: 32px; }
.h-side h4 { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--red); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.h-side h4::before { content: ""; width: 18px; height: 2px; background: var(--red); }
.h-side .item { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--rule-soft); }
.h-side .item:last-child { border-bottom: 0; }
.h-side .num { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.h-side .item h3 { margin: 0 0 5px; font-family: var(--serif); font-weight: 700; font-size: 17px; line-height: 1.25; }
.h-side .item h3 .cat { color: var(--red); font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-right: 6px; }
.h-side .item h3 a { text-decoration: none; color: var(--ink); }
.h-side .item h3 a:hover { color: var(--red); }
.h-side .item .meta { font-family: var(--sans); font-size: 12px; color: var(--muted); }

/* ── DIVIDER ── */
.rule { display: flex; align-items: center; gap: 14px; padding: 56px 0 20px; font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--ink); }
.rule::before, .rule::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.rule::before { flex: 0 0 24px; }
.rule .dot { width: 6px; height: 6px; background: var(--red); transform: rotate(45deg); }

/* ── FILTERBAR ── */
.filterbar { background: var(--paper-2); border: 1px solid var(--rule-soft); padding: 16px 20px; margin-bottom: 30px; }
.filterbar .row { display: flex; align-items: center; gap: 12px; }
.filterbar .row + .row { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--rule-soft); }
.filterbar .label { font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--muted); flex-shrink: 0; width: 80px; }
.seg-wrap { flex: 1; overflow: hidden; }
.seg { display: flex; gap: 5px; overflow-x: auto; scrollbar-width: none; }
.seg::-webkit-scrollbar { display: none; }
.seg a, .seg button { padding: 6px 12px; border: 1px solid var(--rule-soft); background: #fff; color: var(--ink-soft); border-radius: 2px; text-decoration: none; white-space: nowrap; font-size: 13px; font-family: var(--sans); font-weight: 600; transition: .12s; flex-shrink: 0; }
.seg a:hover, .seg button:hover { border-color: var(--ink); color: var(--ink); }
.seg a.on, .seg button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.seg a.on-show, .seg button.on-show { background: var(--red); color: #fff; border-color: var(--red); }

/* ── CARD GRID ── */
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px 28px; }
.card { display: flex; flex-direction: column; gap: 12px; }
.card .thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--ink); border: 1px solid var(--rule-soft); display: block; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .thumb img { transform: scale(1.04); }
.card .thumb .tag { position: absolute; top: 0; left: 0; background: var(--red); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; padding: 5px 9px; z-index: 1; }
.card h3 { font-family: var(--serif); font-weight: 700; font-size: 20px; line-height: 1.22; letter-spacing: -.01em; margin: 0; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card:hover h3 a { color: var(--red); }
.card .meta { font-family: var(--sans); font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.card .meta .by { color: var(--ink-soft); font-weight: 600; }
.card .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rule-soft); }
.card .meta .showname { font-style: italic; }
.card .excerpt { font-size: 15px; line-height: 1.5; color: var(--ink-soft); margin: 0; }
.card .watch-btn { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px; background: var(--ink); color: #fff; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--ink); transition: .15s; margin-top: auto; }
.card .watch-btn:hover { background: var(--red); border-color: var(--red); }

/* ── NEWSLETTER ── */
.newsletter { background: var(--ink); color: var(--paper); padding: 70px 28px; position: relative; overflow: hidden; }
.newsletter .deco { position: absolute; right: -100px; top: -100px; width: 500px; height: 500px; background: radial-gradient(circle,rgba(233,75,43,.12),transparent 60%); border-radius: 50%; z-index: 1; pointer-events: none; }
.nwrap { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.newsletter .eyebrow { font-family: var(--sans); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 12px; }
.newsletter h2 { font-family: var(--serif); font-weight: 800; font-size: 52px; line-height: 1; letter-spacing: -.022em; margin: 0 0 12px; }
.newsletter h2 em { font-style: italic; color: var(--red); }
.newsletter p { font-size: 17px; line-height: 1.5; color: #bdb6a8; margin: 0 0 6px; }
.nl-form { display: flex; background: #fff; padding: 5px; margin-top: 10px; }
.nl-form input { flex: 1; border: 0; outline: 0; background: transparent; padding: 12px 14px; font-family: var(--sans); font-size: 15px; color: var(--ink); }
.nl-form button { padding: 0 22px; background: var(--red); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; transition: .15s; }
.nl-form button:hover { background: var(--red-deep); }
.nl-fine { font-family: var(--sans); font-size: 11px; color: #7a7468; margin-top: 10px; }
.stats-col { border-left: 1px solid #2a2620; padding-left: 40px; display: flex; flex-direction: column; gap: 18px; }
.nstat { display: flex; align-items: baseline; gap: 14px; }
.nstat .n { font-family: var(--serif); font-weight: 800; font-size: 48px; line-height: 1; color: #fff; letter-spacing: -.025em; }
.nstat .l { font-family: var(--sans); font-size: 13px; color: #a8a092; line-height: 1.3; }

/* ── FOOTER ── */
.footer { background: var(--paper-2); border-top: 2px solid var(--ink); padding: 56px 28px 0; }
.fwrap { max-width: 1380px; margin: 0 auto; }
.frow1 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--rule-soft); }
.fcol h6 { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); margin: 0 0 16px; }
.fcol ul { display: flex; flex-direction: column; gap: 8px; }
.fcol li a { text-decoration: none; color: var(--ink-soft); font-family: var(--sans); font-size: 14px; }
.fcol li a:hover { color: var(--red); }
.fcol .desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 14px 0 16px; }
.f-socials { display: flex; gap: 6px; margin-top: 4px; }
.f-socials a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--rule-soft); border-radius: 3px; color: var(--ink); text-decoration: none; transition: .15s; }
.f-socials a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.frow2 { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: 12px; color: var(--muted); }
.frow2 .colophon em { color: var(--red); font-style: normal; font-weight: 600; }

/* ── BREADCRUMBS ── */
.breadcrumbs { padding: 18px 28px 0; max-width: 1380px; margin: 0 auto; font-family: var(--sans); font-size: 12px; letter-spacing: .03em; color: var(--muted); }
.breadcrumbs a { text-decoration: none; color: var(--muted); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .sep { margin: 0 8px; color: var(--rule-soft); }

/* ── SINGLE POST ── */
.article { max-width: 1380px; margin: 0 auto; padding: 24px 28px 60px; display: grid; grid-template-columns: 60px minmax(0,1fr) 320px; gap: 34px; }
.a-share { position: sticky; top: 90px; align-self: flex-start; display: flex; flex-direction: column; gap: 8px; }
.a-share .lab { font-family: var(--sans); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; writing-mode: vertical-rl; transform: rotate(180deg); text-align: center; margin-bottom: 4px; }
.a-share button { width: 44px; height: 44px; border: 1px solid var(--rule-soft); background: #fff; display: grid; place-items: center; color: var(--ink); transition: .15s; }
.a-share button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.a-main { min-width: 0; }
.a-cat { display: inline-flex; align-items: center; background: var(--red); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 6px 12px; margin-bottom: 20px; text-decoration: none; }
.a-title { font-family: var(--serif); font-weight: 800; font-size: 58px; line-height: 1.02; letter-spacing: -.025em; margin: 0 0 20px; text-wrap: balance; }
.a-deck { font-family: var(--serif); font-size: 22px; line-height: 1.4; color: var(--ink-soft); margin: 0 0 28px; max-width: 760px; }
.a-meta { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 28px; flex-wrap: wrap; }
.author-chip { display: flex; align-items: center; gap: 10px; }
.a-meta .av { width: 42px; height: 42px; border-radius: 50%; background: var(--red); display: grid; place-items: center; color: #fff; font-family: var(--sans); font-weight: 800; font-size: 13px; overflow: hidden; flex-shrink: 0; }
.a-meta .av img { width: 100%; height: 100%; object-fit: cover; }
.a-meta .who { font-family: var(--sans); font-size: 13px; line-height: 1.3; }
.a-meta .who b { display: block; font-weight: 700; color: var(--ink); font-size: 14px; }
.a-meta .who span { color: var(--muted); }
.a-meta .pipe { width: 1px; height: 32px; background: var(--rule-soft); }
.a-meta .info { font-family: var(--sans); font-size: 12.5px; color: var(--muted); }
.a-meta .info b { color: var(--ink); font-weight: 600; display: block; font-size: 13px; }

/* YouTube */
.video-frame { position: relative; aspect-ratio: 16/9; background: #000; border: 1px solid var(--ink); margin-bottom: 28px; overflow: hidden; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Body artykułu */
.a-body { font-family: var(--serif); font-size: 19px; line-height: 1.65; max-width: 720px; }
.a-body p { margin: 0 0 1.1em; }
.a-body p:first-of-type::first-letter { font-weight: 800; font-size: 72px; float: left; line-height: .85; padding: 6px 12px 0 0; color: var(--red); font-style: italic; }
.a-body h2 { font-family: var(--serif); font-weight: 700; font-size: 28px; line-height: 1.2; margin: 1.6em 0 .5em; }
.a-body blockquote { margin: 1.6em 0; padding: 0 0 0 26px; border-left: 3px solid var(--red); font-style: italic; font-size: 22px; line-height: 1.4; font-weight: 500; }
.a-body ul { padding-left: 22px; margin: 1em 0; list-style: disc; }
.a-body li { margin: .4em 0; }
.a-body strong { font-weight: 700; }
.a-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--rule-soft); }
.a-tags .tlab { font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; align-self: center; margin-right: 6px; }
.a-tags a { padding: 5px 11px; border: 1px solid var(--rule-soft); font-family: var(--sans); font-size: 12px; color: var(--ink-soft); text-decoration: none; background: #fff; transition: .12s; }
.a-tags a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Sidebar */
.a-side { display: flex; flex-direction: column; gap: 28px; font-family: var(--sans); }
.a-side .pod { border-top: 2px solid var(--ink); }
.a-side .pod h6 { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin: 12px 0; }
.show-card { padding: 18px; background: var(--ink); color: #fff; display: flex; flex-direction: column; gap: 10px; }
.show-card h4 { font-family: var(--serif); font-weight: 700; font-size: 20px; margin: 0; }
.show-card p { margin: 0; font-size: 13px; color: #bdb6a8; line-height: 1.45; }
.show-card .go { color: var(--red); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.a-side .mini { display: grid; grid-template-columns: 22px 88px 1fr; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--rule-soft); align-items: flex-start; }
.a-side .mini:last-child { border-bottom: 0; }
.a-side .mini .th { aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--rule-soft); }
.a-side .mini .th img { width: 100%; height: 100%; object-fit: cover; }
.a-side .mini h5 { font-family: var(--serif); font-weight: 700; font-size: 14px; line-height: 1.2; margin: 0 0 5px; }
.a-side .mini h5 a { color: var(--ink); text-decoration: none; }
.a-side .mini h5 a:hover { color: var(--red); }
.a-side .mini .meta { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.a-side .mini .num { font-family: var(--mono); font-size: 11px; color: var(--red); font-weight: 600; }

/* Related */
.a-related { max-width: 1380px; margin: 0 auto; padding: 56px 28px; }
.a-related .head { display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 2px solid var(--ink); padding-bottom: 12px; margin-bottom: 28px; }
.a-related h2 { font-family: var(--serif); font-weight: 800; font-size: 32px; letter-spacing: -.018em; margin: 0; }
.a-related h2 em { font-style: italic; color: var(--red); }

/* ── ARCHIVE ── */
.arch-hero { background: var(--ink); color: var(--paper); padding: 56px 28px 48px; border-bottom: 6px solid var(--red); position: relative; overflow: hidden; }
.arch-hero .wrap { max-width: 1380px; margin: 0 auto; position: relative; z-index: 2; }
.arch-hero .crumbs { font-family: var(--sans); font-size: 12px; color: #8a8478; letter-spacing: .04em; margin-bottom: 22px; }
.arch-hero .crumbs a { color: #bdb6a8; text-decoration: none; }
.arch-hero .lay { display: grid; grid-template-columns: 1.55fr 1fr; gap: 48px; align-items: flex-end; }
.arch-hero .kicker { font-family: var(--sans); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.arch-hero .kicker::after { content: ""; flex: 0 0 50px; height: 1px; background: var(--red); }
.arch-hero h1 { font-family: var(--serif); font-weight: 800; font-size: 68px; line-height: 1; letter-spacing: -.028em; margin: 0 0 16px; text-wrap: balance; }
.arch-hero p { font-size: 18px; color: #cfc8b9; max-width: 660px; margin: 0; line-height: 1.5; }
.arch-hero .hostmeta { border-left: 1px solid #2a2620; padding-left: 30px; display: flex; flex-direction: column; gap: 18px; }
.arch-hero .stat { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; }
.arch-hero .n { font-family: var(--serif); font-weight: 800; font-size: 48px; line-height: 1; color: #fff; letter-spacing: -.025em; }
.arch-hero .l { font-family: var(--sans); font-size: 11.5px; letter-spacing: .06em; color: #cfc8b9; text-transform: uppercase; line-height: 1.3; }
.arch-controls { background: var(--paper-2); border-bottom: 1px solid var(--rule-soft); padding: 12px 28px; font-family: var(--sans); }
.arch-controls .wrap { max-width: 1380px; margin: 0 auto; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.arch-controls .lab { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.arch-controls .seg { display: flex; border: 1px solid var(--rule-soft); background: #fff; }
.arch-controls .seg a { padding: 7px 13px; border-right: 1px solid var(--rule-soft); font-size: 13px; font-weight: 600; color: var(--ink-soft); text-decoration: none; }
.arch-controls .seg a:last-child { border-right: 0; }
.arch-controls .seg a.on { background: var(--ink); color: #fff; }
.arch-controls .count { font-size: 12.5px; color: var(--muted); margin-left: auto; }
.arch-controls .count em { color: var(--ink); font-style: normal; font-weight: 700; }
.arch-list { max-width: 1380px; margin: 0 auto; padding: 36px 28px 28px; }
.alist-row { display: grid; grid-template-columns: 240px 1fr; gap: 26px; padding: 24px 0; border-bottom: 1px solid var(--rule-soft); align-items: start; transition: .15s; }
.alist-row:hover { background: linear-gradient(90deg,transparent,rgba(233,75,43,.04),transparent); }
.alist-row .th { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--rule-soft); }
.alist-row .th img { width: 100%; height: 100%; object-fit: cover; }
.alist-row .th .dur { position: absolute; bottom: 6px; right: 6px; background: rgba(0,0,0,.78); color: #fff; font-family: var(--mono); font-size: 11px; padding: 2px 5px; }
.alist-row .body .cat { display: inline-block; font-family: var(--sans); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; color: var(--red); margin-bottom: 8px; text-decoration: none; }
.alist-row .body h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.2; margin: 0 0 7px; }
.alist-row .body h3 a { color: var(--ink); text-decoration: none; }
.alist-row:hover .body h3 a { color: var(--red); }
.alist-row .body p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 10px; }
.alist-row .body .meta { font-family: var(--sans); font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.alist-row .body .meta b { color: var(--ink-soft); font-weight: 600; }

/* Pagination */
.pagi { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 36px 28px 70px; font-family: var(--sans); font-weight: 600; font-size: 14px; }
.pagi a, .pagi .page-numbers { min-width: 42px; height: 42px; border: 1px solid var(--rule-soft); background: #fff; color: var(--ink); display: inline-grid; place-items: center; font-weight: 600; text-decoration: none; transition: .12s; padding: 0 14px; }
.pagi a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagi .current { background: var(--red); color: #fff; border-color: var(--red); }
.pagi .dots { background: transparent; border: 0; color: var(--muted); }

/* ── MOBILE DRAWER ── */
.m-overlay { display: none; position: fixed; inset: 0; background: rgba(10,9,8,.55); z-index: 300; }
.m-overlay.open { display: block; animation: rr-fadeIn .15s; }
@keyframes rr-fadeIn { from { opacity: 0; } to { opacity: 1; } }
.m-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: min(360px, 86vw); background: var(--paper); overflow-y: auto; padding: 18px 22px 28px; display: flex; flex-direction: column; gap: 16px; z-index: 301; transform: translateX(-100%); transition: transform .22s ease-out; }
.m-drawer.open { transform: translateX(0); }
.m-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.m-close { width: 36px; height: 36px; font-size: 24px; line-height: 1; color: var(--ink); background: none; border: 0; cursor: pointer; }
.m-search { display: flex; align-items: center; gap: 10px; background: var(--paper-2); border: 1px solid var(--rule-soft); padding: 10px 14px; border-radius: 3px; }
.m-search input { flex: 1; border: 0; background: transparent; outline: 0; font-family: var(--sans); font-size: 15px; color: var(--ink); }
.m-nav { display: flex; flex-direction: column; }
.m-nav a { font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: -.01em; color: var(--ink); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--rule-soft); }
.m-divider { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.m-divider span { font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.m-divider::after { content: ""; flex: 1; height: 1px; background: var(--rule-soft); }
.m-cats { display: flex; flex-wrap: wrap; gap: 5px; }
.m-cats a { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-soft); padding: 6px 10px; border: 1px solid var(--rule-soft); background: #fff; text-decoration: none; border-radius: 2px; transition: .12s; }
.m-cats a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.m-donate { justify-content: center; margin-top: 4px; }
.m-socials { display: flex; gap: 8px; justify-content: center; margin-top: 2px; }
.m-socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--rule-soft); border-radius: 3px; color: var(--ink); text-decoration: none; transition: .15s; }
.m-socials a:hover { background: var(--ink); color: #fff; }

/* ── TABLET ≤1024px ── */
@media (max-width: 1024px) {
  .topbar .meta { display: none; }
  .ham, .search-btn { display: inline-flex; }
  .nav, .nav-right .search, .nav-right .socials { display: none; }
  .donate { padding: 9px 13px; font-size: 12px; }
  .masthead .wrap { gap: 12px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .h-lead h1 { font-size: 46px; }
  .h-side { border-top: 1px solid var(--rule); padding-top: 18px; border-left: 0; padding-left: 0; }
  .grid { grid-template-columns: repeat(2,1fr); gap: 28px 20px; }
  .nwrap { grid-template-columns: 1fr; gap: 28px; }
  .newsletter h2 { font-size: 42px; }
  .frow1 { grid-template-columns: 1fr 1fr; gap: 28px; }
  .article { grid-template-columns: 1fr; gap: 20px; }
  .a-share { position: static; flex-direction: row; width: 100%; padding: 10px 0; border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft); }
  .a-share .lab { writing-mode: horizontal-tb; transform: none; }
  .a-title { font-size: 44px; }
  .arch-hero .lay { grid-template-columns: 1fr; gap: 26px; }
  .arch-hero h1 { font-size: 52px; }
  .alist-row { grid-template-columns: 180px 1fr; gap: 18px; }
}

/* ── MOBILE ≤640px ── */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar .wrap { padding: 7px 16px; gap: 10px; }
  .topbar .ticker { display: none; }
  .masthead .wrap { padding: 10px 16px; gap: 8px; }
  .nav-right { display: none; }
  .logo .icon { width: 38px; height: 38px; }
  .logo .icon svg { width: 24px; height: 24px; }
  .logo .word { font-size: 20px; }
  .catrail { display: none; }
  .hero, .wrap, .arch-list, .arch-hero .wrap { padding-left: 16px; padding-right: 16px; }
  .hero { padding-top: 22px; }
  .h-lead h1 { font-size: 34px; }
  .h-lead .deck { font-size: 17px; }
  .grid { grid-template-columns: 1fr; gap: 26px; }
  .newsletter { padding: 48px 16px; }
  .newsletter h2 { font-size: 32px; }
  .nl-form { flex-direction: column; padding: 7px; gap: 7px; }
  .nl-form button { padding: 12px; }
  .footer { padding: 36px 16px 0; }
  .frow1 { grid-template-columns: 1fr; gap: 24px; padding-bottom: 26px; }
  .frow2 { flex-direction: column; align-items: flex-start; gap: 8px; }
  .a-title { font-size: 32px; }
  .a-deck { font-size: 17px; }
  .a-body { font-size: 17px; }
  .a-body p:first-of-type::first-letter { font-size: 52px; }
  .arch-hero { padding: 32px 16px 28px; }
  .arch-hero h1 { font-size: 36px; }
  .arch-hero .lay { grid-template-columns: 1fr; }
  .alist-row { grid-template-columns: 1fr; gap: 12px; padding: 18px 0; }
  .pagi { flex-wrap: wrap; gap: 5px; padding: 22px 16px 56px; }
  .pagi a, .pagi .page-numbers { min-width: 36px; height: 36px; font-size: 13px; }
  .filterbar .row { flex-wrap: wrap; }
  .filterbar .label { width: 100%; }
}

/* ══════════════════════════════════════════
   SEKCJA: DZIŚ POLECAMY
══════════════════════════════════════════ */
.section-rule { display: flex; align-items: center; gap: 14px; padding: 48px 0 22px; font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--ink); }
.section-rule::before, .section-rule::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.section-rule .dot { width: 6px; height: 6px; background: var(--red); transform: rotate(45deg); flex-shrink: 0; }
.section-divider { display: flex; align-items: center; gap: 14px; padding: 48px 0; }
.section-divider::before, .section-divider::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.section-divider .dot { width: 6px; height: 6px; background: var(--red); transform: rotate(45deg); flex-shrink: 0; }
.featured-section { padding: 0 0 0; margin: 0; }
.featured-section .wrap { max-width: 1380px; margin: 0 auto; padding: 0 28px; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px 0; }
.feat-item { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: flex-start; }
.feat-num { font-family: var(--serif); font-style: italic; font-size: 80px; line-height: .85; color: var(--red); letter-spacing: -.04em; margin-top: -8px; }
.feat-body { display: flex; flex-direction: column; gap: 8px; }
.feat-show { font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--red); }
.feat-body h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.2; margin: 0; }
.feat-body h3 a { color: var(--ink); text-decoration: none; }
.feat-body h3 a:hover { color: var(--red); }
.feat-body p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.feat-meta { font-family: var(--sans); font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.feat-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rule-soft); }

/* ══════════════════════════════════════════
   SEKCJA: SZEŚĆ AUDYCJI
══════════════════════════════════════════ */
.shows-section { background: var(--ink); color: var(--paper); padding: 52px 0 60px; margin: 60px 0 0; }
.shows-wrap { max-width: 1380px; margin: 0 auto; padding: 0 28px; }
.shows-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 36px; }
.shows-section h2 { font-family: var(--serif); font-weight: 800; font-size: 44px; line-height: 1.08; letter-spacing: -.022em; margin: 0; color: #fff; }
.shows-section h2 em { font-style: italic; color: var(--red); }
.shows-sub { font-family: var(--sans); font-size: 14px; color: #a8a092; line-height: 1.6; max-width: 440px; margin: 0; }
.shows-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.show-tile { padding: 18px 16px; background: #1a1815; border: 1px solid #2a2520; display: flex; flex-direction: column; gap: 8px; cursor: pointer; transition: .15s; position: relative; min-height: 130px; }
.show-tile:hover, .show-tile.active { background: #211c17; border-color: var(--red); }
.show-tile .show-num { font-family: var(--mono); font-size: 10.5px; color: #6a6458; letter-spacing: .1em; }
.show-tile h4 { font-family: var(--sans); font-weight: 700; font-size: 14px; line-height: 1.2; margin: 0; color: #fff; }
.show-tile .show-count { font-family: var(--sans); font-size: 11px; color: #cfc8b9; letter-spacing: .04em; margin-top: auto; }
.show-tile .show-count em { color: var(--red); font-style: normal; font-weight: 700; }

/* Rail */
.shows-rail { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .3s ease, opacity .2s ease, padding .3s ease; border-top: 1px solid #2a2520; }
.shows-rail.open { max-height: 300px; opacity: 1; padding: 20px 0 28px; }
.rail-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-family: var(--sans); }
.rail-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: #bdb6a8; }
.rail-label em { color: var(--red); font-style: normal; }
.rail-hosts { font-size: 12px; color: #6a6458; letter-spacing: .06em; font-weight: 600; text-transform: uppercase; }
.rail-track-wrap { position: relative; }
.rail-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(200px,1fr); gap: 12px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.rail-track::-webkit-scrollbar { display: none; }
.rail-arr { position: absolute; top: 35%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,.4); transition: .15s; z-index: 5; border: 0; }
.rail-arr:hover { background: var(--red); color: #fff; }
.rail-arr:disabled { opacity: 0; pointer-events: none; }
.rail-arr svg { width: 14px; height: 14px; }
.rail-arr.left { left: -14px; }
.rail-arr.right { right: -14px; }
.ep-card { display: flex; flex-direction: column; gap: 7px; text-decoration: none; color: var(--paper); transition: .12s; }
.ep-thumb { position: relative; aspect-ratio: 16/9; background: #0e0c0a; overflow: hidden; border: 1px solid #2a2520; }
.ep-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .2s; }
.ep-card:hover .ep-thumb img { transform: scale(1.04); }
.ep-info { display: flex; flex-direction: column; gap: 3px; }
.ep-info h6 { font-family: var(--serif); font-weight: 600; font-size: 13px; line-height: 1.25; margin: 0; color: #fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ep-date { font-family: var(--mono); font-size: 10.5px; color: #6a6458; }

/* ══════════════════════════════════════════
   SEKCJA: CYTAT
══════════════════════════════════════════ */
.pullquote-section { padding: 60px 0; margin: 0; }
.pullquote-link { display: block; text-decoration: none; color: var(--ink); transition: .15s; }
.pullquote-link:hover .pq-body blockquote { color: var(--red-ink); }
.pullquote { display: grid; grid-template-columns: 140px 1fr; gap: 48px; align-items: center; }
.pq-mark { font-family: var(--serif); font-style: italic; font-weight: 800; font-size: 220px; color: var(--red); line-height: .7; letter-spacing: -.04em; user-select: none; }
.pq-body blockquote { margin: 0 0 16px; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 28px; line-height: 1.3; letter-spacing: -.012em; color: var(--ink); }
.pq-body cite { font-style: normal; font-family: var(--sans); font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.pq-body cite::before { content: "— "; }

/* ══════════════════════════════════════════
   SEKCJA: STALI WSPÓŁPRACOWNICY
══════════════════════════════════════════ */
.authors-section { padding: 60px 0; }
.authors-head { display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 2px solid var(--ink); padding-bottom: 14px; margin-bottom: 28px; }
.authors-section h2 { font-family: var(--serif); font-weight: 800; font-size: 32px; letter-spacing: -.015em; margin: 0; }
.see-all { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: .04em; }
.see-all:hover { color: var(--red); }
.authors-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.author-card { display: flex; flex-direction: column; border: 1px solid var(--rule-soft); background: #fff; text-decoration: none; color: var(--ink); overflow: hidden; transition: .18s; }
.author-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.author-av { width: 100%; aspect-ratio: 5/4; position: relative; overflow: hidden; background: linear-gradient(140deg, var(--red) 0%, var(--red-ink) 100%); }
.author-av img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: saturate(.85); }
.author-av::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.5) 100%); }
.author-init { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: 48px; font-weight: 800; color: rgba(255,255,255,.8); font-style: italic; }
.author-body { padding: 12px 14px 14px; border-top: 1px solid var(--rule-soft); display: flex; flex-direction: column; gap: 4px; }
.author-card h5 { font-family: var(--serif); font-weight: 700; font-size: 16px; line-height: 1.15; margin: 0; }
.author-role { font-family: var(--sans); font-size: 11px; color: var(--red); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.author-stats { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 5px; padding-top: 5px; border-top: 1px dotted var(--rule-soft); }

/* ══════════════════════════════════════════
   NEWSLETTER — przeprojektowany
══════════════════════════════════════════ */
.newsletter .eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.newsletter .eyebrow::after { content: ""; flex: 0 0 60px; height: 1px; background: #3a352d; }
.newsletter h2 { font-family: var(--serif); font-weight: 800; font-size: 36px; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 14px; }
.newsletter h2 em { font-style: italic; color: var(--red); }
.nl-left { max-width: 520px; }
.nstat .n { font-family: var(--serif); font-weight: 800; font-size: 44px; line-height: 1; color: #fff; letter-spacing: -.02em; display: block; }
.nstat .l { font-family: var(--sans); font-size: 12px; color: #a8a092; line-height: 1.4; display: block; margin-top: 4px; }

/* ══════════════════════════════════════════
   RESPONSIVE — nowe sekcje
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .shows-head { grid-template-columns: 1fr; gap: 16px; }
  .shows-grid { grid-template-columns: repeat(3,1fr); }
  .featured-grid { grid-template-columns: 1fr; gap: 32px; }
  .authors-grid { grid-template-columns: repeat(3,1fr); }
  .pullquote { grid-template-columns: 80px 1fr; gap: 28px; }
  .pq-mark { font-size: 140px; }
  .pq-body blockquote { font-size: 22px; }
}

@media (max-width: 640px) {
  .shows-head { grid-template-columns: 1fr; }
  .shows-section h2 { font-size: 32px; }
  .shows-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .featured-section .wrap, .pullquote-section .wrap, .authors-section .wrap { padding-left: 16px; padding-right: 16px; }
  .featured-grid { grid-template-columns: 1fr; gap: 24px; }
  .feat-item { grid-template-columns: 60px 1fr; gap: 12px; }
  .feat-num { font-size: 50px; }
  .authors-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .pullquote { grid-template-columns: 1fr; gap: 8px; }
  .pq-mark { font-size: 100px; line-height: .6; }
  .pq-body blockquote { font-size: 19px; }
  .shows-wrap { padding: 0 16px; }
  .rail-arr.left { left: -6px; }
  .rail-arr.right { right: -6px; }
}
