/* aegis chrome theme — shared by _Layout.cshtml (account dashboard / diagnostic pages)
   and _AuthLayout.cshtml (login / MFA / password reset flows).
   Lives as a same-origin file so CSP style-src 'self' covers it. */

:root {
    --gx-teal: #008897;
    --gx-teal-dark: #006d7a;
    --gx-teal-light: #03C3D8;
    --gx-navy: #383E54;
    --gx-navy-dark: #2c3142;
    --gx-bg: #F5F5F5;
    --gx-border: #E7E7E7;
    --gx-text: #383E54;
    --gx-text-muted: #A7A7A7;
    --gx-success: #0B9E00;
    --gx-error: #C33;
    --gx-warning: #FE9B2B;
    --bs-primary: var(--gx-teal);
    --bs-primary-rgb: 0, 136, 151;
    --bs-link-color: var(--gx-teal);
    --bs-link-hover-color: var(--gx-teal-dark);
}

html, body { height: 100%; }
body {
    font-family: -apple-system, "Segoe UI", system-ui, sans-serif;
    background: var(--gx-bg);
    color: var(--gx-text);
    font-size: 14px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 { color: var(--gx-navy); font-weight: 600; }
h1 { font-size: 1.6rem; margin-bottom: 0.25rem; }

a { color: var(--gx-teal); text-decoration: none; }
a:hover { color: var(--gx-teal-dark); }

/* Aegis brand — composite SVG icon + HTML wordmark. */
.aegis-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.aegis-brand__icon {
    width: 48px; height: 48px;
    background: #1f2a44;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.aegis-brand__icon svg { width: 32px; height: 32px; display: block; }
.aegis-brand__wordmark {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}
.aegis-brand__title {
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: #1f2a44;
    letter-spacing: -0.01em;
}
.aegis-brand__x { color: #0EA5C0; font-weight: 700; }
.aegis-brand__aegis { color: #0EA5C0; font-weight: 400; font-style: italic; }
.aegis-brand__tagline {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ===== _Layout.cshtml chrome (account dashboard / diagnostic pages) ===== */

header.aegis-header {
    background: #fff;
    border-bottom: 1px solid var(--gx-border);
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
}

.avatar-btn {
    background: transparent;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.avatar-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gx-teal);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.avatar-btn:hover .avatar-circle { background: var(--gx-teal-dark); }

main.aegis-main {
    flex: 1;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    min-width: 0;
}
.aegis-content {
    max-width: 1024px;
    margin: 0 auto;
}

footer.aegis-footer {
    text-align: center;
    color: var(--gx-text-muted);
    font-size: 12px;
    padding: 1rem;
    flex-shrink: 0;
}

/* ===== _AuthLayout.cshtml chrome (login / MFA / password reset) ===== */

header.auth-header {
    background: #fff;
    border-bottom: 1px solid var(--gx-border);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

main.auth-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 1rem;
    overflow-y: auto;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid var(--gx-border);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(56, 62, 84, 0.08);
    padding: 2rem;
}
.auth-card--wide { max-width: 720px; }

.auth-card h1 {
    color: var(--gx-navy);
    font-weight: 600;
    font-size: 1.4rem;
    margin: 0 0 0.25rem;
}
.auth-card .auth-subtitle {
    color: var(--gx-text-muted);
    font-size: 13px;
    margin-bottom: 1.5rem;
}

.auth-card .form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gx-text-muted);
    margin-bottom: 0.35rem;
}
.auth-card .form-control {
    border-color: var(--gx-border);
    font-size: 14px;
}
.auth-card .form-control:focus {
    border-color: var(--gx-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 136, 151, 0.15);
}

.auth-divider {
    border-top: 1px solid var(--gx-border);
    margin: 1.5rem 0;
    position: relative;
    text-align: center;
}
.auth-divider span {
    background: #fff;
    color: var(--gx-text-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 0.75rem;
    position: relative;
    top: -0.65rem;
}

footer.auth-footer {
    text-align: center;
    color: var(--gx-text-muted);
    font-size: 12px;
    padding: 1rem;
    flex-shrink: 0;
}

/* ===== shared utilities (buttons, forms, tables, cards) ===== */

.btn-primary {
    --bs-btn-bg: var(--gx-teal);
    --bs-btn-border-color: var(--gx-teal);
    --bs-btn-hover-bg: var(--gx-teal-dark);
    --bs-btn-hover-border-color: var(--gx-teal-dark);
    --bs-btn-active-bg: var(--gx-teal-dark);
    --bs-btn-active-border-color: var(--gx-teal-dark);
    --bs-btn-disabled-bg: var(--gx-teal);
    --bs-btn-disabled-border-color: var(--gx-teal);
}
.btn-link, a.btn-link {
    color: var(--gx-teal);
    text-decoration: none;
}
.btn-link:hover, a.btn-link:hover { color: var(--gx-teal-dark); }

.card {
    border: 1px solid var(--gx-border);
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    background: #fff;
}

.table {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.table thead th {
    background: #fff;
    border-bottom: 2px solid var(--gx-border);
    color: var(--gx-text-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.75rem 1rem;
}
.table tbody td { padding: 0.65rem 1rem; vertical-align: middle; }

.form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gx-navy);
}
.form-control, .form-select {
    border-color: var(--gx-border);
    font-size: 14px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--gx-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 136, 151, 0.15);
}

.alert { font-size: 13px; }

/* ===== Index.cshtml account dashboard tiles ===== */

.account-hero { margin-bottom: 2rem; }
.account-hero h1 { font-size: 1.6rem; margin: 0 0 0.25rem; }
.account-hero .lead { color: var(--gx-text-muted); margin: 0; font-size: 14px; }

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.account-tile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--gx-border);
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}
.account-tile:hover {
    border-color: var(--gx-teal);
    color: inherit;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(56, 62, 84, 0.08);
}
.account-tile__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(0, 136, 151, 0.10);
    color: var(--gx-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.account-tile__title {
    font-weight: 600;
    color: var(--gx-navy);
    font-size: 15px;
}
.account-tile__desc {
    color: var(--gx-text-muted);
    font-size: 13px;
    line-height: 1.4;
}

.signin-card {
    max-width: 480px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--gx-border);
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    text-align: center;
}
.signin-card h1 { font-size: 1.4rem; margin: 0 0 0.5rem; }
.signin-card p { color: var(--gx-text-muted); margin-bottom: 1.5rem; }

/* ===== Auth pages, modern layer (_AuthLayout: body.auth-body) =====================
   Softer backdrop, a vertically centred card, 44px controls, sentence-case labels and
   list rows for the account pages (sign-in methods, two-factor, recovery codes). */

body.auth-body {
    background:
        radial-gradient(1100px 560px at 8% -12%, rgba(3, 195, 216, 0.14), transparent 62%),
        radial-gradient(900px 520px at 108% 8%, rgba(56, 62, 84, 0.10), transparent 60%),
        #f5f7f9;
}
body.auth-body header.auth-header {
    background: transparent;
    border-bottom: 0;
    padding: 1.25rem 2rem;
    justify-content: space-between;
}
.auth-header__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gx-navy);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(56, 62, 84, 0.08);
}
.auth-header__link:hover { color: var(--gx-teal-dark); background: #fff; }

body.auth-body main.auth-main { align-items: center; padding: 1.5rem 1rem 3rem; }

body.auth-body .auth-card {
    max-width: 440px;
    border: 1px solid rgba(56, 62, 84, 0.07);
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(31, 42, 68, 0.04), 0 12px 32px rgba(31, 42, 68, 0.08);
    padding: 2.25rem;
}
body.auth-body .auth-card--medium { max-width: 560px; }
body.auth-body .auth-card--wide { max-width: 720px; }
body.auth-body .auth-card h1 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; }
body.auth-body .auth-card .auth-subtitle { font-size: 14px; color: #7b8194; margin-bottom: 1.75rem; }

body.auth-body .auth-card .form-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gx-navy);
}
body.auth-body .form-control,
body.auth-body .form-select {
    min-height: 44px;
    border-radius: 10px;
    font-size: 15px;
    border-color: #dfe3e8;
}
body.auth-body .form-control::placeholder { color: #a9afbb; }
body.auth-body .btn {
    min-height: 44px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
body.auth-body .btn-sm { min-height: 32px; border-radius: 8px; font-size: 13px; padding: 0.25rem 0.7rem; }
body.auth-body .btn-outline-secondary {
    --bs-btn-color: var(--gx-navy);
    --bs-btn-border-color: #dfe3e8;
    --bs-btn-bg: #fff;
    --bs-btn-hover-color: var(--gx-navy);
    --bs-btn-hover-bg: #f3f5f8;
    --bs-btn-hover-border-color: #cfd5dc;
    --bs-btn-active-color: var(--gx-navy);
    --bs-btn-active-bg: #eceff3;
    --bs-btn-active-border-color: #cfd5dc;
}
body.auth-body .btn svg { flex-shrink: 0; }

/* Long server messages (exception text, type names) wrap inside the card. */
body.auth-body .alert {
    border-radius: 12px;
    border: 0;
    font-size: 13.5px;
    overflow-wrap: anywhere;
}
body.auth-body .alert-info { background: rgba(0, 136, 151, 0.08); color: var(--gx-teal-dark); }
body.auth-body .alert-danger { background: rgba(204, 51, 51, 0.08); color: #a32929; }
body.auth-body .alert-warning { background: rgba(254, 155, 43, 0.12); color: #8a4d05; }

body.auth-body .auth-divider { border-top-color: #e9ecf0; }
body.auth-body .auth-divider span { background: #fff; color: #9aa0ad; }

/* Settings sections and rows (Account/Security, Account/TwoFactor) */
.settings-section + .settings-section { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid #eef0f3; }
.settings-section__title { font-size: 1rem; font-weight: 700; margin: 0 0 0.2rem; }
.settings-section__desc { color: #7b8194; font-size: 13.5px; margin: 0 0 1rem; }

.method-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.5rem; }
.method-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid #eceff3;
    border-radius: 12px;
    background: #fbfcfd;
}
.method-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(0, 136, 151, 0.10);
    color: var(--gx-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.method-icon--microsoft { background: #fff; border: 1px solid #eceff3; }
.method-body { flex: 1; min-width: 0; }
.method-name { font-weight: 600; color: var(--gx-navy); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.method-meta { font-size: 12.5px; color: #8a90a0; }
.method-row form { margin: 0; }
.btn-ghost-danger {
    background: transparent;
    border: 0;
    color: #b23a3a;
    font-weight: 600;
    font-size: 13px;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
}
.btn-ghost-danger:hover { background: rgba(204, 51, 51, 0.08); color: #9c2f2f; }

.empty-state {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    border: 1px dashed #d9dee5;
    border-radius: 12px;
    color: #8a90a0;
    font-size: 13.5px;
}

.add-row { display: flex; gap: 0.5rem; }
.add-row .form-control { flex: 1; min-width: 0; }
@media (max-width: 480px) { .add-row { flex-direction: column; } }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 12px;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}
.status-pill--on { background: rgba(11, 158, 0, 0.10); color: #0a7d00; }
.status-pill--off { background: #f0f2f5; color: #7b8194; }

/* Two-factor setup steps */
.steps { list-style: none; counter-reset: step; margin: 0 0 1.25rem; padding: 0; display: grid; gap: 1.25rem; }
.steps > li { counter-increment: step; position: relative; padding-left: 2.6rem; }
.steps > li::before {
    content: counter(step);
    position: absolute;
    left: 0; top: 0;
    width: 1.8rem; height: 1.8rem;
    border-radius: 50%;
    background: rgba(0, 136, 151, 0.12);
    color: var(--gx-teal-dark);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.steps__title { font-weight: 600; color: var(--gx-navy); margin-bottom: 0.35rem; }
.steps__text { color: #7b8194; font-size: 13.5px; margin-bottom: 0.6rem; }

.key-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.6rem 0.6rem 0.9rem;
    background: #f5f7f9;
    border: 1px solid #e6e9ee;
    border-radius: 10px;
}
.key-box code {
    flex: 1;
    min-width: 0;
    color: var(--gx-navy);
    font-size: 14px;
    letter-spacing: 0.06em;
    overflow-wrap: anywhere;
    background: none;
}

.code-input {
    font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
    font-size: 20px !important;
    letter-spacing: 0.35em;
    text-align: center;
}

/* Recovery codes */
.code-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.code-grid code {
    display: block;
    text-align: center;
    padding: 0.55rem 0.5rem;
    background: #f5f7f9;
    border: 1px solid #e6e9ee;
    border-radius: 10px;
    color: var(--gx-navy);
    font-size: 14px;
    letter-spacing: 0.04em;
}
.button-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.button-row > * { flex: 1; }

/* ===== aegis wordmark (matches genesis: "gen<e>sis admin") ===== */
.aegis-wordmark { display: inline-flex; align-items: baseline; gap: 0.5rem; text-decoration: none; }
.aegis-wordmark .brand-word {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gx-navy);
    letter-spacing: -0.03em;
    line-height: 1;
}
.aegis-wordmark .brand-accent { color: var(--gx-teal); }
.aegis-wordmark .brand-sub {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8a90a0;
}

/* ===== _Layout (account home and signed-in pages), modern layer ===== */
body.app-body header.aegis-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid rgba(56, 62, 84, 0.06);
    padding: 0.9rem 2rem;
}
body.app-body .avatar-circle {
    background: linear-gradient(135deg, var(--gx-teal) 0%, var(--gx-teal-light) 100%);
    box-shadow: 0 2px 6px rgba(0, 136, 151, 0.25);
}
body.app-body .dropdown-menu {
    border: 1px solid #e6e9ee;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(31, 42, 68, 0.04), 0 12px 32px rgba(31, 42, 68, 0.10);
    padding: 0.4rem;
}
body.app-body .dropdown-item { border-radius: 8px; }
body.app-body main.aegis-main { padding: 2.5rem 1.5rem; }

body.app-body .account-hero { margin-bottom: 2rem; }
body.app-body .account-hero h1 { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; }
body.app-body .account-hero .lead { color: #7b8194; font-size: 15px; }

body.app-body .account-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
body.app-body .account-tile {
    border: 1px solid rgba(56, 62, 84, 0.07);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 1px 2px rgba(31, 42, 68, 0.04), 0 8px 24px rgba(31, 42, 68, 0.05);
}
body.app-body .account-tile:hover {
    border-color: rgba(0, 136, 151, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 1px 2px rgba(31, 42, 68, 0.04), 0 14px 32px rgba(31, 42, 68, 0.10);
}
body.app-body .account-tile__icon { width: 44px; height: 44px; border-radius: 12px; }
body.app-body .account-tile__title { font-size: 15.5px; }
body.app-body .account-tile__desc { color: #7b8194; font-size: 13.5px; }

body.app-body .signin-card {
    border: 1px solid rgba(56, 62, 84, 0.07);
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(31, 42, 68, 0.04), 0 12px 32px rgba(31, 42, 68, 0.08);
    padding: 2.5rem;
}
body.app-body .card { border-radius: 14px; border-color: #e6e9ee; }
body.app-body .table { border-radius: 12px; }
body.app-body .btn { border-radius: 10px; font-weight: 600; }

/* ===== _Layout left nav (signed-in aegis identity pages) =====
   Same shell and colours as genesis-admin / aegis-admin (admin-modern.css). */
.id-shell { display: flex; flex: 1; min-height: 100vh; }
.id-content-col { flex: 1; display: flex; flex-direction: column; min-width: 0; }

.id-sidebar {
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(120% 45% at 0% 100%, rgba(3, 195, 216, 0.16) 0%, transparent 70%),
        linear-gradient(180deg, #1f2a44 0%, #1b2d44 55%, #15333f 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    position: sticky;
    top: 0;
    height: 100vh;
}
.id-sidebar__brand {
    height: 64px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    border-bottom: 1px solid #e6e9ee;
    flex-shrink: 0;
}
.id-nav { padding: 0.75rem; display: flex; flex-direction: column; }
.id-nav--bottom { margin-top: auto; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.id-nav__title {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(160, 222, 232, 0.55);
    padding: 1.1rem 0.8rem 0.4rem;
}
.id-nav a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 2px 0;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    color: rgba(226, 236, 242, 0.78);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 140ms ease, color 140ms ease;
}
.id-nav a svg { flex-shrink: 0; opacity: 0.75; }
.id-nav a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.id-nav a:hover svg { opacity: 1; }
.id-nav a.active {
    background: linear-gradient(90deg, rgba(3, 195, 216, 0.24) 0%, rgba(3, 195, 216, 0.06) 100%);
    color: #fff;
    box-shadow: inset 3px 0 0 var(--gx-teal-light);
}
.id-nav a.active svg { opacity: 1; color: var(--gx-teal-light); }

body.has-nav header.aegis-header { height: 64px; padding: 0 2rem; }
body.has-nav main.aegis-main { padding: 2rem; }
/* Account pages inside the shell: cards sit in the content column, not centred on the page. */
body.has-nav .aegis-content { max-width: 1040px; margin: 0; }
body.has-nav .auth-card { margin: 0; }

@media (max-width: 800px) {
    .id-sidebar { display: none; }
}

/* Two-factor setup: QR code beside the manual options */
.qr-setup { display: flex; gap: 1.25rem; align-items: flex-start; }
.qr-box {
    width: 168px;
    flex-shrink: 0;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid #e6e9ee;
    border-radius: 12px;
    line-height: 0;
}
.qr-box svg { width: 100%; height: auto; display: block; }
.qr-setup__alt { flex: 1; min-width: 0; }
@media (max-width: 560px) { .qr-setup { flex-direction: column; } }
