:root {
    --bg: #f4f7fb;
    --bg-soft: #eef4fb;
    --surface: #ffffff;
    --surface-2: #f8fbff;
    --surface-3: #eef5ff;
    --text: #334155;
    --text-strong: #0f172a;
    --muted: #64748b;
    --line: #dbe6f2;
    --line-strong: #c7d7ea;
    --primary: #2563eb;
    --primary-2: #1d4ed8;
    --primary-soft: #eaf2ff;
    --secondary: #4f46e5;
    --secondary-soft: #eef2ff;
    --success: #16a34a;
    --success-soft: #ecfdf3;
    --warning: #d97706;
    --warning-soft: #fff7ed;
    --danger: #e11d48;
    --danger-soft: #fff1f2;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --shadow: 0 18px 42px rgba(15, 23, 42, .08);
    --shadow-soft: 0 12px 28px rgba(15, 23, 42, .05);
    --radius: 24px;
    --radius-sm: 16px;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
    color: var(--text);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

button, input, select, textarea {
    font: inherit;
}

.container {
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
}

.section {
    padding: 72px 0;
}

.site-main {
    min-height: calc(100vh - 240px);
}

.sr-only,
.skip-link {
    position: absolute;
    left: -9999px;
}

    .skip-link:focus {
        left: 16px;
        top: 16px;
        z-index: 2000;
        background: #fff;
        color: var(--text-strong);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 12px 14px;
        box-shadow: var(--shadow-soft);
    }

/* Base visual */
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-card {
    padding: 24px;
}

.card-soft {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
    cursor: pointer;
    transition: .18s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .18);
}

.btn-light {
    background: #fff;
    color: var(--text-strong) !important;
    border-color: var(--line);
}

.btn-dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: #fff !important;
}

.btn-ghost {
    background: transparent;
    color: var(--text-strong) !important;
    border-color: var(--line);
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff !important;
}

.btn-sm {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.badge,
.tag,
.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.badge {
    background: var(--primary-soft);
    color: var(--primary-2);
    border: 1px solid #cfe0ff;
}

.badge-soft {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--muted);
}

.status.success {
    background: var(--success-soft);
    color: #166534;
}

.status.warning {
    background: var(--warning-soft);
    color: #9a3412;
}

.status.info {
    background: var(--secondary-soft);
    color: #4338ca;
}

.status.danger {
    background: var(--danger-soft);
    color: #be123c;
}

.alert {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.65;
}

.alert-success {
    background: var(--success-soft);
    border-color: #bbf7d0;
    color: #166534;
}

.alert-error {
    background: var(--danger-soft);
    border-color: #fecdd3;
    color: #be123c;
}

.alert-info {
    background: var(--primary-soft);
    border-color: #bfdbfe;
    color: var(--primary-2);
}

.field,
.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .field label,
    .form-row label {
        font-size: 13px;
        font-weight: 800;
        color: var(--text);
    }

.input,
.select,
.textarea,
input[type=text],
input[type=email],
input[type=password],
input[type=number],
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0 14px;
    background: #fff;
    color: var(--text-strong);
    outline: none;
    transition: .18s ease;
    box-sizing: border-box;
}

textarea,
.textarea {
    min-height: 120px;
    padding: 14px;
    resize: vertical;
}

    .input:focus,
    .select:focus,
    .textarea:focus,
    input:focus,
    select:focus,
    textarea:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, .10);
    }

