/* ============================================================
   Xiaomi Promo 3 — drobné doplňky nad původním app.css
   Vzhled sekcí řídí app/dist/app.css (stejné třídy jako šablona 2);
   tady jsou jen věci, které v původní React verzi neexistují:
   karty skupin jako odkazy, přepínač modelů ve formuláři.
   ============================================================ */

/* Blokový obsah — sekce si šířku řídí samy přes .container */
.xp-content > * {
    max-width: none;
}

/* Karta skupiny je odkaz (v React verzi <article> s onClick) */
a.gift-card {
    text-decoration: none;
    color: inherit;
}

/* Telefony ve skupině pod názvem akce */
.gift-card-models {
    font-size: 13px;
    color: var(--c-muted);
    margin-top: 2px;
}

/* Karta skupiny — název akce místo loga modelu */
.gift-card-model strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-ink);
}

/* Obrázek dárku v kartě má stejný rozměr jako v React verzi (140×140) */
.gift-card-art img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
}

/* Přepínač telefonů nad formulářem (skupina s více modely) */

/* Nadpis kampaně v hero (v React verzi renderován jako obrázek loga modelu) */
.hero-title {
    font-size: clamp(30px, 4.5vw, 46px);
    line-height: 1.12;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--c-ink);
}

.home-h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 700;
    margin: 6px 0 10px;
    color: var(--c-ink);
}

/* WP admin bar nesmí překrývat sticky hlavičku */
.admin-bar .hdr {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .hdr {
        top: 46px;
    }
}


/* ============================================================
   Nativní bloky místo HTML sekcí
   Benefity, kroky „Jak to funguje" a FAQ se skládají z běžných
   Gutenberg bloků (sloupce / nadpisy / odstavce / rozbalovací
   podrobnosti), aby šly editovat bez otevírání HTML. Tyhle
   pravidla je vizuálně srovnávají s původním designem.
   ============================================================ */

/* ── Benefity: wp:columns místo .benefits-grid ── */
/* Dlaždice mají pevnou šířku a řadí se doprostřed, takže sekce se dvěma
   benefity nevypadá prázdně a s pěti se neslepí — wp:columns jinak dělí
   šířku rovným dílem podle počtu sloupců. */
.benefits-cols {
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefits .benefit {
    text-align: center;
    padding: 8px;
    flex: 0 1 300px;
    max-width: 300px;
}

.benefits .benefit-logo {
    margin: 0 auto 18px;
}

.benefits .benefit-logo img {
    margin: 0 auto;
}

/* ── Kroky: wp:columns místo .steps ── */
.steps-cols {
    gap: 28px;
}

.steps-cols .step {
    text-align: center;
    padding: 0 8px;
}

/* Ikona kroku: kolečko i symbol kreslí CSS z třídy sloupce (step--cart …),
   takže v editoru není žádný pomocný blok a symbol dědí barvu vzhledu. */
.steps-cols .step::before {
    content: "";
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--c-bg-soft);
    border: 1px solid var(--c-line);
}

.steps-cols .step::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-green);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.steps-cols .step {
    position: relative;
}


