/* moco cloud — fonts, app shell, and Radzen fine-tuning on top of the tokens. */

/* ---------- Fonts (Geist + Geist Mono, OFL — Entscheidung 2026-07-10) ---------- */
@font-face {
    font-family: 'Geist';
    src: url('../fonts/geist-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geist';
    src: url('../fonts/geist-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geist';
    src: url('../fonts/geist-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geist';
    src: url('../fonts/geist-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geist Mono';
    src: url('../fonts/geist-mono-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html {
    background-color: var(--moco-bg); /* prevents white flash on route transitions */
}

body {
    margin: 0;
    font-family: 'Geist', system-ui, sans-serif;
    background-color: var(--moco-bg);
    background-image: none; /* Radzen standard theme ships a decorative gradient — moco uses flat token surfaces */
    color: var(--moco-text);
}

:root {
    --rz-text-font-family: 'Geist', system-ui, sans-serif;
}

.moco-mono {
    font-family: 'Geist Mono', ui-monospace, 'Cascadia Mono', 'Consolas', monospace;
}

a { color: var(--moco-link); }

/* ---------- App shell (rework 2026-07-10: surface bar + collapsible rail) ---------- */
.moco-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.moco-appbar {
    display: flex;
    align-items: center;
    height: 64px;
    flex-shrink: 0;
    padding: 0 16px 0 20px;
    background: var(--moco-surface);
    border-bottom: 1px solid var(--moco-divider);
}

/* Fixed logo zone: separator/context must not jump with the eyebrow length.
   210px + 20px bar padding = 230px -> separator sits on the sidebar edge.
   Benchmark label "Dialoge & Notifications" (188px) fits; longer ones ellipse. */
.moco-appbar-logo { display: flex; align-items: center; width: 210px; flex-shrink: 0; min-width: 0; }

.moco-appbar-sep {
    width: 1px;
    height: 28px;
    background: var(--moco-divider);
    margin: 0 16px;
    flex-shrink: 0;
}

.moco-appbar-context { display: flex; align-items: center; min-width: 0; }

.moco-appbar-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.moco-iconbtn {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--moco-divider);
    background: none;
    cursor: pointer;
    color: var(--moco-text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.moco-iconbtn:hover { background: var(--moco-primary-tint); color: var(--moco-link); }

/* Context selector chip (slot convention, e.g. tenant/site picker) */
.moco-context-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--moco-divider);
    border-radius: var(--moco-radius);
    background: var(--moco-bg);
    padding: 6px 10px;
}
.moco-context-chip .moco-context-label { display: block; font-size: .68rem; color: var(--moco-text-secondary); }
.moco-context-chip .moco-context-value { font-size: .85rem; font-weight: 600; }

.moco-body { display: flex; flex: 1; min-width: 0; }

.moco-sidebar {
    width: 230px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 14px 10px;
    background: var(--moco-surface);
    border-right: 1px solid var(--moco-divider);
}

.moco-sidebar-collapse {
    position: absolute;
    top: 10px;
    right: -11px;
    z-index: 2;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid var(--moco-divider);
    background: var(--moco-surface);
    color: var(--moco-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.moco-sidebar-collapse .rzi { font-size: 15px; transition: transform .15s ease; }
[data-sidebar="collapsed"] .moco-sidebar-collapse .rzi { transform: rotate(180deg); }

.moco-nav {
    display: flex;
    flex-direction: column;
    gap: 6px; /* großzügigere Menüabstände (Mockup 2026-07-10) */
}

.moco-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--moco-radius-control);
    color: var(--moco-text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.moco-nav-link .rzi {
    font-size: 24px; /* icons noticeably larger than the 20px Radzen default (user feedback 2026-07-10) */
}

.moco-nav-link:hover {
    color: var(--moco-text);
}

.moco-nav-link.active {
    background: var(--moco-primary-tint);
    color: var(--moco-primary-strong); /* darker ink than plain links (mockup match 2026-07-10) */
    font-weight: 600;
}

/* Nav entry rendered as a <button> (e.g. logout form in the sidebar footer) —
   resets button chrome so .moco-nav-link styling applies unchanged. */
.moco-nav-button {
    width: 100%;
    border: 0;
    background: none;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.moco-sidebar-footer form { margin: 0; }

.moco-badge-counter {
    margin-left: auto;
    min-width: 20px;
    padding: 1px 7px;
    border-radius: 999px;
    background: var(--moco-badge-bg);
    color: var(--moco-badge-text);
    font-size: .78rem;
    font-weight: 700;
    text-align: center;
}

.moco-sidebar-bottom {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.moco-usercard { border-top: 1px solid var(--moco-divider); margin-top: 8px; padding: 10px 6px 0; }
.moco-usercard-avatar {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--moco-primary-tint);
    color: var(--moco-link);
    font-size: .7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.moco-usercard-text { font-size: .8rem; line-height: 1.25; min-width: 0; }
.moco-usercard-text small { color: var(--moco-text-secondary); display: block; }

/* Collapsed rail */
[data-sidebar="collapsed"] .moco-sidebar { width: 64px; padding: 14px 8px; }
[data-sidebar="collapsed"] .moco-nav-label,
[data-sidebar="collapsed"] .moco-nav-link .moco-badge-counter,
[data-sidebar="collapsed"] .moco-usercard-text,
[data-sidebar="collapsed"] .moco-sidebar-footer .moco-nav-label { display: none; }
[data-sidebar="collapsed"] .moco-nav-link { justify-content: center; padding: 8px; position: relative; }
[data-sidebar="collapsed"] .moco-usercard { display: flex; justify-content: center; padding-left: 0; padding-right: 0; }
[data-sidebar="collapsed"] .moco-usercard > * { justify-content: center; }
[data-sidebar="collapsed"] .moco-nav-link:has(.moco-badge-counter)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--moco-badge-bg);
}

.moco-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.moco-content {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 18px 28px 20px;
    max-width: 1440px;      /* responsive Entscheidung 2026-07-10: zentriert + 1440px */
    margin: 0 auto;
}

.moco-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    /* full-width divider, but the content aligns with the centered column */
    padding: 10px max(28px, calc((100% - 1440px) / 2 + 28px));
    border-top: 1px solid var(--moco-divider);
    font-size: .78rem;
    color: var(--moco-text-secondary);
}
.moco-footer a { color: var(--moco-text-secondary); text-decoration: none; }
.moco-footer a:hover { color: var(--moco-link); }
.moco-footer-version { margin-left: auto; }

/* ---------- Page header (big medium title, subtitle underneath — mockup 2026-07-10) ---------- */
.moco-page-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
}

.moco-page-header-titles { min-width: 0; }

.moco-page-header h1 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.moco-page-header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.moco-page-header-subtitle { font-size: .85rem; color: var(--moco-text-secondary); margin-top: 3px; }

/* ---------- Stat cards (KPI tiles, user mockup 2026-07-10) ---------- */
.moco-stat-card {
    background: var(--moco-surface);
    border: 1px solid var(--moco-divider);
    border-radius: var(--moco-radius);
    box-shadow: var(--moco-shadow);
    padding: 16px 18px;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    flex: 1 1 190px; /* equal widths inside a flex row */
}
.moco-stat-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.moco-stat-label { font-size: .8rem; font-weight: 600; color: var(--moco-text-secondary); }
.moco-stat-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--moco-radius-control);
    background: var(--moco-primary-tint);
    color: var(--moco-link);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.moco-stat-icon .rzi { font-size: 18px; }
.moco-stat-value {
    font-size: 1.75rem;
    font-weight: 750;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    margin: auto 0; /* vertically centered in the free space */
    padding-top: 8px;
}
.moco-stat-unit { font-size: .85rem; font-weight: 500; color: var(--moco-text-secondary); margin-left: 4px; }
.moco-stat-hint { font-size: .75rem; color: var(--moco-text-secondary); margin-top: auto; padding-top: 8px; }

/* ---------- Panel: tile with integrated header (user mockup 2026-07-10) ---------- */
.moco-panel {
    background: var(--moco-surface);
    border: 1px solid var(--moco-divider);
    border-radius: var(--moco-radius);
    box-shadow: var(--moco-shadow);
    margin-bottom: 16px;
}
.moco-panel-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px 0;
}
.moco-panel-title { font-size: 1rem; font-weight: 500; }
.moco-panel-subtitle { font-size: .75rem; color: var(--moco-text-secondary); margin-top: 2px; }
.moco-panel-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.moco-panel-body { padding: 20px 20px 20px; }

/* Nested surfaces inside a panel render flat — the panel IS the tile. */
.moco-panel .rz-card,
.moco-panel .rz-data-grid,
.moco-panel .rz-datatable {
    border: none;
    box-shadow: none;
}

/* ---------- Status chips (Spec: verbindliche Regel, nie Vollton) ---------- */
.moco-chip-success,
.moco-chip-warning,
.moco-chip-error,
.moco-chip-neutral {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.4;
}
.moco-chip-success { background: var(--moco-success-bg); color: var(--moco-success); }
.moco-chip-warning { background: var(--moco-warning-bg); color: var(--moco-warning); }
.moco-chip-error   { background: var(--moco-error-bg);   color: var(--moco-error); }
.moco-chip-neutral { background: var(--moco-surface); color: var(--moco-text-secondary); border: 1px solid var(--moco-divider); }

/* ---------- Form fields: static label ABOVE the input (login-page look) ---------- */
.moco-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.moco-field-label {
    font-size: .85rem;
    color: var(--moco-text-secondary);
    margin-bottom: 4px;
}
.moco-field > :not(.moco-field-label) {
    width: 100%;
}

/* ---------- Simple key/value table (replaces MudSimpleTable) ---------- */
.moco-table {
    border-collapse: collapse;
    width: 100%;
}
.moco-table td {
    padding: 6px 12px 6px 0;
    border-bottom: 1px solid var(--moco-divider);
}
.moco-table td:first-child {
    color: var(--moco-text-secondary);
    width: 220px;
}

/* ---------- Numbers in data contexts (Spec: tabular-nums) ---------- */
.rz-datatable, .rz-data-grid, .moco-table {
    font-variant-numeric: tabular-nums;
}

/* ---------- Pager: slim ghost buttons, pinned to the grid bottom ---------- */
/* Paged grids keep their height across pages: set --moco-grid-min-rows on the
   grid (Style, bound to the current page size) and the data area reserves a
   full page of rows — short last pages no longer collapse the grid.
   84px = data-wrapper padding (47px) + header row (37px); row height 39px. */
.rz-data-grid > .rz-data-grid-data {
    flex: 1 1 auto;
    min-height: calc(var(--moco-grid-min-rows, 0) * 39px + 84px);
}

/* Radzen's pager is float-based (clearfix) — flex centers all parts
   (summary, buttons, page-size dropdown, label) on one vertical axis. */
.rz-pager {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.rz-pager .rz-pager-element {
    min-width: 28px;
    height: 28px;
    min-height: 28px; /* Radzen's button min-height would win otherwise */
    padding: 0 6px;
    border-radius: var(--moco-radius-control);
    background: transparent;
    color: var(--moco-text-secondary);
    box-shadow: none;
}
.rz-pager .rz-pager-element .rzi { font-size: 16px; }
.rz-pager .rz-pager-element:hover:not(.rz-state-disabled):not(.rz-state-active) {
    background: var(--moco-bg);
    color: var(--moco-text);
}
.rz-pager .rz-pager-page.rz-state-active {
    background: var(--moco-primary-tint);
    color: var(--moco-primary-strong);
    font-weight: 600;
}

/* ---------- Radzen fine-tuning: soft-SaaS shapes ---------- */
.rz-button {
    border-radius: var(--moco-radius-control);
}

/* Light buttons: Radzen keeps a light-gray fill (--rz-base-200) in BOTH themes,
   which leaves near-white text unreadable in dark mode — retint via tokens. */
.rz-button.rz-light {
    background-color: var(--moco-divider);
    color: var(--moco-text);
}

.rz-card, .rz-data-grid, .rz-datatable {
    border-radius: var(--moco-radius);
    box-shadow: var(--moco-shadow);
    border: 1px solid var(--moco-divider);
}

.rz-dialog {
    border-radius: var(--moco-radius);
    box-shadow: var(--moco-shadow);
    border: 1px solid var(--moco-divider);
}
.rz-dialog-titlebar { font-weight: 600; }
.rz-dialog-mask { background: var(--moco-backdrop); }

/* Alerts: tinted like the chips (Spec „Dialoge & Snackbars" / Status-Regel) */
.rz-alert { border-radius: var(--moco-radius); border: none; }
/* Radzen colors alert icons via --rz-on-primary* (white) — our alerts are
   tinted, so icons must inherit the alert's text color (like notifications). */
.rz-alert .rz-alert-icon { color: inherit; }
.rz-alert.rz-success { background: var(--moco-success-bg); color: var(--moco-success); }
.rz-alert.rz-warning { background: var(--moco-warning-bg); color: var(--moco-warning); }
.rz-alert.rz-danger  { background: var(--moco-error-bg);   color: var(--moco-error); }
.rz-alert.rz-info    { background: var(--moco-primary-tint); color: var(--moco-link); }

/* Notifications: bottom-right, chip-like tint (Spec) */
.rz-notification {
    top: auto !important;
    bottom: 16px;
    right: 16px;
}
.rz-notification-item {
    border-radius: var(--moco-radius);
    box-shadow: var(--moco-shadow);
}

/* Tinted like the status chips (design spec, „Dialoge & Snackbars") — never solid fills. */
.rz-notification-success .rz-notification-item { background: var(--moco-success-bg); color: var(--moco-success); }
.rz-notification-error .rz-notification-item   { background: var(--moco-error-bg);   color: var(--moco-error); }
.rz-notification-warn .rz-notification-item    { background: var(--moco-warning-bg); color: var(--moco-warning); }
.rz-notification-info .rz-notification-item    { background: var(--moco-primary-tint); color: var(--moco-link); }
.rz-notification-item .rz-notification-title,
.rz-notification-item .rz-notification-message,
.rz-notification-item .rz-notification-icon,
.rz-notification-item .rz-notification-close {
    color: inherit;
}

/* ---------- Focus visibility (a11y) ---------- */
:focus-visible {
    outline: 2px solid var(--moco-primary);
    outline-offset: 2px;
}

/* ---------- Word logo (top bar app identity, rework 2026-07-10) ---------- */
.moco-wordlogo { min-width: 0; max-width: 100%; }
.moco-wordlogo img { height: 18px; display: block; }
[data-theme="dark"] .moco-wordlogo-light { display: none; }
:root:not([data-theme="dark"]) .moco-wordlogo-dark { display: none; }
.moco-wordlogo-eyebrow {
    font-size: .62rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--moco-text-secondary);
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- Wordmark ---------- */
.moco-wordmark { display: inline-flex; color: var(--moco-text); }
.moco-wordmark svg { display: block; }

/* ---------- Static login page (no Radzen loaded there) ---------- */
.moco-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.moco-login-card {
    background: var(--moco-surface);
    border-radius: var(--moco-radius);
    box-shadow: var(--moco-shadow);
    border: 1px solid var(--moco-divider);
    padding: 36px 40px;
    width: min(92vw, 380px);
}
.moco-login-card img { height: 26px; margin-bottom: 26px; }
.moco-login-card label {
    display: block;
    font-size: .85rem;
    color: var(--moco-text-secondary);
    margin: 14px 0 4px;
}
.moco-login-card input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px;
    border: 1px solid var(--moco-divider);
    border-radius: var(--moco-radius-control);
    background: var(--moco-surface);
    color: var(--moco-text);
    font: inherit;
}
.moco-login-card input:focus { border-color: var(--moco-primary); outline: none; }
.moco-login-card button {
    margin-top: 22px;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: var(--moco-radius-control);
    background: var(--moco-primary-strong);
    color: var(--moco-on-primary);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.moco-login-error { color: var(--moco-error); font-size: .9rem; }
/* Wahlfelder im Karten-Formular: die 100%-Breite der Textinputs oben gilt bewusst NICHT für
   Radio/Checkbox — die sitzen inline VOR ihrem Label-Text (Registrierung: Organisationstyp,
   Duplikat-Bestätigung), sonst rutscht der Punkt auf eine eigene vollbreite Zeile. */
.moco-login-card input[type="radio"],
.moco-login-card input[type="checkbox"] {
    width: auto;
    margin: 2px 0 0;
    flex: none;
    accent-color: var(--moco-primary-strong);
}
.moco-choice-row { display: flex; gap: 24px; }
.moco-login-card label.moco-choice {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    margin: 6px 0 0;
    color: var(--moco-text);
    font-size: .95rem;
    cursor: pointer;
}
[data-theme="dark"] .moco-login-logo-light { display: none; }
:root:not([data-theme="dark"]) .moco-login-logo-dark { display: none; }

/* ---------- Anonymous pages (login/register/token redeem outside the shell) ----------
   Layout host for Blazor pages shown to visitors without a session (e.g. Ops'
   AnonymousLayout): centered column with the word logo above the page content,
   no sidebar/app bar. The static admin login keeps using .moco-login-body. */
.moco-anon-shell {
    min-height: 100vh;
    box-sizing: border-box;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.moco-anon-shell .moco-wordlogo { margin-bottom: 10px; }
.moco-anon-shell .moco-wordlogo img { height: 26px; }

/* ---------- Responsive (Entscheidung 2026-07-10: dreistufig) ----------
   >=1024px  volle Sidebar, manuell einklappbar (Chevron, persistiert)
   640-1023  automatische Icon-Rail (Chevron versteckt)
   <640      Off-Canvas-Drawer mit Hamburger + Backdrop                    */

.moco-drawer-toggle { display: none; margin-right: 12px; flex-shrink: 0; }
.moco-drawer-backdrop { display: none; }

/* Panel headers may wrap (search under the title on narrow screens). */
.moco-panel-head { flex-wrap: wrap; }

/* --- Tablet: forced icon rail (same rules as [data-sidebar="collapsed"], the
       manual state; duplicated because CSS media queries cannot add classes) --- */
@media (min-width: 640px) and (max-width: 1023.98px) {
    .moco-sidebar { width: 64px; padding: 14px 8px; }
    .moco-sidebar-collapse { display: none; }
    .moco-nav-label,
    .moco-nav-link .moco-badge-counter,
    .moco-usercard-text,
    .moco-sidebar-footer .moco-nav-label { display: none; }
    .moco-nav-link { justify-content: center; padding: 8px; position: relative; }
    .moco-nav-link:has(.moco-badge-counter)::after {
        content: "";
        position: absolute;
        top: 5px;
        right: 8px;
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: var(--moco-badge-bg);
    }
    .moco-usercard { display: flex; justify-content: center; padding-left: 0; padding-right: 0; }
    .moco-usercard > * { justify-content: center; }
}

/* --- Phone: off-canvas drawer --- */
@media (max-width: 639.98px) {
    .moco-drawer-toggle { display: inline-flex; }
    .moco-sidebar-collapse { display: none; }

    /* Drawer always shows the FULL sidebar — override a persisted rail state. */
    .moco-sidebar,
    html[data-sidebar="collapsed"] .moco-sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 30;
        width: 280px;
        padding: 16px 12px;
        transform: translateX(-105%);
        transition: transform .2s ease;
    }
    html[data-drawer="open"] .moco-sidebar { transform: translateX(0); box-shadow: 0 0 28px rgba(0, 0, 0, .3); }
    html[data-drawer="open"] .moco-drawer-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 25;
        background: var(--moco-backdrop);
    }
    html[data-sidebar="collapsed"] .moco-nav-label,
    html[data-sidebar="collapsed"] .moco-nav-link .moco-badge-counter,
    html[data-sidebar="collapsed"] .moco-usercard-text,
    html[data-sidebar="collapsed"] .moco-sidebar-footer .moco-nav-label { display: revert; }
    html[data-sidebar="collapsed"] .moco-nav-link { justify-content: flex-start; padding: 10px 12px; }
    html[data-sidebar="collapsed"] .moco-nav-link:has(.moco-badge-counter)::after { content: none; }
    html[data-sidebar="collapsed"] .moco-usercard { display: block; padding-left: 6px; padding-right: 6px; }

    /* Compact top bar: hamburger + logo + actions; context chip hidden. */
    .moco-appbar { padding: 0 10px 0 12px; }
    .moco-appbar-logo { width: auto; min-width: 0; flex: 1 1 auto; }
    .moco-appbar-sep, .moco-appbar-context { display: none; }

    .moco-content { padding: 14px 14px 16px; }
    .moco-footer { padding: 10px 14px; flex-wrap: wrap; }
}
