/* ============================================================
   pacinky — Editorial Magazine redesign
   Quiet Luxury · Playfair Display headings · Inter body
   Max 1000px · Horizontální nav · Hvězdy · Full-width karty
   ============================================================ */

:root {
    --bg:           #f8f7f4;
    --surface:      #ffffff;
    --border:       #e8e5e0;
    --border-s:     #d4cfc8;
    --text:         #2c2825;
    --text-muted:   #6b6560;
    --text-faint:   #a09890;
    --accent:       #5c6e5b;
    --accent-hov:   #4a5a49;
    --accent-light: #eef2ed;
    --header-bg:    #2c2825;
    --header-text:  #f5f3ef;
    --link:         #5c6e5b;
    --link-hov:     #4a5a49;
    --sh-input:     0 1px 4px rgba(0,0,0,.06) inset;
    --r-sm:         6px;
    --r-md:         10px;
    --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --font:         'Inter', system-ui, -apple-system, sans-serif;
    --lh:           1.8;
    --max-w:        1000px;
    --pad:          24px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol  { list-style: none; }
img     { display: block; max-width: 100%; height: auto; }
html    { scroll-behavior: smooth; }

/* ── Body ────────────────────────────────────────────────────── */
body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: var(--lh);
    color: var(--text);
    background: var(--bg);
    font-weight: 300;
}

/* Sidebar schovat */
aside { display: none !important; }

/* ── Header ──────────────────────────────────────────────────── */
header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

header h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--header-text);
    letter-spacing: 0;
    flex-shrink: 0;
}

header h1 a,
header h1 a:visited {
    color: var(--header-text);
    text-decoration: none;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

header nav a,
header nav a:visited {
    color: rgba(245,243,239,.6);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: var(--r-sm);
    transition: color .15s, background .15s;
    white-space: nowrap;
}

header nav a:hover {
    color: var(--header-text);
    background: rgba(255,255,255,.08);
}

/* ── Main ────────────────────────────────────────────────────── */
main {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad) 80px;
}

/* ── Banner ──────────────────────────────────────────────────── */
.banner {
    width: 100%;
    max-height: 360px;
    overflow: hidden;
    margin-bottom: 56px;
}

.banner img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
}

.banner-text {
    max-width: 900px;
    margin: -36px auto 40px;
    padding: 18px 24px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text);
    font-style: italic;
}
.banner-text a { color: inherit; }

/* ── Naše hvězdy ─────────────────────────────────────────────── */
.hvezdy-pas {
    padding: 0 0 32px;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.hvezdy-nadpis {
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--text-faint);
    margin-bottom: 20px;
}

.hvezdy-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.hvezdy-list::-webkit-scrollbar { height: 4px; }
.hvezdy-list::-webkit-scrollbar-track { background: transparent; }
.hvezdy-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.hvezdy-list > li { flex-shrink: 0; }

.hvezda {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform .2s;
}

.hvezda:hover { transform: translateY(-3px); }

.hvezda-foto {
    width: 90px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 6px;
    background: var(--header-bg);
    flex-shrink: 0;
}

.hvezda-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

/* Karta bez fotky – tmavý neutrální placeholder */
.hvezda-foto--placeholder,
.smecka-foto--placeholder {
    background: linear-gradient(160deg, #3a3530, #2c2825);
}

.hvezda:hover .hvezda-foto img { transform: scale(1.05); }

/* Zesnulí – černobílé, pietní */
.hvezda--in-memoriam .hvezda-foto img {
    filter: grayscale(100%);
    transition: filter .5s ease, transform .35s ease;
}
.hvezda--in-memoriam:hover .hvezda-foto img {
    filter: grayscale(50%);
    transform: scale(1.04);
}
.hvezda--in-memoriam .hvezda-jmeno { color: #aaa; }

.hvezda-jmeno {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
    text-align: center;
    transition: color .15s;
    max-width: 96px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.03em;
}

.hvezda:hover .hvezda-jmeno { color: var(--accent); }

/* ── Sekce Novinky ───────────────────────────────────────────── */
section[aria-labelledby="opustili-nadpis"],
section[aria-label="Úvodní fotografie"] { display: none; }

section[aria-labelledby="novinky-nadpis"] { display: block; }

section[aria-labelledby="novinky-nadpis"] > h2 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--text);
}

