@font-face {
    font-family: "Newsreader";
    src: url("../fonts/newsreader-400.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Newsreader";
    src: url("../fonts/newsreader-500.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

:root {
    --black: #0c0a0d;
    --ink: #171317;
    --wine: #781238;
    --wine-dark: #4c071f;
    --pink: #ce1d63;
    --violet: #6f35dc;
    --blue: #265de8;
    --orange: #ef552b;
    --paper: #ffffff;
    --cream: #f3efe9;
    --line: #d8d1cc;
    --muted: #655f64;
    --display: "Newsreader", Georgia, serif;
    --ui: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    --spectrum: linear-gradient(90deg, #781238 0%, #ce1d63 28%, #6f35dc 54%, #265de8 76%, #ef552b 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #d9d4ce;
    font-family: var(--ui);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.has-dialog { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--wine); }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
h1, h2, h3 { text-wrap: pretty; overflow-wrap: anywhere; }
ul, ol { box-sizing: border-box; }
[hidden] { display: none !important; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #e42b75;
    outline-offset: 4px;
}

.site-canvas {
    width: min(1600px, 100%);
    min-height: 100vh;
    margin-inline: auto;
    border-inline: 1px solid #beb7b1;
    background: var(--paper);
}

.container {
    width: min(1320px, calc(100% - 80px));
    margin-inline: auto;
}

.main-area { min-height: 50vh; background: var(--paper); }
.main-area:focus { outline: 0; }

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link:focus {
    z-index: 100000;
    position: fixed !important;
    top: 12px;
    left: 12px;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 13px 18px !important;
    clip: auto !important;
    clip-path: none !important;
    color: #fff;
    background: var(--wine);
    font-weight: 700;
}

/* Brand masthead --------------------------------------------------------- */
.site-header { position: relative; z-index: 10; background: #fff; }
.portal-now { color: #fff; background: var(--wine); }
.portal-now-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 42px;
    gap: 22px;
}
.portal-now-label {
    padding-right: 22px;
    border-right: 1px solid rgba(255,255,255,.55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.portal-now-story {
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.portal-now-story:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.portal-now time { font-size: 10px; letter-spacing: .05em; }

.masthead {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 154px;
    gap: 34px;
}
.masthead-signature {
    max-width: 220px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.55;
    text-transform: uppercase;
}
.brand { display: inline-flex; align-items: center; }
.brand-image { width: 100%; height: auto; }
.masthead > .brand { width: 355px; }
.masthead-controls {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
}
.header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 8px;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.header-action svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: square;
    stroke-width: 1.8;
}
.masthead-nav-shell { color: #fff; background: var(--black); }
.masthead-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    gap: 40px;
}
.menu, .portal-menu { margin: 0; padding: 0; list-style: none; }
.main-nav { min-width: 0; }
.main-nav .portal-menu { display: flex; align-items: center; gap: 46px; }
.main-nav .portal-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    border-bottom: 5px solid transparent;
    font-size: 14px;
    font-weight: 800;
}
.main-nav .portal-menu a:hover,
.main-nav .portal-menu a[aria-current="page"] { color: #fff; border-bottom-color: #e52b75; }
.main-nav .dialog-arrow { display: none; }
.masthead-archive {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    gap: 9px;
    color: #f3a2c4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.masthead-archive:hover { color: #fff; }

/* Shared story atoms ----------------------------------------------------- */
.media, .cover-story-media, .pulse-media { display: block; overflow: hidden; background: #e9e4df; }
.media img, .cover-story-media img, .pulse-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}
.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--ui);
    font-size: clamp(22px, 3vw, 43px);
    font-weight: 900;
    letter-spacing: -.06em;
}
.image-placeholder span { color: var(--wine); }
article:hover > .media img,
article:hover .media img,
.cover-story-media:hover img,
.pulse-story:hover .pulse-media img { transform: scale(1.018); filter: contrast(1.03); }
.kicker {
    color: var(--wine);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.post-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
}
.paid-label { color: var(--wine); font-weight: 800; text-transform: uppercase; }
.story-dek { color: var(--muted); font-size: 16px; line-height: 1.55; }

/* Cover: title first, image second — no sidebar and no card frame. ------- */
.mag-home { overflow: hidden; }
.cover-story { padding-top: 62px; }
.cover-story-copy { width: min(1160px, 100%); }
.cover-story-context {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 18px;
}
.cover-story-context > span {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--wine);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.cover-story-context > span::after { content: ""; width: 62px; height: 3px; background: var(--spectrum); }
.cover-story h1 {
    font-family: var(--display);
    font-size: clamp(65px, 7.35vw, 112px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .88;
}
.cover-story h1 a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--pink); text-decoration-thickness: 7px; text-underline-offset: 9px; }
.cover-story-dek {
    width: min(790px, 100%);
    margin-top: 25px;
    color: #4f494e;
    font-family: var(--display);
    font-size: 23px;
    line-height: 1.38;
}
.cover-story-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; color: var(--muted); font-size: 10px; }
.cover-story-media {
    position: relative;
    width: 100%;
    margin-top: 42px;
    aspect-ratio: 16 / 9;
    border-bottom: 12px solid transparent;
    border-image: var(--spectrum) 1;
}

/* The live desk is one continuous black editorial band. ---------------- */
.pulse { color: #fff; background: var(--black); }
.pulse-inner { padding-top: 46px; padding-bottom: 54px; }
.pulse-head {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    align-items: end;
    gap: 30px;
    margin-bottom: 31px;
    padding-bottom: 18px;
    border-bottom: 1px solid #494148;
}
.pulse-head > p { color: #ee95bb; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.pulse-head h2 { font-family: var(--display); font-size: 49px; font-weight: 500; letter-spacing: -.045em; line-height: .9; }
.pulse-head > a { min-height: 44px; padding-top: 15px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pulse-head > a:hover { color: #f5a8c8; }
.pulse-stories { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.pulse-story { min-width: 0; padding: 0 24px; border-left: 1px solid #494148; }
.pulse-story:first-child { padding-left: 0; border-left: 0; }
.pulse-story:last-child { padding-right: 0; }
.pulse-media { aspect-ratio: 16 / 9; margin-bottom: 17px; }
.pulse-story .kicker { color: #ed8eb7; }
.pulse-story h3 { margin: 8px 0 15px; font-family: var(--display); font-size: 24px; font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.pulse-story h3 a:hover { color: #fff; text-decoration: underline; text-decoration-color: #e52b75; text-underline-offset: 4px; }
.pulse-story .post-card-meta { color: #bdb5bb; }

/* Genre index ------------------------------------------------------------ */
.genre-index {
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    align-items: stretch;
    margin-top: 54px;
    border-block: 2px solid var(--black);
}
.genre-index > span {
    display: flex;
    align-items: center;
    padding: 18px 24px 18px 0;
    border-right: 2px solid var(--black);
    color: var(--wine);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.genre-index > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.genre-index a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 12px;
    padding: 12px 20px;
    border-right: 1px solid var(--line);
    font-family: var(--display);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -.035em;
}
.genre-index a:last-child { border-right: 0; }
.genre-index a span { color: var(--wine); font-family: var(--ui); font-size: 13px; }
.genre-index a:hover { color: #fff; background: var(--wine); }
.genre-index a:hover span { color: #fff; }

/* Editions --------------------------------------------------------------- */
.editions { margin-top: 92px; }
.edition { position: relative; padding: 82px 0 90px; }
.edition::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 100%; height: 1px; background: var(--line); }
.edition-head {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(340px, 1fr) auto;
    align-items: end;
    gap: 42px;
    margin-bottom: 36px;
}
.edition-head > div > p {
    margin-bottom: 7px;
    color: var(--wine);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.edition-head h2 {
    font-family: var(--display);
    font-size: clamp(59px, 6.2vw, 91px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .82;
}
.edition-intro { max-width: 560px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.edition-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    gap: 12px;
    padding: 10px 0 7px;
    border-bottom: 3px solid currentColor;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.edition-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(330px, .75fr); align-items: start; gap: 46px; }
.edition-lead .media { aspect-ratio: 16 / 9; margin-bottom: 21px; }
.edition-lead h3 { margin: 9px 0 13px; font-family: var(--display); font-size: clamp(39px, 4vw, 57px); font-weight: 500; letter-spacing: -.055em; line-height: .94; }
.edition-lead h3 a:hover, .edition-item h3 a:hover { text-decoration: underline; text-decoration-color: var(--pink); text-underline-offset: 4px; }
.edition-lead .story-dek { width: min(710px, 100%); margin-bottom: 15px; }
.edition-stream { border-top: 5px solid var(--black); }
.edition-item { display: grid; grid-template-columns: 155px minmax(0, 1fr); align-items: start; gap: 17px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.edition-item .media { aspect-ratio: 16 / 9; }
.edition-item h3 { margin: 7px 0 10px; font-family: var(--display); font-size: 21px; font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }

/* Hudba is a stage, not another white card grid. */
.edition--hudba { color: #fff; background: var(--black); }
.edition--hudba::before { height: 10px; background: var(--spectrum); }
.edition--hudba .edition-head > div > p,
.edition--hudba .kicker { color: #ee8db6; }
.edition--hudba .edition-intro,
.edition--hudba .story-dek,
.edition--hudba .post-card-meta { color: #c8bfc5; }
.edition--hudba .edition-stream { border-top-color: #fff; }
.edition--hudba .edition-item { border-bottom-color: #484047; }
.edition--hudba .ad-slot-label { color: #bdb5bb; }
.edition--hudba a:hover { color: #f3a0c4; }
.edition--hudba .edition-layout--with-ad { grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr) 300px; gap: 30px; }

/* Books read like a designed cultural supplement. */
.edition--knihy { color: var(--ink); background: var(--cream); }
.edition--knihy::before { height: 10px; background: linear-gradient(90deg, #5d2bb5, #245fe5); }
.edition--knihy .edition-head > div > p,
.edition--knihy .kicker { color: #52279b; }
.edition--knihy .edition-layout { display: block; }
.edition--knihy .edition-lead { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr); align-items: end; gap: 44px; }
.edition--knihy .edition-lead .media { grid-row: 1 / span 4; margin: 0; }
.edition--knihy .edition-lead h3 { font-size: clamp(43px, 4.5vw, 64px); }
.edition--knihy .edition-stream { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 44px; border-top: 2px solid var(--black); }
.edition--knihy .edition-item { display: block; padding: 22px 25px 0; border-right: 1px solid #cfc5bd; border-bottom: 0; }
.edition--knihy .edition-item:first-child { padding-left: 0; }
.edition--knihy .edition-item:last-child { padding-right: 0; border-right: 0; }
.edition--knihy .edition-item .media { margin-bottom: 15px; }
.edition--knihy .edition-item h3 { font-size: 25px; }

/* Film becomes a full burgundy screen. */
.edition--film-a-serialy { color: #fff; background: var(--wine); }
.edition--film-a-serialy::before { height: 10px; background: linear-gradient(90deg, #ff8d41, #ed2d72, #6e37da); }
.edition--film-a-serialy .edition-head > div > p,
.edition--film-a-serialy .kicker { color: #ffd1e3; }
.edition--film-a-serialy .edition-intro,
.edition--film-a-serialy .story-dek,
.edition--film-a-serialy .post-card-meta { color: #f0dce4; }
.edition--film-a-serialy .edition-layout { display: block; }
.edition--film-a-serialy .edition-lead .media { margin-bottom: 26px; }
.edition--film-a-serialy .edition-lead h3 { width: min(1040px, 100%); font-size: clamp(48px, 5.7vw, 82px); }
.edition--film-a-serialy .edition-stream { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 39px; border-top: 2px solid rgba(255,255,255,.75); }
.edition--film-a-serialy .edition-item { display: block; padding: 23px 26px 0; border-right: 1px solid rgba(255,255,255,.3); border-bottom: 0; }
.edition--film-a-serialy .edition-item:first-child { padding-left: 0; }
.edition--film-a-serialy .edition-item:last-child { padding-right: 0; border-right: 0; }
.edition--film-a-serialy .edition-item .media { margin-bottom: 15px; }
.edition--film-a-serialy .edition-item h3 { font-size: 25px; }
.edition--film-a-serialy a:hover { color: #fff; text-decoration-color: #fff; }

/* Places and events use a fast guide-like rhythm. */
.edition--kam-ist::before { height: 10px; background: linear-gradient(90deg, #ef552b, #dc1f64); }
.edition--kam-ist .edition-layout { grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr); }
.edition--kam-ist .edition-lead h3 { font-size: clamp(43px, 4.4vw, 63px); }
.edition--kam-ist .edition-stream { border-top-width: 2px; }
.edition--kam-ist .edition-item { grid-template-columns: 190px minmax(0, 1fr); padding-block: 22px; }
.edition--kam-ist .edition-item h3 { font-size: 24px; }

.more-archive { padding: 58px 0 96px; text-align: center; }
.more-archive a {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 5px solid var(--wine);
    font-family: var(--display);
    font-size: 29px;
}

/* Advertising ----------------------------------------------------------- */
.ad-slot {
    max-width: 100%;
    margin: 48px auto;
    clear: both;
    font-family: var(--ui);
    transition: margin .18s ease, max-height .18s ease, opacity .18s ease;
}
.ad-slot--billboard { width: min(970px, calc(100% - 40px)); }
.ad-slot--inline { width: min(336px, 100%); }
.ad-slot--tower { width: min(300px, 100%); margin: 0 auto; }
.ad-slot-label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 9px; letter-spacing: .15em; text-align: center; text-transform: uppercase; }
.ad-inner { display: flex; justify-content: center; max-width: 100%; }
.ad-frame { display: flex; justify-content: center; width: min(var(--active-ad-width, 100%), 100%); max-width: 100%; overflow: hidden; }
.ad-runtime, .ad-code, .ad-slot iframe { max-width: 100%; }
.ad-slot.is-ad-pending { --reserved-ad-height: var(--ad-desktop-height, 0px); min-height: calc(var(--reserved-ad-height) + 20px); pointer-events: none; }
.ad-slot.is-ad-pending .ad-inner { min-height: var(--reserved-ad-height); }
.ad-slot.is-ad-unfilled { min-height: 0 !important; max-height: 0 !important; margin-block: 0 !important; overflow: hidden; opacity: 0; pointer-events: none; }
.ad-slot.is-ad-unfilled .ad-slot-label { display: none; }
.ad-slot.is-ad-unfilled .ad-inner, .ad-slot.is-ad-unfilled .ad-frame { height: 0 !important; min-height: 0 !important; }
.edition-layout--with-ad > .ad-slot { align-self: start; }
.edition-layout--with-ad:has(> .ad-slot.is-ad-unfilled) { grid-template-columns: minmax(0, 1.55fr) minmax(330px, .75fr); }

/* Breadcrumbs, archives, categories and search -------------------------- */
.breadcrumbs { padding: 17px 0 12px; border-bottom: 1px solid var(--line); font-size: 10px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 5px 12px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 12px; color: #aaa1a7; }
.breadcrumbs a, .breadcrumbs span { display: inline-block; min-height: 32px; padding-block: 9px; }

.archive-view { padding-bottom: 96px; }
.archive-header {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(400px, 1.18fr);
    align-items: end;
    gap: 50px;
    padding: 52px 0 35px;
    border-bottom: 8px solid var(--black);
}
.archive-header h1 {
    font-family: var(--display);
    font-size: clamp(64px, 7vw, 100px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .84;
}
.archive-description { color: var(--muted); font-size: 18px; line-height: 1.55; }
.archive-topics { display: flex; align-items: center; gap: 0 30px; padding: 12px 0; border-bottom: 1px solid var(--line); overflow-x: auto; }
.archive-topics a { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 42px; color: var(--wine); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.archive-content-layout { width: min(970px, 100%); margin: 0 auto; }
.archive-content-layout--with-ad { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; width: 100%; gap: 44px; }
.archive-content-layout--with-ad > .ad-slot { position: sticky; top: 20px; margin-top: 34px; }
.archive-content-layout--with-ad:has(> .ad-slot.is-ad-unfilled) { display: block; width: min(970px, 100%); }
.archive-feed { min-width: 0; }
.archive-grid { margin-top: 34px; }
.archive-card {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: start;
    gap: 31px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}
.archive-card:first-child { border-top: 1px solid var(--line); }
.archive-card .media { aspect-ratio: 16 / 9; }
.archive-card h3 { margin: 8px 0 13px; font-family: var(--display); font-size: clamp(28px, 2.8vw, 39px); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.archive-card .story-dek { margin-bottom: 13px; }
.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 7px; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 8px; border: 1px solid var(--line); font-weight: 800; }
.page-numbers.current { color: #fff; border-color: var(--wine); background: var(--wine); }

.search-form { width: min(970px, 100%); margin: 32px auto; }
.search-form label { display: block; margin-bottom: 9px; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.search-row { display: flex; gap: 0; }
.search-field { min-width: 0; flex: 1; min-height: 58px; padding: 12px 16px; border: 2px solid var(--black); background: #fff; font-size: 17px; }
.search-row button { min-height: 58px; padding: 12px 23px; border: 2px solid var(--black); color: #fff; background: var(--black); font-weight: 800; }
.empty-state { width: min(970px, 100%); margin: 46px auto; color: var(--muted); font-family: var(--display); font-size: 25px; }
.archive-view > .portal-menu { display: flex; flex-wrap: wrap; gap: 0 28px; width: min(970px, 100%); margin: 0 auto; }
.archive-view > .portal-menu a { display: inline-flex; align-items: center; min-height: 44px; color: var(--wine); font-weight: 800; }
.archive-view > .portal-menu .dialog-arrow { display: none; }

/* Articles and pages ---------------------------------------------------- */
.article-view, .page-view { padding-bottom: 90px; }
.article-header, .article-image, .article-body, .article-end, .page-shell { width: min(970px, 100%); margin-inline: auto; }
.article-header { padding: 48px 0 31px; }
.sponsorship { margin-bottom: 15px; color: var(--wine); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-header h1 {
    font-family: var(--display);
    font-size: clamp(59px, 6.4vw, 91px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .9;
}
.article-dek { margin-top: 25px; color: #4f494e; font-family: var(--display); font-size: 24px; line-height: 1.42; }
.byline { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 21px; margin-top: 28px; padding-top: 15px; border-top: 7px solid var(--black); color: var(--muted); font-size: 10px; }
.byline a { color: var(--ink); font-weight: 800; }
.article-image { position: relative; }
.article-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-image::after { content: ""; display: block; height: 9px; background: var(--spectrum); }
.article-image figcaption { padding-top: 8px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.article-body { margin-top: 39px; font-family: var(--display); font-size: 21px; line-height: 1.72; }
.entry-content > * + * { margin-top: 1.25em; }
.entry-content h2, .entry-content h3, .entry-content h4 { font-family: var(--ui); font-weight: 800; letter-spacing: -.04em; line-height: 1.08; }
.entry-content h2 { margin-top: 1.8em; font-size: 36px; }
.entry-content h3 { margin-top: 1.55em; font-size: 29px; }
.entry-content h4 { font-size: 23px; }
.entry-content a { color: var(--wine); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { padding-left: 1.35em; }
.entry-content li + li { margin-top: .45em; }
.entry-content blockquote { margin-block: 1.6em; padding: 10px 0 10px 27px; border-left: 7px solid var(--wine); font-size: 30px; line-height: 1.35; }
.entry-content img { height: auto; }
.entry-content figure { max-width: 100%; }
.entry-content figcaption { margin-top: 8px; color: var(--muted); font-family: var(--ui); font-size: 11px; }
.entry-content iframe { max-width: 100%; }
.entry-content table { width: 100%; border-collapse: collapse; font-family: var(--ui); font-size: 15px; }
.entry-content th, .entry-content td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.entry-content th { background: var(--cream); }
.table-scroll, .wp-block-table { max-width: 100%; overflow-x: auto; }
.entry-content .alignleft { float: left; max-width: 48%; margin: .4em 1.6em 1em 0; }
.entry-content .alignright { float: right; max-width: 48%; margin: .4em 0 1em 1.6em; }
.entry-content .aligncenter { margin-inline: auto; }
.entry-content .alignwide, .entry-content .alignfull { width: 100%; max-width: 100%; }
.page-links { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 28px; font-family: var(--ui); font-size: 13px; font-weight: 800; }
.post-password-form { width: min(970px, 100%); margin: 40px auto; }
.post-password-form input[type="password"] { min-height: 48px; padding: 8px 12px; border: 2px solid var(--black); }
.post-password-form input[type="submit"] { min-height: 48px; padding: 8px 17px; border: 2px solid var(--black); color: #fff; background: var(--black); font-weight: 800; }
.article-source { padding-top: 18px; border-top: 1px solid var(--line); font-family: var(--ui); font-size: 13px; }
.article-end { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-top: 45px; padding-top: 20px; border-top: 7px solid var(--black); }
.text-link { display: inline-flex; align-items: center; min-height: 44px; gap: 10px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.article-view > .portal-section { width: min(1120px, 100%); margin: 82px auto 0; }
.editorial-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 27px; padding-top: 20px; border-top: 8px solid var(--black); }
.editorial-heading > div > span { color: var(--wine); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.editorial-heading h2 { font-family: var(--display); font-size: 53px; font-weight: 500; letter-spacing: -.05em; line-height: .9; }
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.story-grid .story-card { padding: 0 23px; border-left: 1px solid var(--line); }
.story-grid .story-card:first-child { padding-left: 0; border-left: 0; }
.story-grid .story-card:last-child { padding-right: 0; }
.story-grid .media { aspect-ratio: 16 / 9; margin-bottom: 15px; }
.story-grid h3 { margin: 7px 0 12px; font-family: var(--display); font-size: 25px; font-weight: 500; letter-spacing: -.035em; line-height: 1.06; }

.page-shell { padding-top: 45px; }
.page-header { position: relative; margin-bottom: 31px; padding-bottom: 24px; border-bottom: 8px solid var(--black); }
.page-header::before { content: ""; display: block; width: 180px; height: 9px; margin-bottom: 25px; background: var(--spectrum); }
.page-header h1 { font-family: var(--display); font-size: clamp(60px, 6.5vw, 90px); font-weight: 500; letter-spacing: -.06em; line-height: .88; }
.page-body { margin-top: 0; font-size: 19px; }
.page-body > p:first-child { font-family: var(--ui); font-size: 21px; line-height: 1.55; }

.error-view { padding-block: 75px 100px; }
.error-view h1 { max-width: 1000px; margin-top: 15px; font-family: var(--display); font-size: clamp(65px, 8vw, 110px); font-weight: 500; letter-spacing: -.065em; line-height: .84; }
.error-view > p:not(.kicker) { max-width: 660px; margin-top: 25px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.error-view .text-link { margin-top: 27px; }

/* Menu and search dialogs ------------------------------------------------ */
.portal-dialog {
    width: min(650px, 100%);
    max-width: 650px;
    min-height: 100%;
    max-height: 100%;
    margin: 0 0 0 auto;
    padding: 0 44px 45px;
    border: 0;
    border-left: 10px solid var(--wine);
    background: #fff;
    overflow-y: auto;
}
.portal-dialog::backdrop { background: rgba(8, 6, 9, .86); }
.dialog-head { display: flex; align-items: center; justify-content: space-between; min-height: 105px; gap: 25px; border-bottom: 1px solid var(--line); }
.portal-dialog .brand { width: 245px; }
.dialog-close { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; gap: 9px; padding: 8px 0 8px 12px; border: 0; background: transparent; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.dialog-close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-layout { padding-top: 29px; }
.dialog-nav .portal-menu a { display: flex; align-items: center; min-height: 78px; gap: 18px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 47px; font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.dialog-nav .dialog-arrow { display: inline; margin-left: auto; color: var(--wine); font-family: var(--ui); font-size: 17px; }
.menu-meta { margin-top: 37px; padding-top: 21px; border-top: 8px solid var(--black); }
.menu-meta-title, .dialog-kicker { color: var(--wine); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.utility-links { display: flex; flex-wrap: wrap; gap: 0 24px; margin-top: 14px; }
.utility-links a { display: inline-flex; align-items: center; min-height: 44px; font-size: 12px; }
.menu-note { margin-top: 22px; color: var(--muted); font-family: var(--display); font-size: 21px; line-height: 1.4; }
.search-dialog { width: 100%; max-width: none; border-left: 0; border-top: 10px solid var(--wine); }
.search-dialog-body { width: min(970px, 100%); margin: 70px auto 0; }
.search-dialog-body h2 { margin-top: 10px; font-family: var(--display); font-size: clamp(70px, 8vw, 112px); font-weight: 500; letter-spacing: -.065em; line-height: .84; }
.search-dialog-body > p { margin-top: 20px; color: var(--muted); font-size: 16px; }

/* Footer ---------------------------------------------------------------- */
.site-footer { position: relative; color: #fff; background: var(--black); text-align: center; }
.site-footer::before { content: ""; display: block; height: 10px; background: var(--spectrum); }
.footer-inner { padding-top: 50px; padding-bottom: 34px; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-bottom: 30px; }
.site-footer .brand { width: 290px; padding: 13px 18px; background: #fff; }
.footer-rule { width: 100px; height: 5px; background: var(--wine); }
.footer-claim { color: #d0c7cd; font-family: var(--display); font-size: 21px; }
.footer-sections .portal-menu { display: flex; justify-content: center; flex-wrap: wrap; gap: 0 45px; padding: 13px 0; border-block: 1px solid #40393f; }
.footer-sections .portal-menu a { display: inline-flex; align-items: center; min-height: 44px; font-size: 13px; font-weight: 800; }
.footer-sections .dialog-arrow { display: none; }
.footer-links, .footer-links ul { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0 25px; margin: 11px 0 0; padding: 0; list-style: none; color: #bfb6bc; font-size: 11px; }
.footer-links a, .consent-button { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 0; border: 0; color: inherit; background: transparent; }
.site-footer a:hover, .consent-button:hover { color: #f1a0c4; }
.footer-bottom { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px 28px; margin-top: 5px; padding-top: 18px; border-top: 1px solid #40393f; color: #a99fa6; font-size: 9px; line-height: 1.6; }
.consent-status { margin-top: 13px; color: #fff; font-size: 11px; }

@media (max-width: 1250px) {
    .container { width: calc(100% - 64px); }
    .edition--hudba .edition-layout--with-ad { grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr); }
    .edition-layout--with-ad > .ad-slot { grid-column: 1 / -1; margin-top: 26px; }
}

@media (max-width: 1180px) {
    .ad-slot.is-ad-pending { --reserved-ad-height: var(--ad-tablet-height, 0px); }
    .ad-slot--tower { width: min(336px, 100%); }
    .archive-content-layout--with-ad { display: block; width: min(970px, 100%); }
    .archive-content-layout--with-ad > .ad-slot { position: static; margin-top: 35px; }
    .masthead > .brand { width: 315px; }
    .main-nav .portal-menu { gap: 34px; }
}

@media (max-width: 980px) {
    .container { width: calc(100% - 48px); }
    .masthead { grid-template-columns: 1fr auto; min-height: 116px; }
    .masthead-signature { display: none; }
    .masthead > .brand { grid-column: 1; width: 285px; }
    .masthead-controls { grid-column: 2; }
    .masthead-nav-row { display: block; min-height: 54px; overflow-x: auto; scrollbar-width: none; }
    .masthead-nav-row::-webkit-scrollbar { display: none; }
    .main-nav .portal-menu { width: max-content; min-width: 100%; gap: 34px; }
    .main-nav .portal-menu a { min-height: 54px; }
    .masthead-archive { display: none; }

    .cover-story h1 { font-size: clamp(61px, 9vw, 88px); }
    .pulse-stories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pulse-story { padding-block: 22px; border-bottom: 1px solid #494148; }
    .pulse-story:nth-child(odd) { padding-left: 0; border-left: 0; }
    .pulse-story:nth-child(even) { padding-right: 0; }
    .genre-index { grid-template-columns: 1fr; }
    .genre-index > span { min-height: 48px; padding: 11px 0; border-right: 0; border-bottom: 1px solid var(--line); }

    .edition-head { grid-template-columns: 1fr auto; gap: 18px 30px; }
    .edition-intro { grid-column: 1 / -1; grid-row: 2; }
    .edition-link { grid-column: 2; grid-row: 1; }
    .edition-layout, .edition--kam-ist .edition-layout { grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr); gap: 31px; }
    .edition-item { display: block; }
    .edition-item .media { margin-bottom: 13px; }
    .edition--knihy .edition-lead { grid-template-columns: 1fr; align-items: start; }
    .edition--knihy .edition-lead .media { grid-row: auto; }

    .archive-card { grid-template-columns: 290px minmax(0, 1fr); gap: 25px; }
    .article-header h1 { font-size: clamp(55px, 8vw, 78px); }
}

@media (max-width: 780px) {
    .ad-slot.is-ad-pending { --reserved-ad-height: var(--ad-mobile-height, 0px); }
    .ad-slot--tower { width: min(300px, 100%); }
}

@media (max-width: 720px) {
    .site-canvas { border-inline: 0; }
    .container { width: calc(100% - 28px); }
    .portal-now-inner { grid-template-columns: auto minmax(0, 1fr); min-height: 39px; gap: 10px; }
    .portal-now-label { padding-right: 10px; font-size: 8px; }
    .portal-now-story { font-size: 11px; }
    .portal-now time { display: none; }
    .masthead { min-height: 86px; gap: 13px; }
    .masthead > .brand { width: min(225px, 61vw); }
    .header-action { min-width: 44px; min-height: 44px; padding-inline: 4px; }
    .header-action span { display: none; }
    .masthead-controls { gap: 0; }
    .main-nav .portal-menu { gap: 24px; }
    .main-nav .portal-menu a { min-height: 49px; font-size: 12px; }

    .cover-story { padding-top: 31px; }
    .cover-story-context { margin-bottom: 12px; }
    .cover-story-context > span::after { width: 32px; }
    .cover-story h1 { font-size: clamp(46px, 13.2vw, 63px); line-height: .91; }
    .cover-story-dek { margin-top: 17px; font-size: 19px; line-height: 1.37; }
    .cover-story-meta { margin-top: 16px; }
    .cover-story-media { margin-top: 26px; border-bottom-width: 7px; }

    .pulse-inner { padding-top: 31px; padding-bottom: 35px; }
    .pulse-head { display: grid; grid-template-columns: 1fr auto; gap: 8px 15px; margin-bottom: 20px; }
    .pulse-head > p { grid-column: 1 / -1; }
    .pulse-head h2 { font-size: 38px; }
    .pulse-head > a { align-self: end; padding-top: 10px; font-size: 8px; }
    .pulse-stories { display: flex; gap: 16px; margin-right: -14px; padding-right: 14px; overflow-x: auto; scroll-snap-type: x proximity; }
    .pulse-story, .pulse-story:nth-child(odd), .pulse-story:nth-child(even) { flex: 0 0 min(82vw, 360px); padding: 0 0 10px; border: 0; scroll-snap-align: start; }
    .pulse-story h3 { font-size: 26px; }

    .genre-index { margin-top: 35px; }
    .genre-index > div { grid-template-columns: 1fr 1fr; }
    .genre-index a { min-height: 63px; padding-inline: 12px; font-size: 19px; border-bottom: 1px solid var(--line); }
    .genre-index a:nth-child(even) { border-right: 0; }

    .editions { margin-top: 61px; }
    .edition { padding: 55px 0 61px; }
    .edition-head { display: block; margin-bottom: 25px; }
    .edition-head h2 { font-size: 60px; }
    .edition-intro { margin-top: 15px; font-size: 15px; }
    .edition-link { margin-top: 12px; }
    .edition-layout,
    .edition--hudba .edition-layout--with-ad,
    .edition--kam-ist .edition-layout { display: block; }
    .edition-lead { padding-bottom: 29px; }
    .edition-lead .media { margin-bottom: 16px; }
    .edition-lead h3,
    .edition--knihy .edition-lead h3,
    .edition--film-a-serialy .edition-lead h3,
    .edition--kam-ist .edition-lead h3 { font-size: 36px; line-height: .98; }
    .edition-stream,
    .edition--knihy .edition-stream,
    .edition--film-a-serialy .edition-stream { display: block; margin-top: 0; border-top: 2px solid currentColor; }
    .edition-item,
    .edition--knihy .edition-item,
    .edition--film-a-serialy .edition-item,
    .edition--kam-ist .edition-item { display: block; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .edition--hudba .edition-item { border-bottom-color: #484047; }
    .edition--film-a-serialy .edition-item { border-bottom-color: rgba(255,255,255,.32); }
    .edition-item .media { width: 100%; margin: 0 0 14px; aspect-ratio: 16 / 9; }
    .edition-item h3,
    .edition--knihy .edition-item h3,
    .edition--film-a-serialy .edition-item h3,
    .edition--kam-ist .edition-item h3 { font-size: 29px; line-height: 1.02; }
    .ad-slot--billboard { width: min(calc(100% - 28px), 320px); }

    .breadcrumbs { padding-block: 7px; font-size: 9px; white-space: nowrap; overflow-x: auto; }
    .archive-header { display: block; padding: 31px 0 24px; border-bottom-width: 6px; }
    .archive-header h1 { font-size: 61px; }
    .archive-description { margin-top: 17px; font-size: 16px; }
    .archive-topics { gap: 22px; }
    .archive-grid { margin-top: 20px; }
    .archive-card { display: block; padding: 27px 0; }
    .archive-card .media { width: 100%; margin-bottom: 15px; }
    .archive-card h3 { font-size: 34px; line-height: .98; }

    .article-header { padding: 29px 0 23px; }
    .article-header h1 { font-size: clamp(46px, 12vw, 61px); line-height: .92; }
    .article-dek { margin-top: 18px; font-size: 20px; }
    .byline { gap: 6px 13px; margin-top: 21px; padding-top: 12px; border-top-width: 5px; }
    .article-image::after { height: 6px; }
    .article-body { margin-top: 27px; font-size: 19px; line-height: 1.66; }
    .entry-content .alignleft, .entry-content .alignright { float: none; max-width: 100%; margin-inline: auto; }
    .entry-content h2 { font-size: 30px; }
    .entry-content h3 { font-size: 26px; }
    .entry-content blockquote { padding-left: 18px; border-left-width: 5px; font-size: 25px; }
    .article-end { margin-top: 37px; border-top-width: 5px; }
    .article-view > .portal-section { margin-top: 58px; }
    .editorial-heading { border-top-width: 6px; }
    .editorial-heading h2 { font-size: 44px; }
    .story-grid { display: block; }
    .story-grid .story-card { padding: 27px 0; border-left: 0; border-bottom: 1px solid var(--line); }
    .story-grid .story-card:first-child { padding-top: 0; }
    .story-grid .media { width: 100%; }
    .story-grid h3 { font-size: 29px; }

    .page-shell { padding-top: 28px; }
    .page-header { margin-bottom: 24px; padding-bottom: 19px; border-bottom-width: 6px; }
    .page-header::before { width: 110px; height: 6px; margin-bottom: 18px; }
    .page-header h1 { font-size: 59px; }
    .page-body { font-size: 18px; }
    .page-body > p:first-child { font-size: 19px; }
    .search-row { display: grid; }
    .search-row button { width: 100%; }

    .portal-dialog { width: 100%; max-width: none; padding: 0 18px 34px; border-left: 0; border-top: 7px solid var(--wine); }
    .dialog-head { min-height: 82px; }
    .portal-dialog .brand { width: 200px; }
    .dialog-close span { display: none; }
    .dialog-nav .portal-menu a { min-height: 65px; font-size: 38px; }
    .search-dialog-body { margin-top: 42px; }
    .search-dialog-body h2 { font-size: 65px; }

    .footer-inner { padding-top: 41px; }
    .site-footer .brand { width: 245px; }
    .footer-sections .portal-menu { gap: 0 22px; }
    .footer-sections .portal-menu a { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .media img, .cover-story-media img, .pulse-media img, .ad-slot { transition: none; }
    article:hover > .media img, article:hover .media img, .cover-story-media:hover img, .pulse-story:hover .pulse-media img { transform: none; }
}

@media (prefers-contrast: more) {
    :root { --wine: #650025; --muted: #353035; --line: #5d565b; }
}

@media (forced-colors: active) {
    .cover-story-media, .article-image, .edition, .site-footer, .masthead-nav-shell, .pulse { forced-color-adjust: auto; }
    .cover-story-context > span::after, .article-image::after, .site-footer::before, .edition::before, .page-header::before { background: CanvasText; }
}

@media print {
    .site-header, .site-footer, .portal-dialog, .ad-slot, .breadcrumbs, .article-end, .portal-section { display: none !important; }
    body, .site-canvas { color: #000; background: #fff; border: 0; }
    .container, .article-header, .article-image, .article-body, .page-shell { width: 100%; max-width: none; }
    .article-header h1 { font-size: 31pt; }
    .article-body { font-size: 12pt; }
}