/* Symboly kroků (maska → dědí barvu vzhledu) */
.steps-cols .step--cart::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%205h2l2%2012h11l2-9H6%27%2F%3E%3Ccircle%20cx%3D%279%27%20cy%3D%2720%27%20r%3D%271.4%27%2F%3E%3Ccircle%20cx%3D%2717%27%20cy%3D%2720%27%20r%3D%271.4%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M3%205h2l2%2012h11l2-9H6%27%2F%3E%3Ccircle%20cx%3D%279%27%20cy%3D%2720%27%20r%3D%271.4%27%2F%3E%3Ccircle%20cx%3D%2717%27%20cy%3D%2720%27%20r%3D%271.4%27%2F%3E%3C%2Fsvg%3E"); }
.steps-cols .step--star::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%203l2.6%205.5%206%20.9-4.3%204.2%201%206-5.3-2.8L6.7%2019.6l1-6L3.4%209.4l6-.9z%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M12%203l2.6%205.5%206%20.9-4.3%204.2%201%206-5.3-2.8L6.7%2019.6l1-6L3.4%209.4l6-.9z%27%2F%3E%3C%2Fsvg%3E"); }
.steps-cols .step--doc::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M14%203H7a2%202%200%200%200-2%202v14a2%202%200%200%200%202%202h10a2%202%200%200%200%202-2V8z%27%2F%3E%3Cpath%20d%3D%27M14%203v5h5M9%2013h6M9%2017h4%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M14%203H7a2%202%200%200%200-2%202v14a2%202%200%200%200%202%202h10a2%202%200%200%200%202-2V8z%27%2F%3E%3Cpath%20d%3D%27M14%203v5h5M9%2013h6M9%2017h4%27%2F%3E%3C%2Fsvg%3E"); }
.steps-cols .step--clock::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%2F%3E%3Cpath%20d%3D%27M12%207v5l3%202%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2712%27%20cy%3D%2712%27%20r%3D%279%27%2F%3E%3Cpath%20d%3D%27M12%207v5l3%202%27%2F%3E%3C%2Fsvg%3E"); }
.steps-cols .step--gift::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%278%27%20width%3D%2718%27%20height%3D%275%27%20rx%3D%271%27%2F%3E%3Cpath%20d%3D%27M5%2013v8h14v-8M12%208v13M12%208a3%203%200%201%200-3-3%203%203%200%200%200%203%203zM12%208a3%203%200%201%201%203-3%203%203%200%200%201-3%203z%27%2F%3E%3C%2Fsvg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%271.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%273%27%20y%3D%278%27%20width%3D%2718%27%20height%3D%275%27%20rx%3D%271%27%2F%3E%3Cpath%20d%3D%27M5%2013v8h14v-8M12%208v13M12%208a3%203%200%201%200-3-3%203%203%200%200%200%203%203zM12%208a3%203%200%201%201%203-3%203%203%200%200%201-3%203z%27%2F%3E%3C%2Fsvg%3E"); }

.steps-cols .step h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--c-ink);
}

.steps-cols .step p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--c-muted);
}

/* ── FAQ: wp:details místo <details class="faq-item"> ── */
.faq-item.wp-block-details {
    border-bottom: 1px solid var(--c-line);
    padding: 18px 0;
    margin: 0;
}

.faq-item.wp-block-details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--c-ink);
    user-select: none;
    list-style: none;
}

.faq-item.wp-block-details > summary::-webkit-details-marker {
    display: none;
}

.faq-item.wp-block-details > p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-ink-2);
}

/* ── Stav žádosti ──────────────────────────────────────────────────────
   Veřejná stránka bez přihlášení. Svislá časová osa s daty a časy,
   dárek s fotkou, sledování zásilky u kroku „Odesláno". Barvy z palety
   vzhledu, aby ladila s kampaní. */
.xp-status {
    padding: clamp(28px, 5vw, 64px) 0 clamp(40px, 6vw, 88px);
}

.xp-status .container-narrow {
    max-width: 720px;
}