/* ── Novinky – Editorial Grid ───────────────────────────────── */
.novinky-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 8px;
    margin-bottom: 40px;
}

/* Karta */
.novinky-grid article {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--header-bg);
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    display: block;
    animation: fadeInUp 0.4s ease both;
    opacity: 0;
}

/* Fotka — celoplošná, na podkladu */
.novinky-grid article > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transition: transform .55s cubic-bezier(.25,.46,.45,.94);
    border-radius: 0;
    max-height: none;
}

.novinky-grid article:hover > img {
    transform: scale(1.06);
}

/* Tmavý gradient přes spodní část */
.novinky-grid article::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.03) 0%,
        rgba(0,0,0,.22) 45%,
        rgba(0,0,0,.80) 100%
    );
    z-index: 1;
    transition: background .3s;
}

.novinky-grid article:hover::after {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.06) 0%,
        rgba(0,0,0,.30) 45%,
        rgba(0,0,0,.88) 100%
    );
}

/* Datum */
.novinky-grid article > time {
    position: absolute;
    z-index: 2;
    bottom: 46px;
    left: 16px;
    right: 16px;
    font-size: 0.63rem;
    font-weight: 400;
    color: rgba(255,255,255,.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    line-height: 1;
}

/* Nadpis */
.novinky-grid article > h3 {
    position: absolute;
    z-index: 2;
    bottom: 14px;
    left: 16px;
    right: 16px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}

.novinky-grid article > h3 a,
.novinky-grid article > h3 a:visited {
    color: #fff;
    text-decoration: none;
}

/* Overlay — celá karta klikatelná */
.novinky-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    text-decoration: none;
}

/* Perex + video schovat v grid módu */
.novinky-grid .perex      { display: none; }
.novinky-grid .video-wrap { display: none; }

/* Animation delays */
.novinky-grid article:nth-of-type(1)  { animation-delay: 0.05s; }
.novinky-grid article:nth-of-type(2)  { animation-delay: 0.10s; }
.novinky-grid article:nth-of-type(3)  { animation-delay: 0.15s; }
.novinky-grid article:nth-of-type(4)  { animation-delay: 0.20s; }
.novinky-grid article:nth-of-type(5)  { animation-delay: 0.25s; }
.novinky-grid article:nth-of-type(6)  { animation-delay: 0.30s; }
.novinky-grid article:nth-of-type(7)  { animation-delay: 0.35s; }
.novinky-grid article:nth-of-type(8)  { animation-delay: 0.40s; }
.novinky-grid article:nth-of-type(9)  { animation-delay: 0.45s; }
.novinky-grid article:nth-of-type(10) { animation-delay: 0.50s; }

/* ── Featured karta (první, 2×2) ─────────────────────────────── */
.novinky-grid article.article--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.novinky-grid article.article--featured > h3 {
    font-size: 1.8rem;
    line-height: 1.1;
    bottom: 28px;
    left: 28px;
    right: 28px;
}

.novinky-grid article.article--featured > time {
    bottom: 84px;
    left: 28px;
    font-size: 0.72rem;
    color: rgba(255,255,255,.7);
}

/* Perex jen u featured (volitelně) — zatím schováno */
/* .novinky-grid article.article--featured .perex { display: block; color: rgba(255,255,255,.75); } */

/* ── Perex (mimo grid – stránky článků) ─────────────────────── */
.perex {
    font-size: 0.94rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.75;
}

.perex p { margin-bottom: 8px; }
.perex p:last-child { margin-bottom: 0; }
.perex b, .perex strong { color: var(--text); font-weight: 500; }

/* ── Stránkování ─────────────────────────────────────────────── */
section[aria-labelledby="novinky-nadpis"] > nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 0;
    margin-top: 0;
}

section[aria-labelledby="novinky-nadpis"] > nav > a,
section[aria-labelledby="novinky-nadpis"] > nav > a:visited {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    background: transparent;
    transition: border-color .15s, color .15s;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

section[aria-labelledby="novinky-nadpis"] > nav > a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

section[aria-labelledby="novinky-nadpis"] > nav ol {
    display: flex;
    gap: 4px;
}

section[aria-labelledby="novinky-nadpis"] > nav ol li a,
section[aria-labelledby="novinky-nadpis"] > nav ol li a:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border);
    background: transparent;
    transition: border-color .12s, color .12s;
}

