/* ═══════════════════════════════════════════════════════════════════════════
   Community Hub — Design System
   Palette: Warm Red #C41230 · Deep Brown #3B1A0A · Cream #FDF6EE · Gold #D4891A
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:      #C41230;
    --red-dark: #9B0E26;
    --red-light:#FDE8EC;
    --brown:    #3B1A0A;
    --cream:    #FDF6EE;
    --cream-mid:#F5EAD8;
    --gold:     #D4891A;
    --gold-lt:  #FEF3DC;
    --gray:     #6B7280;
    --gray-lt:  #F3F4F6;
    --text:     #1C0A00;
    --white:    #FFFFFF;
    --shadow:   0 2px 18px rgba(60,20,0,.10);
    --radius:   12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Utility ──────────────────────────────────────────────────────────────── */
.container      { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container--sm  { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.text-center    { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform .15s, opacity .15s, background .15s;
    letter-spacing: .01em;
}
.btn:hover { transform: translateY(-1px); opacity: .92; text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--red);   color: var(--white); }
.btn-outline   { background: transparent;  color: var(--red);   border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-gold      { background: var(--gold);  color: var(--white); }
.btn-dark      { background: var(--brown); color: var(--white); }
.btn-success   { background: #16a34a;      color: var(--white); }
.btn-warning   { background: #d97706;      color: var(--white); }
.btn-danger    { background: #dc2626;      color: var(--white); }
.btn-secondary { background: #6b7280;      color: var(--white); }
.btn-sm   { padding: 7px 16px; font-size: .82rem; }
.btn-full { width: 100%; text-align: center; padding: 14px; font-size: 1rem; }

/* ══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════════════════ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--brown);
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.site-nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -.01em;
}

.nav-brand .brand-dot {
    width: 32px; height: 32px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 900; color: #fff;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,.80);
    font-size: .88rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background .15s, color .15s;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,.12);
    color: #fff;
    text-decoration: none;
}

.nav-links .nav-cta a {
    background: var(--red);
    color: #fff;
    padding: 8px 18px;
}
.nav-links .nav-cta a:hover { background: var(--red-dark); }

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
    background: linear-gradient(135deg, var(--brown) 0%, #5a2810 60%, #8B1A1A 100%);
    padding: 88px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fde68a;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -.02em;
}

.hero h1 em { font-style: normal; color: #fde68a; }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.78);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-buttons .btn-outline {
    border-color: rgba(255,255,255,.5);
    color: rgba(255,255,255,.9);
}
.hero-buttons .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ══════════════════════════════════════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════════════════════════════════════ */
section { padding: 72px 0; }

.section-eyebrow {
    display: inline-block;
    background: var(--red-light);
    color: var(--red-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.section-sub {
    color: var(--gray);
    font-size: .97rem;
    max-width: 600px;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════════
   THREE PILLARS (homepage)
   ══════════════════════════════════════════════════════════════════════════ */
.pillars { background: var(--white); }

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pillar-card {
    background: var(--cream);
    border: 1.5px solid var(--cream-mid);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.pillar-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.pillar-icon.red    { background: var(--red-light); }
.pillar-icon.gold   { background: var(--gold-lt);   }
.pillar-icon.brown  { background: var(--cream-mid); }

.pillar-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: .9rem;
    color: var(--gray);
    flex: 1;
    line-height: 1.7;
}

.pillar-card .pillar-link {
    margin-top: 20px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ══════════════════════════════════════════════════════════════════════════
   OUR STORY SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.story { background: var(--cream); }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 48px;
}

.story-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream-mid);
    display: flex; align-items: center; justify-content: center;
}

.story-img-placeholder {
    text-align: center;
    color: var(--gray);
    font-size: .85rem;
    padding: 24px;
}

.story-img-placeholder .icon { font-size: 3rem; margin-bottom: 8px; }

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.stat-pill {
    background: var(--white);
    border: 1.5px solid var(--cream-mid);
    border-radius: 10px;
    padding: 16px 18px;
    text-align: center;
}

.stat-pill strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.stat-pill span {
    font-size: .78rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.team-strip {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid var(--cream-mid);
    flex: 1;
    min-width: 160px;
}

.team-avatar {
    width: 40px; height: 40px;
    background: var(--red-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.team-member h4 { font-size: .85rem; font-weight: 700; color: var(--brown); }
.team-member p  { font-size: .75rem; color: var(--gray); }

/* ══════════════════════════════════════════════════════════════════════════
   DONATION CTA SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.donation-cta {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.donation-cta .section-title { color: var(--white); }
.donation-cta .section-sub   { color: rgba(255,255,255,.80); margin: 0 auto; }

.donation-types {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 36px 0;
    flex-wrap: wrap;
}

.donation-type-pill {
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════════════
   CAREERS SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.careers-band { background: var(--cream-mid); }

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border-radius: 10px;
    padding: 18px;
}

.perk-item .perk-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.perk-item h4 { font-size: .88rem; font-weight: 700; color: var(--brown); margin-bottom: 3px; }
.perk-item p  { font-size: .8rem;  color: var(--gray); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════════════════
   FORM STYLES (shared)
   ══════════════════════════════════════════════════════════════════════════ */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 44px 48px;
}

.form-card .form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 6px;
}

.form-card .form-sub {
    color: var(--gray);
    font-size: .9rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 700;
    font-size: .85rem;
    color: var(--brown);
    margin-bottom: 6px;
}

.form-group label .req { color: var(--red); margin-left: 2px; }

.form-control {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: .93rem;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196,18,48,.10);
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ══════════════════════════════════════════════════════════════════════════
   ALERTS
   ══════════════════════════════════════════════════════════════════════════ */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.5;
}
.alert-success { background: #dcfce7; color: #166534; border-left: 4px solid #22c55e; }
.alert-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-info    { background: var(--gold-lt); color: #78350f; border-left: 4px solid var(--gold); }

/* ══════════════════════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
   ══════════════════════════════════════════════════════════════════════════ */
.page-header {
    background: linear-gradient(135deg, var(--brown) 0%, #5a2810 100%);
    padding: 52px 0 48px;
    text-align: center;
    color: var(--white);
}

.page-header .eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.12);
    color: #fde68a;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.page-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255,255,255,.75);
    font-size: .97rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS STEPS
   ══════════════════════════════════════════════════════════════════════════ */
.how-it-works { background: var(--cream-mid); }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
}

.step {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
}

.step-num {
    width: 44px; height: 44px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    margin: 0 auto 16px;
}

.step h4 { font-size: .95rem; font-weight: 800; color: var(--brown); margin-bottom: 8px; }
.step p  { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════════════
   ADMIN DASHBOARD
   ══════════════════════════════════════════════════════════════════════════ */
.dash-header {
    background: var(--brown);
    padding: 0 32px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dash-header .brand { color: var(--white); font-weight: 800; font-size: 1rem; }
.dash-header .brand span { color: #fde68a; }

.dash-header nav a {
    color: rgba(255,255,255,.75);
    font-size: .85rem;
    font-weight: 600;
    margin-left: 20px;
    transition: color .15s;
}
.dash-header nav a:hover { color: #fff; text-decoration: none; }
.dash-header nav a.active { color: #fde68a; }

.dash-body { padding: 32px; max-width: 1200px; margin: 0 auto; }

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 2px 10px rgba(60,20,0,.07);
    border-top: 3px solid transparent;
}

.stat-card.s-total        { border-color: var(--brown); }
.stat-card.s-submitted    { border-color: #9ca3af; }
.stat-card.s-review       { border-color: var(--gold); }
.stat-card.s-approved     { border-color: #16a34a; }

.stat-card .stat-value {
    font-size: 2.1rem; font-weight: 900; line-height: 1;
    color: var(--brown);
}
.stat-card.s-review   .stat-value { color: var(--gold); }
.stat-card.s-approved .stat-value { color: #16a34a; }

.stat-card .stat-label {
    font-size: .75rem; color: var(--gray); margin-top: 4px;
    font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}

/* Table */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

table {
    width: 100%; border-collapse: collapse;
    background: var(--white); font-size: .88rem;
}

thead th {
    background: var(--brown); color: var(--white);
    padding: 13px 16px; text-align: left;
    font-weight: 700; white-space: nowrap;
}

thead th:first-child { border-radius: 12px 0 0 0; }
thead th:last-child  { border-radius: 0 12px 0 0; }

tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #f5ead8;
    vertical-align: middle;
    color: var(--text);
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--cream); }

/* Badges */
.badge {
    display: inline-block; padding: 3px 11px;
    border-radius: 999px; font-size: .72rem;
    font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
}
.badge-submitted    { background: #e5e7eb; color: #374151; }
.badge-under_review { background: #fef3c7; color: #92400e; }
.badge-approved     { background: #dcfce7; color: #166534; }
.badge-rejected     { background: #fee2e2; color: #991b1b; }

/* Filter bar */
.filter-bar {
    display: flex; gap: 10px; align-items: center;
    margin-bottom: 18px; flex-wrap: wrap;
}
.filter-bar select,
.filter-bar input[type="text"] {
    padding: 9px 12px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: .87rem; color: var(--text);
    font-family: inherit;
}
.filter-bar select:focus,
.filter-bar input:focus { outline: none; border-color: var(--red); }

/* Tabs */
.admin-tabs {
    display: flex; gap: 4px; margin-bottom: 24px;
    border-bottom: 2px solid var(--cream-mid);
}
.admin-tab {
    padding: 10px 20px; font-size: .88rem; font-weight: 700;
    border-radius: 8px 8px 0 0; color: var(--gray);
    cursor: pointer; border: none; background: none;
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    transition: color .15s;
}
.admin-tab.active  { color: var(--red); border-bottom-color: var(--red); }
.admin-tab:hover   { color: var(--brown); }

/* Modal */
.modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(30,10,0,.5); z-index: 200;
    align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }

.modal {
    background: var(--white); border-radius: 16px;
    padding: 36px 40px; width: 100%; max-width: 540px;
    box-shadow: 0 12px 48px rgba(0,0,0,.22);
}
.modal h3 { font-size: 1.15rem; font-weight: 800; color: var(--brown); margin-bottom: 18px; }

/* Detail grid */
.detail-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px 28px; margin-bottom: 22px;
}
.detail-item label {
    font-size: .72rem; font-weight: 800; color: var(--gray);
    text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 3px;
}
.detail-item p { color: var(--text); font-size: .9rem; }

/* Login */
.login-wrap {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--brown) 0%, #5a2810 60%, var(--red-dark) 100%);
    display: flex; align-items: center; justify-content: center;
}

.login-box {
    background: var(--white); border-radius: 16px;
    padding: 44px 48px; width: 100%; max-width: 420px;
    box-shadow: 0 16px 56px rgba(0,0,0,.25);
}

.login-box .logo { text-align: center; margin-bottom: 30px; }
.login-box .logo .logo-icon {
    width: 56px; height: 56px;
    background: var(--red);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; margin: 0 auto 14px;
}
.login-box .logo h1 { font-size: 1.3rem; font-weight: 800; color: var(--brown); }
.login-box .logo p  { color: var(--gray); font-size: .85rem; margin-top: 3px; }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--brown);
    color: rgba(255,255,255,.65);
    padding: 48px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand p {
    font-size: .85rem; margin-top: 10px; line-height: 1.7; max-width: 280px;
}

.footer-col h4 {
    color: var(--white); font-size: .85rem; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: rgba(255,255,255,.60); font-size: .85rem;
    transition: color .15s;
}
.footer-col ul li a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .78rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .pillars-grid  { grid-template-columns: 1fr; }
    .story-grid    { grid-template-columns: 1fr; }
    .perks-grid    { grid-template-columns: 1fr 1fr; }
    .steps         { grid-template-columns: 1fr; }
    .stats-row     { grid-template-columns: 1fr 1fr; }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .form-card { padding: 28px 20px; }
    .form-row  { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .perks-grid  { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .dash-body { padding: 20px 16px; }
}