.xp-status-h {
    margin: 0 0 8px;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.xp-status-lead {
    margin: 0 0 22px;
    color: var(--c-muted);
    max-width: 52ch;
}

.xp-status-error {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--c-info-bg, #fff1e6);
    border: 1px solid var(--c-info-border, #f6d3b3);
    font-size: 14px;
}

.xp-status-demo {
    margin: 0 0 14px;
    padding: 9px 14px;
    border-radius: 10px;
    background: var(--c-bg-soft);
    border: 1px dashed var(--c-line);
    font-size: 13px;
    color: var(--c-muted);
}

/* formulář e-mail + telefon */
.xp-status-form { display: grid; gap: 14px; max-width: 420px; }
.xp-status-field { display: grid; gap: 6px; }
.xp-status-field span { font-size: 13px; font-weight: 600; }
.xp-status-field input {
    padding: 12px 14px;
    border: 1px solid var(--c-line);
    border-radius: 12px;
    font: inherit;
    background: var(--c-surface, #fff);
}
.xp-status-field input::placeholder { color: #a3a7ad; }
.xp-status-field input:focus-visible { outline: 2px solid var(--c-green); outline-offset: 1px; }
.xp-status-hint { font-size: 12px; font-weight: 400; color: var(--c-muted); }
.xp-status-form .cta { justify-self: start; }

/* karta */
.xp-status-card {
    position: relative;
    overflow: hidden;
    padding: clamp(18px, 2.6vw, 30px);
    border: 1px solid var(--c-line);
    border-radius: 22px;
    background: var(--c-surface, #fff);
    box-shadow: 0 10px 40px rgba(20, 22, 26, .06);
}

/* jemný oranžový akcent v rohu — ať karta není holá */
.xp-status-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255, 106, 19, .16), rgba(255, 106, 19, 0));
    pointer-events: none;
}

.xp-status-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-line-soft, #f0f1f4);
}

.xp-status-logo {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.xp-status-headtext {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
}

.xp-status-uid { font-size: 13px; color: var(--c-muted); }
.xp-status-uid strong { color: var(--c-ink); font-weight: 800; letter-spacing: .02em; }
.xp-status-campaign { font-size: 12.5px; color: var(--c-muted); }

.xp-status-badge {
    flex: 0 0 auto;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--c-green);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
}
.xp-status-card.is-rejected .xp-status-badge { background: #b32d2e; }
.xp-status-card.is-delivered .xp-status-badge { background: #17803d; }
.xp-status-card.is-registered .xp-status-badge { background: var(--c-ink); }

/* dárek */
.xp-status-gift {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0 6px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 106, 19, .06);
}
.xp-status-gift img,
.xp-status-gift-ph {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex: 0 0 auto;
    border-radius: 12px;
    background: #fff;
}
.xp-status-gift-ph { background: rgba(255, 106, 19, .12); }
.xp-status-gift div { display: flex; flex-direction: column; gap: 2px; }
.xp-status-gift-lbl { font-size: 12px; color: var(--c-muted); }
.xp-status-gift strong { font-size: 15px; }

/* časová osa */
.xp-timeline {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    position: relative;
}
.xp-tl-step {
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 0 14px;
    padding: 0 0 22px;
}
.xp-tl-step:last-child { padding-bottom: 4px; }

/* spojnice mezi tečkami */
.xp-tl-step::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 24px;
    bottom: -2px;
    width: 2px;
    background: var(--c-line);
}
.xp-tl-step:last-child::before { display: none; }
.xp-tl-step.is-done::before { background: var(--c-green); }
.xp-tl-step.is-done.is-current::before,
.xp-tl-step.is-rejected::before { background: var(--c-line); }

.xp-tl-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--c-line);
    background: var(--c-surface, #fff);
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}
.xp-tl-step.is-done .xp-tl-dot {
    border-color: var(--c-green);
    background: var(--c-green);
}
.xp-tl-step.is-done .xp-tl-dot::after {
    content: "";
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: translateY(-1px) rotate(45deg);
}
.xp-tl-step.is-rejected .xp-tl-dot {
    border-color: #b32d2e;
    background: #b32d2e;
}
.xp-tl-step.is-rejected .xp-tl-dot::after {
    content: "";
    width: 12px;
    height: 2.5px;
    background: #fff;
    border: 0;
    transform: none;
}
.xp-tl-step.is-current .xp-tl-dot { box-shadow: 0 0 0 5px rgba(255, 106, 19, .18); }
.xp-tl-step.is-rejected.is-current .xp-tl-dot { box-shadow: 0 0 0 5px rgba(179, 45, 46, .16); }

.xp-tl-body { min-width: 0; padding-top: 3px; }
.xp-tl-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
    flex-wrap: wrap;
}
.xp-tl-title { font-size: 16px; }
.xp-tl-step.is-pending .xp-tl-title { color: var(--c-muted); font-weight: 600; }
.xp-tl-time {
    font-size: 13px;
    color: var(--c-ink);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.xp-tl-time span { color: var(--c-muted); margin-left: 4px; }
.xp-tl-time--pending { color: var(--c-muted); font-style: italic; }
.xp-tl-desc {
    margin: 4px 0 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--c-muted);
    max-width: 56ch;
}
.xp-tl-reason {
    color: #7a1f20;
    background: #fdf1f1;
    border: 1px solid #f4c7c7;
    border-radius: 10px;
    padding: 8px 12px;
}
.xp-tl-reason span { font-weight: 700; }