section[aria-labelledby="novinky-nadpis"] > nav ol li a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

section[aria-labelledby="novinky-nadpis"] > nav ol li[aria-current="page"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 700;
    background: var(--text);
    color: var(--bg);
}

/* ── Globální linky ──────────────────────────────────────────── */
a         { color: var(--link); text-decoration: underline; }
a:visited { color: var(--link); }
a:hover, a:active { color: var(--link-hov); }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
    background: var(--header-bg);
    color: rgba(245,243,239,.5);
    padding: 36px var(--pad) 28px;
    font-size: 0.8rem;
    text-align: center;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 24px;
    margin-bottom: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.footer-nav li { list-style: none; }

footer a,
footer a:visited { color: rgba(245,243,239,.6); text-decoration: none; }
footer a:hover   { color: var(--header-text); }

.footer-copy    { color: rgba(245,243,239,.3); font-size: 0.72rem; margin-top: 6px; }
.footer-counter { color: rgba(245,243,239,.25); font-size: 0.65rem; margin-top: 4px; letter-spacing: 0.04em; }

/* ── Vnitřní stránky ─────────────────────────────────────────── */
.stranka {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 48px 0 40px;
    margin-bottom: 32px;
}

.nadpis-strany {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text);
    margin: 0 auto 12px;
    max-width: 800px;
    letter-spacing: 0;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--text);
}

.popis {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 800px;
}

.odkaz-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.odkaz-list li a,
.odkaz-list li a:visited {
    display: block;
    padding: 10px 0;
    color: var(--link);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 400;
    transition: color .12s;
    border-bottom: 1px solid var(--border);
}

.odkaz-list li a:hover {
    color: var(--link-hov);
}

.archiv-list li a {
    color: var(--text-muted);
}

.archiv-list li a:hover {
    color: var(--link-hov);
}

/* ── Archiv – filtry, hledání, tabulka ───────────────────────── */
.archiv-filtry {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.archiv-btn {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: background .12s, color .12s, border-color .12s;
    letter-spacing: 0.03em;
}

.archiv-btn:hover,
.archiv-btn.aktiv {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.archiv-hledat-wrap {
    margin-bottom: 20px;
}

.archiv-hledat {
    width: 100%;
    max-width: 340px;
    padding: 9px 16px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.9rem;
    font-family: var(--font);
    font-weight: 300;
    background: var(--surface);
    color: var(--text);
    box-shadow: var(--sh-input);
    outline: none;
    transition: border-color .15s;
}

.archiv-hledat:focus {
    border-color: var(--accent);
}

.archiv-tabulka {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}

.archiv-radek {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 9px 4px;
    border-bottom: 1px solid var(--border);
    transition: background .1s;
}

.archiv-radek:hover {
    background: var(--accent-light);
}

.archiv-datum {
    flex-shrink: 0;
    width: 86px;
    font-size: 0.74rem;
    color: var(--text-faint);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.archiv-titulek,
.archiv-titulek:visited {
    flex: 1 1 0;
    min-width: 0;
    color: var(--link);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.archiv-radek:hover .archiv-titulek {
    color: var(--link-hov);
    text-decoration: underline;
}

.archiv-tagy {
    flex-shrink: 0;
    display: flex;
    gap: 4px;
}

.archiv-tag {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: background .12s, color .12s;
}

.archiv-tag:hover,
.archiv-tag:visited:hover {
    background: var(--accent);
    color: #fff;
}

/* Tag filtry — druhá řada pod roky */
.archiv-filtry--tagy {
    margin-top: -8px;
    margin-bottom: 20px;
}

.archiv-btn--tag {
    font-size: 0.75rem;
    border-style: dashed;
}

.archiv-btn--tag.aktiv {
    border-style: solid;
}

/* ── Archiv – stránkování ────────────────────────────────────── */
.archiv-strankovani {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 20px 0 0;
    margin-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
}

.archiv-strankovani a,
.archiv-strankovani a:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-weight: 400;
    color: var(--accent);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    background: transparent;
    transition: background .15s, border-color .15s;
}

.archiv-strankovani a:hover {
    background: var(--accent-light);
    border-color: var(--accent);
}

.archiv-page-cur {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-weight: 700;
    color: var(--bg);
    background: var(--text);
    border: 1px solid var(--text);
    border-radius: var(--r-sm);
}

.archiv-page-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    color: var(--text-faint);
}

.archiv-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    color: var(--text-muted);
}

.stranka .video-wrap {
    margin-bottom: 32px;
}

/* ── Article hero: dvousloupcový layout (fotka + nadpis) ─────── */
/* ── Magazínový layout článku ───────────────────────────────── */
.clanek-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.clanek-h1 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 18px;
    color: var(--text);
}