.form-help {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.page-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

    .page-top h1,
    .page-top h2 {
        margin: 0;
        color: var(--text-strong);
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: -.02em;
    }

    .page-top h1 {
        font-size: clamp(28px, 4vw, 38px);
    }

    .page-top h2 {
        font-size: clamp(24px, 3vw, 30px);
    }

    .page-top p {
        margin: 8px 0 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.75;
        max-width: 880px;
    }

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.empty-box,
.empty-state {
    padding: 24px;
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
    border: 1px dashed var(--line-strong);
    border-radius: 20px;
    color: var(--muted);
    line-height: 1.75;
}

.kpi-grid,
.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

    .kpi-card,
    .metric-card,
    .metric-grid .card,
    .kpi-grid .card {
        position: relative;
        overflow: hidden;
        padding: 20px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
    }

        .kpi-card small,
        .metric-grid small,
        .metric-card small {
            display: block;
            color: var(--muted);
            margin-bottom: 8px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .05em;
            text-transform: uppercase;
        }

        .kpi-card strong,
        .metric-grid strong,
        .metric-card strong {
            display: block;
            color: var(--text-strong);
            font-size: clamp(28px, 3vw, 34px);
            line-height: 1;
            font-weight: 900;
        }

        .kpi-card span,
        .metric-grid span,
        .metric-card span {
            display: block;
            margin-top: 10px;
            color: var(--muted);
            line-height: 1.55;
            font-size: 13px;
        }

.filter-bar,
.toolbar-card,
.table-card,
.stats-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.filter-bar,
.toolbar-card {
    padding: 18px;
}

.table-card,
.stats-card {
    padding: 22px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 18px;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 780px;
}

    .table thead th {
        background: #f8fbff;
        color: var(--text);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .04em;
        font-weight: 900;
        padding: 14px 12px;
        border-bottom: 1px solid var(--line);
    }

    .table tbody td {
        padding: 14px 12px;
        border-bottom: 1px solid #edf2f7;
        color: var(--text);
        vertical-align: top;
    }

    .table tbody tr:hover {
        background: #fbfdff;
    }

/* Public master */
.site-announcement {
    position: relative;
    z-index: 40;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.site-announcement__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
    padding: 0 12px;
}

.site-announcement__pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 35;
    backdrop-filter: blur(16px);
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 8px 24px rgba(15,23,42,.04);
}

.topbar-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 18px;
}

.brand,
.brand-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(37,99,235,.22);
    flex-shrink: 0;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .brand-copy strong {
        color: var(--text-strong);
        font-size: 16px;
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -0.01em;
    }

    .brand-copy small {
        color: var(--muted);
        font-size: 12px;
        line-height: 1.5;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.topbar-toggle {
    display: none;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text-strong);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.topbar-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    transition: .18s ease;
    white-space: nowrap;
}

    .nav-link:hover {
        background: #f8fafc;
        color: var(--primary);
    }

    .nav-link.is-current {
        background: #eff6ff;
        color: var(--primary);
        border: 1px solid #bfdbfe;
    }

.nav-link-cart {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
}

.nav-actions .btn {
    white-space: nowrap;
}

.footer {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    padding: 34px 0 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-top: 1px solid var(--line);
}

    .footer::before {
        content: "";
        position: absolute;
        top: -70px;
        right: -70px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(37,99,235,.06);
    }

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 18px;
    align-items: start;
}

.footer-card {
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .footer-brand strong,
    .footer-card strong {
        display: block;
        color: var(--text-strong);
        font-size: 17px;
        line-height: 1.2;
        font-weight: 900;
        margin-bottom: 8px;
    }

.footer-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

    .footer-links a {
        color: #334155;
        font-size: 14px;
        font-weight: 700;
    }

        .footer-links a:hover {
            color: var(--primary);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eef2f7;
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .footer-bottom__links a {
        color: var(--muted);
        font-weight: 700;
    }

        .footer-bottom__links a:hover {
            color: var(--primary);
        }

/* Panel master */
body.panel-body {
    background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
    color: var(--text-strong);
}

.app-shell {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 100vh;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--dark) 0%, #111827 40%, var(--dark-2) 100%);
    color: #fff;
    padding: 18px 16px 22px;
    border-right: 1px solid rgba(255,255,255,.06);
}

    .sidebar::-webkit-scrollbar {
        width: 10px;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.12);
        border-radius: 999px;
    }

.brand-sidebar {
    padding: 14px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: 16px;
}

    .brand-sidebar .brand-copy strong,
    .brand-sidebar .brand-copy small {
        color: #fff;
    }

    .brand-sidebar .brand-copy small {
        opacity: .72;
    }

.side-user,
.side-group {
    border-radius: 20px;
    padding: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.side-user {
    margin-bottom: 16px;
}

.side-group {
    margin-bottom: 14px;
}

    .side-group.role-switch {
        background: linear-gradient(180deg, rgba(37,99,235,.14) 0%, rgba(255,255,255,.03) 100%);
        border-color: rgba(37,99,235,.28);
    }

.side-caption,
.side-label {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
}

.side-caption {
    margin-bottom: 6px;
}

.side-label {
    margin-bottom: 10px;
}

.side-user strong,
.side-title {
    display: block;
    color: #fff;
    font-weight: 800;
}

.side-title {
    font-size: .98rem;
    margin-bottom: 4px;
}

.side-helper,
.mini-note {
    color: rgba(255,255,255,.72);
    font-size: .82rem;
    line-height: 1.55;
}

.mini-note {
    display: block;
    margin-top: 8px;
    opacity: .85;
}

.role-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(37,99,235,.18);
    border: 1px solid rgba(37,99,235,.28);
    color: #dbeafe;
    font-weight: 700;
    font-size: .84rem;
}