.xp-tl-tracking {
    display: flex;
    align-items: center;
    gap: 10px 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}
/* číslo zásilky jako odznak s kopírováním */
.xp-track {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 8px;
    max-width: 100%;
    padding: 5px 5px 5px 12px;
    border: 1px solid var(--c-line, #e4e6eb);
    border-radius: 999px;
    background: #f7f8fa;
    font-size: 13px;
    line-height: 1.2;
    transition: background .18s ease, border-color .18s ease;
}
.xp-track-lbl { color: var(--c-muted); white-space: nowrap; }
.xp-track-val { display: inline-flex; align-items: center; gap: 8px; }
.xp-track-no {
    color: var(--c-ink);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
    white-space: nowrap;
}
.xp-track-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--c-line, #e4e6eb);
    color: var(--c-muted);
    cursor: pointer;
    transition: color .15s ease, box-shadow .15s ease;
}
.xp-track-copy:hover { color: var(--c-ink); box-shadow: inset 0 0 0 1px #cfd3da; }
.xp-track-copy:focus-visible { outline: 2px solid var(--c-green); outline-offset: 2px; }
.xp-track-ico { display: block; }
.xp-track-ico--ok,
.xp-track.is-copied .xp-track-ico--copy { display: none; }
.xp-track.is-copied .xp-track-ico--ok { display: block; }
/* potvrzení jen barvou ikony a textu — pozadí zůstává, ať to sedí k oranžové
   i k zelené paletě skinu */
.xp-track.is-copied .xp-track-copy { color: var(--c-green); box-shadow: inset 0 0 0 1px currentColor; }
.xp-track-done { font-size: 12px; font-weight: 600; color: var(--c-green); padding-right: 6px; white-space: nowrap; }
.xp-track-done:empty { display: none; }
.xp-tl-cta { padding: 9px 16px; font-size: 13px; }

.xp-status-contact {
    margin: 18px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--c-line-soft, #f0f1f4);
    font-size: 13px;
    color: var(--c-muted);
}
/* Váha 600, ne 700: v řezu MiSansLatin-Bold vypadá zavináč jako „&". */
.xp-status-contact a { color: var(--c-green); font-weight: 600; text-decoration: none; }

.xp-status-again { margin: 18px 0 0; font-size: 13px; }

/* přepínač, když má člověk na stejný e-mail a telefon víc žádostí */
.xp-status-switch { margin: 0 0 18px; }
.xp-status-switch-lead { margin: 0 0 10px; font-size: 13.5px; color: var(--c-muted); }
.xp-status-switch ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.xp-status-switch li { margin: 0; }
.xp-sw-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--c-line);
    border-radius: 14px;
    background: var(--c-surface, #fff);
    color: inherit;
    text-decoration: none;
    transition: border-color .15s, box-shadow .15s;
}
a.xp-sw-item:hover,
a.xp-sw-item:focus-visible { border-color: var(--c-green); box-shadow: 0 6px 20px rgba(20, 22, 26, .06); }
.xp-sw-item.is-current { border-color: var(--c-green); box-shadow: inset 0 0 0 1px var(--c-green); }
.xp-sw-item.is-static { opacity: .75; }
.xp-sw-dot { flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%; background: var(--c-green); }
.xp-sw-dot.is-registered { background: var(--c-ink); }
.xp-sw-dot.is-rejected { background: #b32d2e; }
.xp-sw-dot.is-delivered { background: #17803d; }
.xp-sw-main { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1 1 auto; }
.xp-sw-main strong { font-size: 14px; line-height: 1.25; }
.xp-sw-main small { font-size: 12px; color: var(--c-muted); }
.xp-sw-state { flex: 0 0 auto; font-size: 12px; font-weight: 700; color: var(--c-muted); }
.xp-sw-item.is-current .xp-sw-state { color: var(--c-green); }

@media (max-width: 560px) {
    .xp-status-badge { order: 3; }
    .xp-tl-row { flex-direction: column; align-items: flex-start; gap: 2px; }
}