.clanek-linka {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 24px;
}

.clanek-foto-figure {
    float: left;
    margin: 0 50px 24px 0;
    line-height: 0;
}

.clanek-foto-float {
    display: block;
    width: auto;
    height: auto;
    max-width: 320px;
    max-height: 500px;
    object-fit: cover;
}

.clanek-clearfix {
    clear: both;
}

/* Vnořený stranka-obsah v clanek-wrap — bez vlastního centrování */
.clanek-wrap .stranka-obsah {
    max-width: none;
    margin: 0;
}

/* Clearfix */
.stranka::after {
    content: '';
    display: table;
    clear: both;
}

/* ── Obsah stránek ───────────────────────────────────────────── */
.stranka-obsah {
    font-size: 0.95rem;
    line-height: 1.85;
    font-weight: 300;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
}

/* Perex — první odstavec článku, tučněji a větší */
.clanek-perex {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 20px;
}

.stranka-obsah > h1:first-child {
    display: none;
}

.stranka-obsah h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 32px 0 14px;
}

.stranka-obsah h2 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    clear: both;
}

.stranka-obsah h3 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 22px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    clear: both;
}

.stranka-obsah p {
    margin-bottom: 16px;
}

.stranka-obsah p:last-child { margin-bottom: 0; }

.stranka-obsah ul,
.stranka-obsah ol {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.stranka-obsah ol { list-style: decimal; }

.stranka-obsah li { margin-bottom: 6px; }

.stranka-obsah a,
.stranka-obsah a:visited {
    color: var(--link);
    text-decoration: underline;
}

.stranka-obsah a:hover { color: var(--link-hov); }

.stranka-obsah strong,
.stranka-obsah b { font-weight: 600; }

.stranka-obsah em { font-style: italic; }

/* Obrázky v těle článku */
.stranka-obsah img {
    max-width: 350px;
    width: auto;
    height: auto !important;   /* přebije inline height= z Webnode HTML */
    display: block;
    clear: none;
}

/* Na výšku — floatuje vlevo */
.stranka-obsah img.img-portrait {
    float: left;
    max-width: 260px;
    max-height: 70vh;
    object-fit: cover;
    margin: 0 40px 20px 0;
}

/* Na šířku — floatuje vlevo */
.stranka-obsah img.img-landscape {
    float: left;
    max-width: 300px;
    max-height: 70vh;
    object-fit: cover;
    margin: 0 32px 20px 0;
}

/* Zpětná kompatibilita: staré img-left / img-right */
.stranka-obsah img:not(.img-right):not(.img-portrait):not(.img-landscape):not(.img-center) {
    float: left;
    max-width: 300px;
    margin: 0 32px 20px 0;
}

.stranka-obsah img.img-right {
    float: right;
    max-width: 300px;
    max-height: 70vh;
    object-fit: cover;
    margin: 0 0 20px 32px;
}

.stranka-obsah img.img-center {
    float: none;
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: 20px auto 20px;
    clear: both;
}

/* Clearfix za portrait obrázkem */
.img-clearfix {
    display: flow-root;
    clear: both;
}

/* Clearfix za celým obsahem — čistí floaty fotek po skončení textu */
.stranka-obsah::after {
    content: '';
    display: table;
    clear: both;
}

/* Odstraněno: p:not(:empty)::after { clear: both } — způsobovalo obrovské mezery
   kolem plovoucích fotek, protože každý odstavec se sám vyclearfixoval. */

/* Hero obrázek na stránce (autorka, členové smečky) */
.hero-obrazek {
    text-align: center;
    margin: 0 0 24px 0;
}
.hero-obrazek img {
    max-width: 480px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    float: none !important;
    display: block;
    margin: 0 auto;
}

/* Galerie — skupinka po sobě jdoucích obrázků */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 20px 0;
    clear: both;
}

