/* ==========================================================================
   BLC Mission Builder — Public stylesheet (index.php, mision.php)
   ========================================================================== */

:root {
    /* Tipografia */
    --font: "Bahnschrift", "Rajdhani", "Arial Narrow", Arial, sans-serif;

    /* Fondos */
    --bg:     #060a0c;
    --panel:  #0d1315;
    --panel2: #111920;

    /* Texto */
    --text:  #d0d8d4;
    --muted: #6a7570;

    /* Acentos */
    --y: #f5b21f;
    --r: #e2423a;
    --g: #31d17b;
    --b: #3b7dff;

    /* Bordes */
    --line:   rgba(180,190,185,.14);
    --line-y: rgba(245,178,31,.35);

    /* Radios */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../img/topography-map.svg');
    background-size: 780px;
    opacity: 0.085;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 38% 28% at 92% 6%, rgba(245,178,31,0.09) 0%, transparent 72%),
        radial-gradient(ellipse 32% 24% at 8% 88%, rgba(49,209,123,0.04) 0%, transparent 68%),
        linear-gradient(135deg, rgba(255,255,255,0.01) 0%, transparent 46%, rgba(245,178,31,0.04) 100%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ---------- utility ---------- */
.page-center {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 16px;
}

/* ---------- public header (index.php) ---------- */
.public-header {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--line);
    background: var(--panel);
    padding: 22px 32px;
    text-align: center;
}

.header-logo {
    height: 36px;
    width: auto;
}

.public-header h1 {
    margin: 6px 0 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text);
    text-transform: uppercase;
}

.public-header .active-campaign {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--y);
}

.content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

.campaign-section {
    margin-bottom: 40px;
}

.campaign-section:last-child {
    margin-bottom: 0;
}

