/* ═══════════════════════════════════════════════════════════════════════════
   RespinnersTV — Loterie (Sportka, Eurojackpot, Šťastných 10, Korunka)
   Shared stylesheet for the /loterie hub + individual lottery landing pages.
   On-theme: cyan / magenta / purple. Number-ball motif = distinctive but native.
   Loaded via header.php for pageCSS === 'loterie' || starts with 'loterie-'.
   ═══════════════════════════════════════════════════════════════════════════ */

.lot-page {
    color: var(--text-primary, #e8eaf6);
    --lot-accent: var(--neon-cyan, #00d4ff);
    --lot-accent-2: var(--neon-magenta, #ff2e97);
    overflow-x: clip;   /* pojistka: hero glow ani jiný accent prvek nikdy nezpůsobí horizontální scroll */
}

/* Per-lottery accent theming (set by body wrapper class).
   Drží se on-theme palety webu: cyan / teal / purple / magenta (žádné zlato). */
.lot-page.lot-sportka       { --lot-accent: #00d4ff; --lot-accent-2: #34e5c4; }
.lot-page.lot-eurojackpot   { --lot-accent: #6c7bff; --lot-accent-2: #33c9ff; }
.lot-page.lot-stastnych-10  { --lot-accent: #a35bff; --lot-accent-2: #ff2e97; }
.lot-page.lot-korunka       { --lot-accent: #ff3d9a; --lot-accent-2: #a35bff; }

/* ── Neutralizace globálního `section{display:flex}` z base.css ───────────────
   base.css flexuje každý <section> (row + justify-center) a přidává mu paddingy.
   Naše sekce mají víc přímých potomků → bez tohohle by se poskládaly vedle sebe
   („seo jen vpravo" bug). Scope jen na naše třídy, aby to nesáhlo na .internal-links. */
.lot-page .lot-hero,
.lot-page .lot-section,
.lot-page .lot-disclaimer { display: block; padding-top: 0; padding-bottom: 0; }
.lot-page .lot-hero { padding-bottom: 44px; }
.lot-page .lot-section { padding-top: 52px; }
.lot-page .lot-section:first-of-type { padding-top: 24px; }
.lot-page .lot-disclaimer { padding: 20px 0 56px; }

/* ── Breadcrumb spacing on landing (no review-template wrapper) ──────────── */
.lot-page .breadcrumbs { margin-top: 6px; margin-bottom: 20px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.lot-hero { padding: 8px 0 44px; position: relative; }
/* Jemný accent glow za nadpisem = hloubka a „wow" bez off-theme barev. */
.lot-hero::before {
    content: ''; position: absolute; inset: -50px -30px auto -30px; height: 360px;
    background: radial-gradient(46% 100% at 22% 0%, color-mix(in srgb, var(--lot-accent) 18%, transparent), transparent 72%);
    pointer-events: none; z-index: 0;
}
.lot-hero > * { position: relative; z-index: 1; }
.lot-hero-top { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
.lot-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: var(--lot-accent);
    background: color-mix(in srgb, var(--lot-accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--lot-accent) 30%, transparent);
    border-radius: 999px; padding: .3rem .8rem;
}
.lot-fresh-pill {
    font-size: .72rem; font-weight: 700; color: var(--text-secondary, rgba(232,234,246,.7));
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px; padding: .3rem .8rem;
}
.lot-hero h1 {
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 900; line-height: 1.08;
    margin: 4px 0 14px; letter-spacing: -.01em;
}
.lot-hero h1 span {
    background: linear-gradient(100deg, var(--lot-accent), var(--lot-accent-2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lot-hero-intro {
    font-size: 1.05rem; line-height: 1.75; color: var(--text-secondary, rgba(232,234,246,.78));
    max-width: 760px; margin: 0 0 22px;
}
.lot-hero-intro strong { color: var(--text-primary, #e8eaf6); }

/* Number-ball row (decorative + thematic) */
.lot-balls { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.lot-ball {
    width: 58px; height: 58px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-weight: 900; font-size: 1.35rem; color: #06121f;
    background: radial-gradient(circle at 32% 28%, #fff, var(--lot-accent) 78%);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--lot-accent) 30%, transparent), inset 0 -3px 6px rgba(0,0,0,.28);
    position: relative;
}
.lot-ball--alt { background: radial-gradient(circle at 32% 28%, #fff, var(--lot-accent-2) 78%); box-shadow: 0 4px 14px color-mix(in srgb, var(--lot-accent-2) 30%, transparent), inset 0 -3px 6px rgba(0,0,0,.28); }

/* Hero CTA row */
.lot-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.lot-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-accent, 'Exo 2', sans-serif); font-weight: 800; font-size: .9rem;
    padding: .7rem 1.3rem; border-radius: 10px; text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, opacity .2s;
}
.lot-btn--primary { color: #06121f; background: linear-gradient(100deg, var(--lot-accent), var(--lot-accent-2)); box-shadow: 0 6px 20px color-mix(in srgb, var(--lot-accent) 26%, transparent); }
.lot-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px color-mix(in srgb, var(--lot-accent) 38%, transparent); }
.lot-btn--ghost { color: var(--text-primary, #e8eaf6); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); }
.lot-btn--ghost:hover { border-color: var(--lot-accent); color: var(--lot-accent); }

/* ── Poslední losování (live results) ──────────────────────────────────────── */
.lot-draw {
    margin: 4px 0 24px; padding: 18px 20px; border-radius: 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--lot-accent) 12%, rgba(8,12,28,.96)), rgba(5,5,18,.98));
    border: 1px solid color-mix(in srgb, var(--lot-accent) 30%, transparent);
    box-shadow: 0 14px 44px -14px color-mix(in srgb, var(--lot-accent) 34%, transparent), inset 0 1px 0 rgba(255,255,255,.05);
    max-width: 780px;
}
.lot-draw-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
.lot-draw-title { font-family: var(--font-accent, 'Exo 2', sans-serif); font-weight: 800; font-size: .9rem; letter-spacing: .04em; color: var(--lot-accent); }
.lot-draw-date { font-size: .82rem; font-weight: 600; color: var(--text-secondary, rgba(232,234,246,.7)); }
.lot-draw-rows { display: flex; flex-direction: column; gap: 12px; }
.lot-draw-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lot-draw-label { flex-shrink: 0; min-width: 78px; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--text-secondary, rgba(232,234,246,.55)); }
.lot-balls.lot-balls--sm { display: inline-flex; flex-wrap: wrap; gap: 9px; margin: 0; }
.lot-balls--sm .lot-ball { width: 48px; height: 48px; font-size: 1.08rem; }
.lot-ball--extra { background: radial-gradient(circle at 32% 28%, #fff, var(--lot-accent-2) 78%) !important; box-shadow: 0 3px 10px color-mix(in srgb, var(--lot-accent-2) 30%, transparent), inset 0 -3px 6px rgba(0,0,0,.28) !important; }
.lot-balls-plus { display: inline-flex; align-items: center; font-weight: 800; font-size: 1.1rem; color: var(--text-secondary, rgba(232,234,246,.6)); padding: 0 2px; }
.lot-draw-legend { display: flex; align-items: center; gap: 7px; margin: 12px 0 0; font-size: .76rem; color: var(--text-secondary, rgba(232,234,246,.6)); }
.lot-draw-legend-dot { width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #fff, var(--lot-accent-2) 78%); }
.lot-draw-jackpot { margin: 8px 0 0; font-size: .84rem; color: var(--text-secondary, rgba(232,234,246,.75)); }
.lot-draw-jackpot strong { color: var(--lot-accent); }
.lot-draw-note { margin: 12px 0 0; font-size: .72rem; color: var(--text-secondary, rgba(232,234,246,.45)); line-height: 1.5; }

/* Hub card mini-result line */
.lot-hub-draw { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin: 0 0 14px; font-size: .74rem; color: var(--text-secondary, rgba(232,234,246,.6)); }
.lot-hub-draw b { color: var(--text-primary, #e8eaf6); font-weight: 700; }

/* ── Quick-facts strip ─────────────────────────────────────────────────────── */
.lot-facts {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 8px;
}
.lot-fact {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(8,12,28,.9), rgba(5,5,18,.96));
    border: 1px solid color-mix(in srgb, var(--lot-accent) 16%, transparent);
    border-radius: 14px; padding: 18px 16px;
    transition: transform .15s ease, border-color .2s;
}
.lot-fact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--lot-accent), transparent 85%); }
.lot-fact:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--lot-accent) 34%, transparent); }
.lot-fact-label {
    font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-secondary, rgba(232,234,246,.55)); margin-bottom: 8px;
}
.lot-fact-value {
    font-family: var(--font-accent, 'Exo 2', sans-serif); font-weight: 800; font-size: 1.02rem;
    color: var(--lot-accent); line-height: 1.25;
}
.lot-fact-value small { display: block; font-size: .74rem; font-weight: 600; color: var(--text-secondary, rgba(232,234,246,.6)); margin-top: 3px; }

/* ── Generic section ───────────────────────────────────────────────────────── */
.lot-section { padding-top: 52px; }
.lot-section + .lot-section { border-top: 1px solid rgba(255,255,255,.06); margin-top: 44px; }
.lot-section h2 {
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 1.5rem; font-weight: 800; margin: 0 0 6px; letter-spacing: -.01em;
}
.lot-section h2 span { color: var(--lot-accent); }
.lot-section-sub { color: var(--text-secondary, rgba(232,234,246,.72)); font-size: .95rem; line-height: 1.7; margin: 0 0 22px; max-width: 780px; }
.lot-prose p { color: var(--text-secondary, rgba(232,234,246,.78)); font-size: .95rem; line-height: 1.8; margin: 0 0 14px; max-width: 820px; }
.lot-prose strong { color: var(--text-primary, #e8eaf6); }
.lot-inline-link { color: var(--lot-accent); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--lot-accent) 35%, transparent); }
.lot-inline-link:hover { border-color: var(--lot-accent); }

/* ── Info card grid (how it works / add-on games) ──────────────────────────── */
.lot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lot-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lot-card {
    background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; padding: 20px; transition: border-color .2s, background .2s;
}
.lot-card:hover { border-color: color-mix(in srgb, var(--lot-accent) 32%, transparent); background: color-mix(in srgb, var(--lot-accent) 4%, transparent); }
.lot-card-ico {
    width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 12px; border-radius: 10px; color: var(--lot-accent);
    background: color-mix(in srgb, var(--lot-accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--lot-accent) 26%, transparent);
    font-size: 1.1rem;
}
.lot-card h3 { font-family: var(--font-accent, 'Exo 2', sans-serif); font-size: .98rem; font-weight: 800; margin: 0 0 8px; }
.lot-card p { font-size: .86rem; line-height: 1.65; color: var(--text-secondary, rgba(232,234,246,.68)); margin: 0; }

/* ── Prize / odds table ────────────────────────────────────────────────────── */
.lot-table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid color-mix(in srgb, var(--lot-accent) 16%, transparent); }
.lot-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.lot-table--wide { min-width: 640px; }   /* 5sloupcová srovnávací tabulka na rozcestníku */
.lot-table th {
    background: color-mix(in srgb, var(--lot-accent) 9%, transparent); color: var(--lot-accent);
    font-family: var(--font-accent, 'Exo 2', sans-serif); font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .07em; padding: 12px 16px; text-align: left;
    border-bottom: 1px solid color-mix(in srgb, var(--lot-accent) 16%, transparent); white-space: nowrap;
}
.lot-table td { padding: 12px 16px; font-size: .86rem; color: var(--text-secondary, rgba(232,234,246,.75)); border-bottom: 1px solid rgba(255,255,255,.05); }
.lot-table tr:last-child td { border-bottom: none; }
.lot-table tr:hover td { background: color-mix(in srgb, var(--lot-accent) 3%, transparent); }
.lot-table td:first-child { font-weight: 700; color: var(--text-primary, #e8eaf6); }
.lot-table .lot-top-row td { background: color-mix(in srgb, var(--lot-accent) 6%, transparent); }
.lot-note { margin-top: 12px; font-size: .8rem; color: var(--text-secondary, rgba(232,234,246,.55)); line-height: 1.6; }

/* ── How-to-play steps ─────────────────────────────────────────────────────── */
.lot-steps { display: flex; flex-direction: column; gap: 14px; }
.lot-step { display: flex; gap: 18px; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 18px; }
.lot-step-num {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-accent, 'Exo 2', sans-serif); font-weight: 900; font-size: .95rem; color: #06121f;
    background: linear-gradient(135deg, var(--lot-accent), var(--lot-accent-2));
}
.lot-step h3 { margin: 0 0 5px; font-family: var(--font-accent, 'Exo 2', sans-serif); font-size: .95rem; font-weight: 800; }
.lot-step p { margin: 0; font-size: .87rem; line-height: 1.65; color: var(--text-secondary, rgba(232,234,246,.7)); }

/* ── Tips list ─────────────────────────────────────────────────────────────── */
.lot-tips { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lot-tips li {
    position: relative; padding: 14px 16px 14px 44px; font-size: .87rem; line-height: 1.6;
    color: var(--text-secondary, rgba(232,234,246,.75));
    background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); border-radius: 10px;
}
.lot-tips li::before {
    content: '✓'; position: absolute; left: 14px; top: 13px; width: 20px; height: 20px;
    display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
    font-size: .7rem; font-weight: 800; color: #06121f; background: var(--lot-accent);
}

/* ── "Kde hrát" / cross-sell callout ───────────────────────────────────────── */
.lot-callout {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
    background: linear-gradient(120deg, color-mix(in srgb, var(--lot-accent) 12%, rgba(8,12,28,.95)), rgba(5,5,18,.98));
    border: 1px solid color-mix(in srgb, var(--lot-accent) 28%, transparent);
    border-radius: 16px; padding: 24px 26px;
}
.lot-callout-txt { flex: 1 1 320px; }
.lot-callout-txt h3 { font-family: var(--font-accent, 'Exo 2', sans-serif); font-size: 1.15rem; font-weight: 800; margin: 0 0 6px; }
.lot-callout-txt p { margin: 0; font-size: .88rem; line-height: 1.6; color: var(--text-secondary, rgba(232,234,246,.72)); }

/* ── Bonus karta „kde hrát" (stejná jako na /bonusy, přes bonus-card.php) ────── */
.lot-bonus-lead { margin-bottom: 16px; font-weight: 600; }
.lot-bonus-single { max-width: 660px; margin: 4px auto 0; text-align: left; }
/* Standalone karta (mimo .bp-grid) → zajisti plnou šířku wrapperu a odsazení */
.lot-bonus-single .bonus-card-h { width: 100%; margin: 0; }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.lot-faq-list { display: flex; flex-direction: column; gap: 8px; }
.lot-faq-item { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.lot-faq-item summary { cursor: pointer; padding: 15px 18px; font-weight: 700; font-size: .9rem; color: var(--text-primary, #e8eaf6); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lot-faq-item summary::-webkit-details-marker { display: none; }
.lot-faq-item summary::after { content: '+'; color: var(--lot-accent); font-size: 1.25rem; font-weight: 400; flex-shrink: 0; }
.lot-faq-item[open] summary::after { content: '−'; }
.lot-faq-item[open] { border-color: color-mix(in srgb, var(--lot-accent) 22%, transparent); }
.lot-faq-item .lot-faq-a { margin: 0; padding: 0 18px 16px; font-size: .87rem; color: var(--text-secondary, rgba(232,234,246,.75)); line-height: 1.75; }
.lot-faq-a a { color: var(--lot-accent); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--lot-accent) 30%, transparent); }

/* ── Related lotteries / internal links ────────────────────────────────────── */
.lot-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lot-related-card {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 16px;
    transition: border-color .2s, background .2s, transform .15s;
}
.lot-related-card:hover { border-color: color-mix(in srgb, var(--lot-accent) 30%, transparent); background: color-mix(in srgb, var(--lot-accent) 5%, transparent); transform: translateY(-2px); }
.lot-related-ball {
    width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-accent, 'Exo 2', sans-serif); font-weight: 900; font-size: .82rem; color: #06121f;
    background: radial-gradient(circle at 32% 28%, #fff, var(--lot-accent) 80%);
}
.lot-related-card strong { display: block; font-size: .88rem; font-weight: 800; color: var(--text-primary, #e8eaf6); margin-bottom: 2px; }
.lot-related-card span { font-size: .76rem; color: var(--text-secondary, rgba(232,234,246,.62)); line-height: 1.4; }

/* ── Hub page ──────────────────────────────────────────────────────────────── */
.lot-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lot-hub-card {
    display: flex; flex-direction: column; text-decoration: none; position: relative; overflow: hidden;
    background: linear-gradient(135deg, rgba(8,12,28,.94), rgba(5,5,18,.98));
    border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 24px;
    transition: border-color .2s, transform .15s, box-shadow .2s;
}
.lot-hub-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--hc-accent, #00d4ff) 40%, transparent); box-shadow: 0 12px 34px color-mix(in srgb, var(--hc-accent, #00d4ff) 16%, transparent); }
.lot-hub-card.hc-sportka      { --hc-accent: #00d4ff; }
.lot-hub-card.hc-eurojackpot  { --hc-accent: #6c7bff; }
.lot-hub-card.hc-stastnych-10 { --hc-accent: #a35bff; }
.lot-hub-card.hc-korunka      { --hc-accent: #ff3d9a; }
.lot-hub-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--hc-accent, #00d4ff), transparent 80%); opacity: .85; }
.lot-hub-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.lot-hub-ball {
    width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-accent, 'Exo 2', sans-serif); font-weight: 900; font-size: 1.4rem; color: #06121f;
    background: radial-gradient(circle at 32% 28%, #fff, var(--hc-accent, #00d4ff) 80%);
    box-shadow: inset 0 -3px 6px rgba(0,0,0,.28);
}
.lot-hub-head h2 { font-family: var(--font-accent, 'Exo 2', sans-serif); font-size: 1.3rem; font-weight: 800; margin: 0; color: var(--text-primary, #e8eaf6); }
.lot-hub-head .lot-hub-mech { display: block; font-size: .78rem; font-weight: 600; color: var(--hc-accent, #00d4ff); margin-top: 2px; }
.lot-hub-card > p { font-size: .88rem; line-height: 1.65; color: var(--text-secondary, rgba(232,234,246,.72)); margin: 0 0 16px; flex: 1; }
.lot-hub-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.lot-hub-meta span { font-size: .72rem; font-weight: 700; color: var(--text-secondary, rgba(232,234,246,.7)); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: .25rem .7rem; }
.lot-hub-more { font-family: var(--font-accent, 'Exo 2', sans-serif); font-weight: 800; font-size: .84rem; color: var(--hc-accent, #00d4ff); display: inline-flex; align-items: center; gap: 6px; }

/* ── Disclaimer ────────────────────────────────────────────────────────────── */
.lot-disclaimer { padding: 20px 0 52px; }
.lot-disclaimer p { font-size: .78rem; color: rgba(232,234,246,.42); line-height: 1.6; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 14px 18px; margin: 0; }
.lot-disclaimer a { color: rgba(0,212,255,.7); text-decoration: underline; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
/* ≤1024 tablet: 4→2 facts, 3→2 karty, 4→2 related */
@media (max-width: 1024px) {
    .lot-facts        { grid-template-columns: repeat(2, 1fr); }
    .lot-grid         { grid-template-columns: repeat(2, 1fr); }
    .lot-related-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ≤768 malý tablet / landscape phone */
@media (max-width: 768px) {
    .lot-section          { padding-top: 42px; }
    .lot-grid, .lot-grid--2 { grid-template-columns: 1fr; }
    .lot-hub-grid         { grid-template-columns: 1fr; }
    .lot-callout          { flex-direction: column; align-items: stretch; text-align: center; }
    .lot-callout-txt      { text-align: center; }
    .lot-callout .lot-btn { width: 100%; justify-content: center; }
    .lot-card             { text-align: left; }
    .lot-card-ico         { margin-left: 0; }
    .lot-tips li          { max-width: 100%; }
    .lot-table            { min-width: 520px; }
}
/* ≤560 phone */
@media (max-width: 560px) {
    .lot-section        { padding-top: 34px; }
    .lot-related-grid   { grid-template-columns: 1fr; }
    .lot-step           { flex-direction: column; gap: 10px; }
    .lot-hero h1        { font-size: clamp(1.55rem, 7.2vw, 2.1rem); max-width: none; }
    .lot-section h2     { font-size: 1.28rem; }
    /* dekorativní koule v heru (ne vylosovaná čísla) zmenšit na telefonu */
    .lot-balls:not(.lot-balls--sm) .lot-ball { width: 50px; height: 50px; font-size: 1.2rem; }
}
/* ≤520 „Poslední losování" na střed (label nad koulemi) */
@media (max-width: 520px) {
    .lot-balls--sm .lot-ball  { width: 42px; height: 42px; font-size: 1rem; }
    .lot-balls.lot-balls--sm  { gap: 7px; justify-content: center; }
    .lot-draw                 { padding: 16px 14px; }
    .lot-draw-head            { flex-direction: column; align-items: center; gap: 3px; text-align: center; }
    .lot-draw-row             { justify-content: center; }
    .lot-draw-label           { min-width: 100%; text-align: center; margin-bottom: 2px; }
    .lot-draw-legend          { justify-content: center; }
    .lot-draw-note, .lot-draw-jackpot { text-align: center; }
}
/* ≤460 malý telefon */
@media (max-width: 460px) {
    .lot-facts            { grid-template-columns: 1fr; }
    .lot-hero h1          { max-width: none; }
    .lot-cta-row          { flex-direction: column; align-items: stretch; }
    .lot-cta-row .lot-btn { justify-content: center; }
    .lot-hub-head h2      { font-size: 1.15rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Symetrický, vycentrovaný layout — aby loterie sedly do webu (base.css sekce
   jsou centrované). Nadpisy + krátké podnadpisy na střed s accent podtržítkem,
   dlouhý text zůstává čitelně zarovnaný vlevo v centrovaném sloupci.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero na střed */
.lot-hero { text-align: center; }
.lot-hero-top { justify-content: center; }
.lot-hero h1 { margin-left: auto; margin-right: auto; max-width: 16ch; }
.lot-hero-intro { margin-left: auto; margin-right: auto; }
.lot-balls { justify-content: center; }
.lot-cta-row { justify-content: center; }
.lot-draw { margin-left: auto; margin-right: auto; text-align: left; }

/* Sekce: nadpis na střed + jemné accent podtržítko */
.lot-section { text-align: center; }
.lot-section > h2 { display: inline-block; }
.lot-section > h2::after {
    content: ''; display: block; width: 54px; height: 3px; margin: 13px auto 2px;
    border-radius: 3px; background: linear-gradient(90deg, var(--lot-accent), var(--lot-accent-2));
    box-shadow: 0 0 14px color-mix(in srgb, var(--lot-accent) 45%, transparent);
}
.lot-section-sub { margin-left: auto; margin-right: auto; }
.lot-prose { max-width: 820px; margin-left: auto; margin-right: auto; }
.lot-prose p { max-width: none; }

/* Obsah, který musí zůstat vlevo (čitelnost / rozvržení karet) */
.lot-prose,
.lot-card,
.lot-step > div,
.lot-callout-txt,
.lot-faq-item,
.lot-tips li,
.lot-related-card,
.lot-hub-card,
.lot-table td,
.lot-table th,
.lot-draw { text-align: left; }

/* Karty v gridu: obsah nahoře, ale vizuálně vycentrované ikony pro symetrii */
.lot-card { text-align: center; }
.lot-card-ico { margin-left: auto; margin-right: auto; }

/* Kroky: číslo + text, celý blok vycentrovaný sloupec */
.lot-steps { max-width: 860px; margin-left: auto; margin-right: auto; }

/* FAQ: vycentrovaný sloupec */
.lot-faq-list { max-width: 860px; margin-left: auto; margin-right: auto; }

/* Tipy: symetrické centrované wrapování (lichý poslední prvek se vycentruje) */
.lot-tips { display: flex; flex-wrap: wrap; justify-content: center; }
.lot-tips li { flex: 1 1 320px; max-width: 440px; }

/* „Kompletní průvodce" hlavička (seo-guide) na střed jako zbytek webu */
.lot-page .seo-guide-head { justify-content: center; text-align: center; }

/* Callout (kde hrát) vycentrovaný, uvnitř text vlevo */
.lot-callout { max-width: 960px; margin-left: auto; margin-right: auto; }