.image-gallery img {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 280px;
    object-fit: cover;
    margin: 0 !important;
    display: block;
    border-radius: 4px;
}

/* Responsive: při úzkém kontejneru zruš float, fotka přes celou šířku */
@media (max-width: 700px) {
    /* Magazínový layout článku — na mobilu float zruš */
    .clanek-foto-figure {
        float: none;
        margin: 0 0 20px 0;
        width: 100%;
    }
    .clanek-foto-float {
        width: 100%;
        max-width: 100%;
        max-height: 60vh;
        object-fit: cover;
    }
    .clanek-h1 { font-size: 1.6rem; }

    .stranka-obsah img.img-portrait,
    .stranka-obsah img.img-landscape,
    .stranka-obsah img:not(.img-right):not(.img-portrait):not(.img-landscape) {
        float: none;
        max-width: 100%;
        width: 100%;
        margin: 0 0 20px 0;
    }
    .stranka-obsah img.img-right {
        float: none;
        max-width: 100%;
        width: 100%;
        margin: 0 0 20px 0;
    }
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

.stranka-obsah table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin: 16px 0;
}

.stranka-obsah td, .stranka-obsah th {
    padding: 8px 12px;
    border: 1px solid var(--border);
    vertical-align: top;
}

.stranka-obsah th {
    background: var(--bg);
    font-weight: 600;
}

/* ── Smečka – úvod s autorkou ────────────────────────────────── */
.smecka-uvod {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 8px;
}

.smecka-uvod-text {
    flex: 1;
}

.smecka-uvod-text .nadpis-strany { margin-top: 0; }

.smecka-autorka {
    flex-shrink: 0;
    width: 120px;
    display: block;
    text-decoration: none;
    color: var(--text);
}

.smecka-autorka .smecka-foto {
    width: 120px;
}

.smecka-autorka:hover .smecka-foto img { transform: scale(1.05); }

/* ── Smečka – kartičky s fotkami ─────────────────────────────── */
.smecka-skupina-nadpis {
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--text-faint);
    margin: 48px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.smecka-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 8px;
}

.smecka-figure {
    display: block;
    text-decoration: none;
    color: var(--text);
}

.smecka-foto {
    aspect-ratio: 3/4;
    overflow: hidden;
    width: 100%;
    background: var(--bg);
}

.smecka-foto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .45s ease;
}

.smecka-figure:hover .smecka-foto img {
    transform: scale(1.04);
}

.smecka-caption {
    padding: 10px 4px 0;
    text-align: center;
}

.smecka-caption strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

.smecka-caption span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-faint);
    margin-top: 3px;
    letter-spacing: 0.03em;
}

/* Navždy v srdci – černobílé, pietní */
.smecka-morticis .smecka-foto img {
    filter: grayscale(100%);
    transition: filter .6s ease, transform .45s ease;
}

.smecka-morticis .smecka-figure:hover .smecka-foto img {
    filter: grayscale(50%);
    transform: scale(1.03);
}

.smecka-morticis .smecka-caption strong { color: #777; }
.smecka-morticis .smecka-caption span   { color: #aaa; }

/* Starý list (skryt) */
.smecka-list { display: none !important; }
.smecka-karta { display: none !important; }

/* ── Kniha – objednávkový formulář ──────────────────────────── */
.kniha-wrap {
    display: flex;
    justify-content: center;
    padding: 32px 0 60px;
}

.box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    padding: 32px 36px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
}

.box h1 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-sans);
}

.podtitulek {
    margin: 0 0 24px;
    color: var(--text-muted);
    font-size: 0.88em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
}

.box label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.88em;
}

.box input[type="text"],
.box input[type="email"] {
    display: block;
    width: 100%;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fdfcfa;
    font-family: inherit;
    font-size: 0.95em;
    color: var(--text);
    margin-bottom: 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,.05) inset;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
}

.box input[type="text"]:focus,
.box input[type="email"]:focus {
    border-color: #b45309;
    box-shadow: 0 0 0 3px rgba(180,83,9,.12), 0 1px 4px rgba(0,0,0,.05) inset;
}