.campaign-section h2 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--y);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.mission-card {
    display: block;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.mission-card:hover {
    border-color: var(--y);
    transform: translateY(-2px);
}

.mission-card .chapter-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mission-card .mission-title {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.4;
}

.mission-card .badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ---------- badges / semaphore states (shared) ---------- */
.status-badge,
.outcome-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border: 1px solid currentColor;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.status-in_progress { color: var(--y); }
.status-debriefed { color: var(--g); }

.outcome-success { color: var(--g); }
.outcome-partial { color: var(--y); }
.outcome-failure { color: var(--r); }

.empty-state {
    text-align: center;
    padding: 80px 20px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   Mission detail app shell (mision.php) — "tablet ops console" layout
   ========================================================================== */
.app {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    padding: 12px;
    display: grid;
    grid-template-columns: 230px 1fr;
    grid-template-rows: 44px 1fr 34px;
    gap: 10px;
    overflow: hidden;
}

.app.has-map {
    grid-template-columns: 230px 1fr 420px;
}

.ops-panel {
    background: var(--panel);
    border: 1px solid var(--line);
}

/* ---------- topbar ---------- */
.topbar {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.top-l,
.top-r {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar .secure {
    color: var(--g);
}

.topbar .clock {
    color: var(--y);
    font-variant-numeric: tabular-nums;
    min-width: 58px;
}

/* ---------- sidebar ---------- */
.sidebar {
    grid-row: 2;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.logo-box {
    height: 84px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
    flex-shrink: 0;
}

.logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mission-brief-card {
    border: 1px solid var(--line-y);
    background: rgba(245, 178, 31, 0.06);
    padding: 12px;
    flex-shrink: 0;
}

.brief-kicker {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.mission-brief-card h1 {
    margin: 5px 0 0;
    color: var(--y);
    font-size: 17px;
    line-height: 1.2;
    text-transform: uppercase;
}

.brief-status {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
}

.sdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

.nav {
    border: 1px solid var(--line);
    flex-shrink: 0;
}

.nbtn {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
}

.nbtn:last-child {
    border-bottom: none;
}

.nbtn:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.nbtn.active {
    background: rgba(245, 178, 31, 0.1);
    border-left-color: var(--y);
    color: var(--y);
}

.nbtn.outcome-success.active { background: rgba(49, 209, 123, 0.1); border-left-color: var(--g); color: var(--g); }
.nbtn.outcome-partial.active { background: rgba(245, 178, 31, 0.1); border-left-color: var(--y); color: var(--y); }
.nbtn.outcome-failure.active { background: rgba(226, 66, 58, 0.1); border-left-color: var(--r); color: var(--r); }

.nico {
    width: 14px;
    text-align: center;
    opacity: 0.7;
    font-size: 12px;
}

.nbtn.active .nico {
    opacity: 1;
}

.uinfo {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.back-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--muted);
    padding: 4px 0;
}

.back-link:hover {
    color: var(--y);
}

/* ---------- content (tabbed views) ---------- */
.ops-content {
    grid-row: 2;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.view {
    display: none;
    height: 100%;
    flex-direction: column;
}

.view.active {
    display: flex;
    animation: fade-in 0.2s ease;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: none; }
}

.tb {
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.tb h2 {
    font-size: 22px;
    text-transform: uppercase;
}

.tb .tb-sub {
    color: var(--y);
    font-size: 13px;
    margin-top: 3px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll {
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
}

.scroll::-webkit-scrollbar {
    width: 3px;
}

.scroll::-webkit-scrollbar-thumb {
    background: rgba(180, 190, 185, 0.2);
    border-radius: 2px;
}

/* ---------- map panel (persistent, right column) ---------- */
.map-panel {
    grid-row: 2;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
    color: var(--y);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.map-panel .map-wrap {
    flex-shrink: 0;
}

.map-panel .marker-list {
    flex-shrink: 0;
}

/* ---------- bottombar ---------- */
.bottombar {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.bottombar .sync {
    color: var(--g);
}

.panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 16px;
}

.panel:last-child {
    margin-bottom: 0;
}

.panel-header {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.panel-body {
    font-size: 13px;
    line-height: 1.6;
    white-space: pre-line;
    color: var(--muted);
}

.panel-body.empty {
    opacity: 0.6;
    font-style: italic;
}

/* ---------- debrief semaphore ---------- */
.semaphore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid currentColor;
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.semaphore .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

/* ---------- gallery ---------- */
.gallery-subsection {
    margin-bottom: 24px;
}

.gallery-subsection:last-child {
    margin-bottom: 0;
}

.gallery-subtitle {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.8;
    margin-bottom: 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.gallery-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.gallery-item .caption {
    font-size: 11px;
    padding: 8px 10px;
    color: var(--muted);
    opacity: 0.85;
}

/* ---------- map ---------- */
.map-wrap {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    line-height: 0;
    overflow: hidden;
}

.map-wrap img {
    width: 100%;
    display: block;
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.map-marker .pin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--y);
    border: 2px solid var(--bg);
    box-shadow: 0 0 8px rgba(245, 178, 31, 0.7);
}

.map-marker.type-fob .pin { background: var(--b); box-shadow: 0 0 8px rgba(59, 125, 255, 0.7); }
.map-marker.type-objetivo_principal .pin { background: var(--y); box-shadow: 0 0 8px rgba(245,178,31,0.15); }
.map-marker.type-exfil .pin { background: var(--g); box-shadow: 0 0 8px rgba(49, 209, 123, 0.7); }
.map-marker.type-punto_interes .pin { background: var(--y); box-shadow: 0 0 8px rgba(245, 178, 31, 0.7); }

.map-marker .marker-label {
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(6, 10, 12, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 2px 6px;
    white-space: nowrap;
    color: var(--muted);
}

.marker-list {
    margin-top: 14px;
    font-size: 11px;
}

.marker-list .marker-list-title {
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.marker-list ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    opacity: 0.85;
}

/* ---------- 404 ---------- */
.not-found {
    position: relative;
    z-index: 1;
    text-align: center;
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    max-width: 420px;
}

.not-found .code {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--r);
}

.not-found .message {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.not-found a {
    display: inline-block;
    margin-top: 24px;
    border: 1px solid var(--y);
    border-radius: var(--radius-sm);
    color: var(--y);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 18px;
}

.not-found a:hover {
    background: rgba(245,178,31,0.15);
}

/* ---------- responsive: public listing (index.php) ---------- */
@media (max-width: 640px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .public-header {
        padding: 18px 16px;
    }

    .content {
        padding: 24px 16px 40px;
    }
}

/* ---------- responsive: mission detail app shell (mision.php) ---------- */

/* Tablet intermedio: 2 columnas, mapa apilado debajo */
@media (min-width: 769px) and (max-width: 1100px) {
    .app,
    .app.has-map {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        grid-template-columns: 200px 1fr;
        grid-template-rows: 44px auto auto 34px;
    }

    .sidebar,
    .ops-content {
        grid-row: 2;
    }

    .map-panel {
        grid-column: 1 / -1;
        grid-row: 3;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        overflow: visible;
    }

    .map-panel .map-wrap {
        flex: 1;
    }

    .map-panel .marker-list {
        width: 180px;
        flex-shrink: 0;
    }

    .view {
        height: auto;
    }

    .scroll {
        overflow-y: visible;
        flex: none;
    }
}

/* Movil: nav inferior fija, todo en flujo vertical */
@media (max-width: 768px) {
    html, body {
        height: auto;
    }

    .app,
    .app.has-map {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 0;
        gap: 0;
        overflow: visible;
    }

    .topbar {
        position: sticky;
        top: 0;
        z-index: 100;
        height: 48px;
        padding: 0 12px;
        border-left: none;
        border-right: none;
        border-top: none;
        flex-shrink: 0;
    }

    .sidebar {
        order: 2;
        flex-direction: column;
        gap: 0;
        border: none;
        background: transparent;
        padding: 0;
        overflow: visible;
    }

    .logo-box,
    .uinfo {
        display: none;
    }

    .mission-brief-card {
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 12px;
    }

    .brief-kicker {
        display: none;
    }

    .mission-brief-card h1 {
        font-size: 15px;
        line-height: 1;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brief-status {
        margin-top: 0;
        font-size: 11px;
        flex-shrink: 0;
    }

    .nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 200;
        display: flex;
        flex-direction: row;
        border-top: 1px solid var(--line);
        border-left: none;
        border-right: none;
        border-bottom: none;
        background: var(--panel);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .nbtn {
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 8px 4px;
        border-left: none;
        border-bottom: none;
        border-right: 1px solid var(--line);
        font-size: 9px;
        letter-spacing: 0.04em;
        min-width: 0;
    }

    .nbtn:last-child {
        border-right: none;
    }

    .nbtn.active {
        background: rgba(255, 255, 255, 0.07);
    }

    .nico {
        width: auto;
        font-size: 16px;
    }

    .ops-content {
        order: 3;
        flex: none;
        padding: 16px 14px 84px;
        overflow: visible;
        height: auto;
    }

    .view {
        height: auto;
    }

    .view.active {
        display: flex;
    }

    .scroll {
        overflow: visible;
        flex: none;
    }

    .tb h2 {
        font-size: 19px;
    }

    .map-panel {
        order: 4;
        padding: 14px;
        border-left: none;
        border-right: none;
        border-bottom: none;
        overflow: visible;
    }

    .bottombar {
        display: none;
    }
}

/* ========================================================================== 
   Public index — Mission Builder V3 visual language over current MySQL data
   ========================================================================== */
.public-index-body { min-height:100vh; }
.public-topbar { position:sticky; top:0; z-index:30; height:52px; padding:0 20px; display:flex; align-items:center; justify-content:space-between; background:rgba(8,14,16,.76); border-bottom:1px solid var(--line); backdrop-filter:blur(12px); }
.public-topbar-brand { display:flex; align-items:center; gap:12px; min-width:0; }
.public-topbar-brand img { height:30px; width:auto; object-fit:contain; }
.public-topbar-brand span { display:flex; flex-direction:column; }
.public-topbar-brand strong { color:var(--y); font-size:14px; text-transform:uppercase; letter-spacing:.10em; line-height:1.05; }
.public-topbar-brand small { color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.08em; margin-top:3px; }
.public-topbar-right { display:flex; gap:8px; align-items:center; color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.08em; }
.public-topbar-right #public-clock { color:var(--y); font-family:"Courier New",monospace; margin-left:8px; min-width:58px; }
.live-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--g); box-shadow:0 0 9px rgba(49,209,123,.35); }
.public-wrap { position:relative; z-index:1; max-width:1180px; margin:0 auto; padding:30px 24px 50px; }
.public-page-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; padding-bottom:18px; border-bottom:1px solid var(--line); }
.public-page-heading h1 { margin:0; color:var(--text); font-size:28px; text-transform:uppercase; letter-spacing:.06em; }
.public-page-heading p { margin:4px 0 0; color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.public-last-update { color:var(--muted); font-size:9px; text-align:right; text-transform:uppercase; line-height:1.6; letter-spacing:.06em; }
.public-last-update strong { color:var(--text); font-family:"Courier New",monospace; font-weight:normal; }
.active-campaign-strip { display:flex; align-items:center; gap:7px; margin-top:12px; padding:8px 10px; border:1px solid rgba(49,209,123,.22); background:rgba(49,209,123,.035); color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.07em; }
.active-campaign-strip strong { color:var(--g); font-weight:600; }
.summary-row { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin:18px 0 30px; }
.summary-card { padding:16px 18px; border:1px solid var(--line); background:rgba(13,19,21,.84); }
.summary-n { color:var(--y); font-size:25px; font-weight:700; line-height:1; }
.summary-l { margin-top:6px; color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.09em; }
.public-content { padding:0; }
.public-campaign-section { margin-bottom:32px; }
.public-campaign-heading { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px; padding-bottom:9px; border-bottom:1px solid var(--line); }
.public-campaign-heading h2 { border:0; padding:0; margin:0; color:var(--y); font-size:13px; letter-spacing:.10em; }
.public-campaign-heading span { color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.07em; }
.public-index-body .mission-grid { grid-template-columns:repeat(auto-fill,minmax(245px,1fr)); gap:10px; }
.public-index-body .mission-card { border-radius:0; padding:15px 16px; background:rgba(13,19,21,.88); position:relative; overflow:hidden; }
.public-index-body .mission-card::before { content:''; position:absolute; top:0; left:0; width:2px; height:100%; background:var(--y); opacity:.42; }
.public-index-body .mission-card:hover { transform:translateY(-1px); background:rgba(17,25,32,.96); box-shadow:0 10px 28px rgba(0,0,0,.18); }
.mission-card-top { display:flex; justify-content:space-between; align-items:center; }
.mission-arrow { color:var(--muted); font-size:13px; transition:.15s ease; }.mission-card:hover .mission-arrow{color:var(--y); transform:translate(2px,-2px)}
.public-index-body .chapter-tag { margin:0; font-size:9px; }
.public-index-body .mission-title { margin:8px 0 14px; min-height:38px; font-size:13px; line-height:1.45; text-transform:uppercase; }
.public-footer { margin-top:46px; padding-top:18px; border-top:1px solid var(--line); color:var(--muted); text-align:center; text-transform:uppercase; font-size:9px; line-height:1.9; letter-spacing:.07em; }
@media(max-width:760px){.public-wrap{padding:20px 12px 40px}.public-page-heading{display:block}.public-last-update{text-align:left;margin-top:12px}.summary-row{grid-template-columns:1fr 1fr}.public-topbar{padding:0 12px}.public-topbar-brand small,.public-topbar-right span:not(.live-dot):not(#public-clock){display:none}}