.side-links,
.role-grid {
    display: grid;
    gap: 8px;
}

.side-link,
.side-action {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    padding: 12px 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: .93rem;
    transition: .18s ease;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.side-link {
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.04);
}

    .side-link:hover,
    .side-action:hover {
        background: rgba(255,255,255,.09);
        border-color: rgba(255,255,255,.10);
        transform: translateY(-1px);
    }

    .side-link.is-current {
        background: rgba(37,99,235,.18) !important;
        border-color: rgba(37,99,235,.34) !important;
        color: #fff !important;
    }

.side-action {
    justify-content: flex-start;
    color: #fff;
    border-color: rgba(255,255,255,.08);
    cursor: pointer;
    background: rgba(255,255,255,.05);
}

    .side-action.primary {
        background: rgba(37,99,235,.16);
        border-color: rgba(37,99,235,.30);
    }

.side-action-danger {
    background: rgba(220,38,38,.14) !important;
    border-color: rgba(220,38,38,.20) !important;
    color: #ffd7d7 !important;
}

.main {
    min-width: 0;
    padding: 24px;
}

.panel-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.panel-topbar__left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.panel-topbar__crumb {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--primary-soft);
    border: 1px solid #cfe0ff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.panel-topbar__title {
    margin: 0;
    color: var(--text-strong);
    font-size: clamp(26px, 4vw, 34px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.03em;
}

.panel-topbar__text {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 860px;
    font-size: 14px;
}

.panel-topbar__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: .18s ease;
    box-sizing: border-box;
}

    .panel-btn.primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
        color: #fff;
        box-shadow: 0 12px 24px rgba(37,99,235,.18);
    }

    .panel-btn.light {
        background: #fff;
        color: var(--text-strong);
        border: 1px solid var(--line);
    }

.panel-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
}

    .panel-banner::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(37,99,235,.08);
    }

.panel-banner__inner {
    position: relative;
    z-index: 2;
}

.panel-banner .badge {
    margin-bottom: 10px;
}

.panel-banner h2 {
    margin: 0 0 8px;
    font-size: 1.58rem;
    line-height: 1.12;
    color: var(--text-strong);
    font-weight: 900;
}

.panel-banner p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 920px;
    font-size: 14px;
}

.panel-mobile-toggle {
    display: none;
    padding: 12px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 70;
}

.btn-mobile {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text-strong);
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.panel-overlay {
    display: none;
}

@media (max-width: 1199px) {
    .topbar-inner {
        grid-template-columns: auto auto;
        gap: 14px;
    }

    .topbar-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .topbar-nav-wrap {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        padding-bottom: 16px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 14px;
    }

        .topbar-nav-wrap.is-open {
            display: flex;
        }

    .nav {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .nav-link {
        justify-content: space-between;
        width: 100%;
        border-radius: 14px;
        min-height: 46px;
        background: #fff;
        border: 1px solid #eef2f7;
    }

    .nav-actions {
        justify-content: stretch;
        flex-direction: column;
    }

        .nav-actions .btn {
            width: 100%;
        }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .panel-mobile-toggle {
        display: block;
    }

    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-102%);
        transition: transform .22s ease;
        z-index: 80;
        width: min(90vw, 340px);
        box-shadow: 24px 0 60px rgba(0,0,0,.30);
    }

        .sidebar.is-open {
            transform: translateX(0);
        }

    .panel-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15,23,42,.45);
        z-index: 75;
    }

        .panel-overlay.is-open {
            display: block;
        }

    .main {
        padding: 16px;
    }

    .panel-banner {
        padding: 18px;
        margin-bottom: 18px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 56px 0;
    }

    .site-announcement__inner {
        min-height: 46px;
        font-size: 12px;
    }

    .topbar-inner {
        min-height: 78px;
    }

    .brand-copy small {
        white-space: normal;
    }

    .footer {
        padding-top: 28px;
    }

    .footer-card {
        padding: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .kpi-grid,
    .metric-grid {
        grid-template-columns: 1fr;
    }
}