.box input[type="text"].chyba-pole,
.box input[type="email"].chyba-pole {
    border-color: #d9534f;
    background: #fff5f5;
}

.radio-skupina { display: flex; gap: 12px; margin-bottom: 20px; }

.radio-karta { flex: 1; position: relative; }

.radio-karta input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.radio-karta label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    background: #fdfcfa;
    text-align: center;
    transition: background .15s, border-color .15s, box-shadow .15s;
    font-weight: 400;
    margin-bottom: 0;
}

.radio-karta label:hover { background: #fef3c7; border-color: #b45309; }

.radio-karta input[type="radio"]:checked + label {
    background: #fffbeb;
    border-color: #b45309;
    box-shadow: 0 0 0 2px rgba(180,83,9,.2);
}

.radio-karta .cena { font-size: 1.15em; font-weight: bold; color: #b45309; margin-top: 4px; }
.radio-karta .nazev { font-size: 0.85em; color: #555; font-weight: normal; }

#adresa-blok {
    background: #fef3c7;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 16px 2px;
    margin-bottom: 18px;
}

#adresa-blok .legenda { font-weight: bold; color: #92400e; font-size: 0.9em; margin-bottom: 12px; display: block; }

.pole-radek { display: flex; gap: 12px; }
.pole-radek > div { flex: 1; }

.chyba-text { color: #d9534f; font-size: 0.82em; margin: -14px 0 14px; display: block; }

.alert-chyba {
    background: #fde8e8;
    border: 1px solid #d9534f;
    color: #7a1a1a;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 20px;
}

.btn-objednat {
    background: #b45309;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 32px;
    font-size: 0.95em;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(180,83,9,.25);
    transition: background .15s, box-shadow .15s;
}

.btn-objednat:hover { background: #92400e; box-shadow: 0 4px 12px rgba(180,83,9,.3); }

.potvrzeni-ok { text-align: center; padding: 10px 0 20px; }
.potvrzeni-ok h2 { color: #1a5c28; font-size: 1.3em; margin-bottom: 6px; }

.platba-tabulka { width: 100%; border-collapse: collapse; font-size: 0.9em; margin: 0 0 16px; text-align: left; }
.platba-tabulka td { padding: 5px 12px 5px 0; border-bottom: 1px solid var(--border); }
.platba-tabulka td:first-child { color: #666; white-space: nowrap; width: 1%; }

.qr-wrap { text-align: center; margin: 16px 0; }
.qr-wrap img { border: 1px solid var(--border); border-radius: 12px; background: #fff; padding: 6px; }
.qr-wrap small { display: block; color: #888; margin-top: 6px; font-size: 0.8em; }

.zpet { display: inline-block; margin-top: 14px; color: #b45309; text-decoration: none; font-size: 0.9em; }
.zpet:hover { text-decoration: underline; }

/* ── Video embed ─────────────────────────────────────────────── */
.video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 12px 0 8px;
    background: #000;
    overflow: hidden;
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Animace ─────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .novinky-grid article { animation: none; opacity: 1; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 600px) {
    .stranka-obsah img,
    .stranka-obsah img:not(.img-right),
    .stranka-obsah img.img-right {
        float: none;
        max-width: 100% !important;
        width: 100%;
        margin: 10px 0;
    }
    .smecka-masonry { gap: 16px; }
    .smecka-uvod { flex-direction: column; gap: 20px; }
    .smecka-autorka, .smecka-autorka .smecka-foto { width: 100px; }
    .novinky-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .novinky-grid article.article--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .novinky-grid article.article--featured > h3 { font-size: 1.3rem; bottom: 20px; left: 16px; right: 16px; }
    .novinky-grid article.article--featured > time { bottom: 58px; left: 16px; }
}

@media (max-width: 680px) {
    .header-inner { height: 56px; }
    header h1 { font-size: 1.2rem; }
    header nav a { padding: 4px 8px; font-size: 0.68rem; }
    main { padding: 0 16px 48px; }
    .banner { max-height: 220px; }
    .banner img { height: 220px; }
    .hvezdy-pas { padding: 0 0 24px; margin-bottom: 40px; }
    .clanek-foto { float: none; width: 100%; margin: 0 0 20px; }
    .clanek-foto img { max-height: none; }
    .nadpis-strany { font-size: 1.55rem; }
    .smecka-masonry { gap: 14px; }
    .novinky-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 210px;
        gap: 6px;
    }
    .novinky-grid article.article--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .novinky-grid article.article--featured > h3 { font-size: 1.25rem; bottom: 18px; left: 16px; right: 16px; }
    .novinky-grid article.article--featured > time { bottom: 54px; left: 16px; }
}

@media (max-width: 400px) {
    .smecka-masonry { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ══════════════════════════════════════════════════════════════
   KNIHA — Landing Page
   ══════════════════════════════════════════════════════════════ */

/* ── Scroll fade-in animace ── */
.lp-fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}
.lp-fade.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Wrap (full-width, bez omezení main) ── */
body:has(.lp-wrap) main { padding: 0; max-width: none; }
.lp-wrap { width: 100%; overflow-x: hidden; }

/* ── Sdílený centrovací inner ── */
.lp-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ══ 1. HERO ══════════════════════════════════════════════════ */
.lp-hero {
    padding: 64px 0 80px;
    background: var(--bg);
}

.lp-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    gap: 72px;
    align-items: flex-start;
}

/* Obálka knihy */
.lp-cover-col { flex: 0 0 260px; }

.lp-cover-box {
    border-radius: 4px 14px 14px 4px;
    box-shadow:
        -7px 7px 0 0 #c8bfb4,
        5px 16px 48px rgba(0,0,0,.30),
        0 2px 10px rgba(0,0,0,.18);
    line-height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #2c2825, #4a3f35);
}

.lp-cover-img {
    display: block;
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 2px 12px 12px 2px;
}

.lp-cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
    gap: 10px;
    background: linear-gradient(145deg, #2c2825 0%, #4a3f35 55%, #5c6e5b 100%);
    color: #f5f3ef;
}

.lp-cover-placeholder strong {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
}

.lp-cover-placeholder span {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(245,243,239,.5);
}

.lp-cover-placeholder small {
    font-size: .62rem;
    color: rgba(245,243,239,.3);
    margin-top: 14px;
    line-height: 1.5;
}

/* Intro text */
.lp-intro-col { flex: 1; padding-top: 10px; }

.lp-overline {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.lp-h1 {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 12px;
}

.lp-tagline {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.lp-perex {
    font-size: 1.04rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text);
    max-width: 460px;
    margin-bottom: 38px;
}

/* CTA tlačítka */
.lp-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 13px;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}

.lp-btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(92,110,91,.32);
}
.lp-btn--primary:hover,
.lp-btn--primary:visited { color: #fff; }
.lp-btn--primary:hover {
    background: var(--accent-hov);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(92,110,91,.4);
}

.lp-btn--secondary {
    background: var(--surface);
    color: #b45309;
    border: 1.5px solid #b45309;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.lp-btn--secondary:visited { color: #b45309; }
.lp-btn--secondary:hover {
    background: #fffbeb;
    color: #92400e;
    border-color: #92400e;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(180,83,9,.18);
}

/* ══ Sekce — sdílené ═════════════════════════════════════════ */
.lp-sec {
    padding: 76px 0;
}

.lp-sec--alt { background: var(--surface); }

.lp-sec-h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text);
    text-align: center;
    margin-bottom: 44px;
}

.lp-sec-h2::after {
    content: '';
    display: block;
    width: 38px;
    height: 2px;
    background: var(--accent);
    margin: 14px auto 0;
    border-radius: 1px;
}

/* ══ 2. O ČEM KNIHA JE ══════════════════════════════════════ */
.lp-about-text {
    max-width: 640px;
    margin: 0 auto 52px;
    font-size: 1.03rem;
    font-weight: 300;
    line-height: 1.95;
    color: var(--text);
    text-align: center;
}

.lp-quote {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    padding: 12px 32px 12px 72px;
    font-family: var(--font-serif);
    font-size: 1.22rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    border-left: 3px solid var(--accent);
}

.lp-quote::before {
    content: '\201E';
    position: absolute;
    left: 10px;
    top: -32px;
    font-family: var(--font-serif);
    font-size: 7rem;
    line-height: 1;
    color: var(--accent);
    opacity: .22;
}

.lp-quote footer {
    background: none;
    padding: 0;
    text-align: left;
    font-size: .82rem;
    font-style: normal;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 16px;
    letter-spacing: .04em;
}

/* ══ 3. BENTO GRID ═══════════════════════════════════════════ */
.lp-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lp-bento-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    transition: box-shadow .2s ease, transform .2s ease;
}

.lp-bento-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

.lp-bento-icon {
    display: block;
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.lp-bento-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
    line-height: 1;
}

.lp-bento-label {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.lp-bento-value {
    font-size: .9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══ 4. GALERIE / PŘEHLED ════════════════════════════════════ */
.lp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.lp-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    cursor: pointer;
    background: var(--header-bg);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: none;
    max-height: none;
    transition: transform .45s ease;
    border-radius: 0;
}

.lp-gallery-item:hover img { transform: scale(1.07); }

.lp-gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,40,37,.45);
    opacity: 0;
    transition: opacity .25s;
    border-radius: 0;
}

.lp-gallery-item:hover .lp-gal-overlay { opacity: 1; }

.lp-gal-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity .25s;
    z-index: 1;
}

.lp-gallery-item:hover .lp-gal-zoom { opacity: 1; }

/* Placeholder karta (bez obrázku) */
.lp-gallery-ph { cursor: default; }
.lp-gallery-ph .lp-gal-overlay { display: none; }
.lp-gal-ph-label {
    font-size: .7rem;
    color: rgba(245,243,239,.3);
    text-align: center;
    padding: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.7;
}

.lp-gallery-hint {
    text-align: center;
    margin-top: 18px;
    font-size: .8rem;
    color: var(--text-faint);
    letter-spacing: .04em;
}

/* ══ LIGHTBOX ════════════════════════════════════════════════ */
.lp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lp-lightbox.lp-lb-open { display: flex; }

.lp-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 60px rgba(0,0,0,.7);
    display: block;
}

.lp-lb-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2.6rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 4px;
    opacity: .7;
    transition: opacity .15s;
}

.lp-lb-close:hover { opacity: 1; }

/* ══ 5. FORMULÁŘ ════════════════════════════════════════════ */
.lp-form-sec {
    background: #faf9f6;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lp-form-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.lp-form-h2 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text);
    text-align: center;
    margin-bottom: 10px;
}

.lp-form-perex {
    text-align: center;
    font-size: .92rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.lp-form-sec .box {
    background: var(--surface);
    box-shadow: 0 4px 28px rgba(0,0,0,.09);
    border-radius: 16px;
    max-width: none;
}

/* ══ RESPONZIVITA ════════════════════════════════════════════ */
@media (max-width: 760px) {
    .lp-hero-inner {
        flex-direction: column;
        gap: 36px;
        align-items: center;
    }

    .lp-cover-col {
        flex: none;
        width: 200px;
    }

    .lp-intro-col { padding-top: 0; text-align: center; }
    .lp-cta-row { justify-content: center; }
    .lp-perex { margin-left: auto; margin-right: auto; }

    .lp-h1 { font-size: 2.4rem; }
    .lp-tagline { font-size: 1.1rem; }

    .lp-bento { grid-template-columns: 1fr; gap: 14px; }

    .lp-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .lp-hero { padding: 44px 0 56px; }
    .lp-sec  { padding: 52px 0; }
    .lp-h1   { font-size: 2rem; }
    .lp-btn  { padding: 12px 22px; font-size: .88rem; }
    .lp-cta-row { flex-direction: column; align-items: stretch; }
    .lp-btn  { justify-content: center; }
    .lp-quote { padding-left: 48px; font-size: 1.05rem; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
    .video-wrap, aside, .hvezdy-pas, header nav, footer { display: none; }
    body { background: #fff; color: #000; }
    main { max-width: none; padding: 0; }
    .novinky-grid { display: block; }
    .novinky-grid article { break-inside: avoid; animation: none; opacity: 1; min-height: 0; }
    .novinky-grid article > img { position: static; width: 100%; height: auto; }
    .novinky-grid article::after { display: none; }
    .novinky-grid article > h3,
    .novinky-grid article > time { position: static; color: #000; padding: 4px 0; }
    a { color: #000; }
}
