/* ==========================================================================
   Achim Krämer · Freelancer — Design system
   Dark glassmorphism look inspired by achim-kraemer.com
   (Lexend typeface, #080b11 base, slate text, violet/purple accents)
   Brand assets: public/img/ak-{mark,lockup}-freelancer.svg, favicon-*.png (#7c3aed)
   ========================================================================== */

:root {
    --bg:            #080b11;
    --surface:       #0f172a;
    --surface-2:     #111a2e;
    --border:        rgba(255, 255, 255, 0.10);
    --text:          #e2e8f0;   /* slate-200 */
    --text-muted:    #94a3b8;   /* slate-400 */
    --text-dim:      #64748b;   /* slate-500 */
    --accent:        #c084fc;   /* purple-400 */
    --accent-strong: #a855f7;   /* purple-500 */
    --accent-2:      #818cf8;   /* indigo-400 */
    --danger-bg:     rgba(244, 63, 94, 0.12);
    --danger-border: rgba(244, 63, 94, 0.35);
    --danger-text:   #fda4af;
    --radius:        1rem;
    --shadow:        0 10px 30px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Lexend', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Ambient aurora glow in the background ----------------------------------- */
.bg-aurora {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(45rem 45rem at 15% -10%, rgba(168, 85, 247, 0.20), transparent 60%),
        radial-gradient(40rem 40rem at 100% 0%, rgba(129, 140, 248, 0.16), transparent 55%),
        radial-gradient(50rem 40rem at 50% 120%, rgba(192, 132, 252, 0.12), transparent 60%);
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #d8b4fe; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5rem; color: #fff; letter-spacing: -0.02em; }

/* Brand assets ------------------------------------------------------------- */
.brand-lockup,
.brand-mark { display: block; width: auto; }
.brand-mark { border-radius: 0.35rem; box-shadow: 0 0 16px rgba(168, 85, 247, 0.35); }

.container {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Gradient text accent ---------------------------------------------------- */
.gradient-text {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons ----------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    text-align: center;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(120deg, var(--accent-strong), var(--accent-2));
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.5);
    color: #fff;
}

.btn-ghost {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* Glass card -------------------------------------------------------------- */
.card {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ==========================================================================
   Top navigation
   ========================================================================== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(8, 11, 17, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.site-nav .brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
}
.site-nav .brand .brand-lockup { height: 1.75rem; }
.site-nav .nav-actions { display: flex; align-items: center; gap: 0.75rem; }

/* ==========================================================================
   Landing / hero
   ========================================================================== */
.hero {
    min-height: calc(100vh - 4.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(168, 85, 247, 0.10);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 999px;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    max-width: 20ch;
}
.hero p.lead {
    max-width: 46ch;
    margin: 1rem auto 2.25rem;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--text-muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.25rem;
    margin-top: 4rem;
    width: 100%;
    max-width: 60rem;
}
.feature {
    padding: 1.5rem;
    text-align: left;
}
.feature .icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.feature h3 { font-size: 1.1rem; }
.feature p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

/* ==========================================================================
   Auth (login) screen
   ========================================================================== */
.auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
}
.auth-card {
    width: 100%;
    max-width: 26rem;
    padding: 2.5rem 2.25rem;
}
.auth-card .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}
.auth-card .brand .brand-lockup { height: 2.25rem; }
.auth-card h1 { text-align: center; font-size: 1.6rem; }
.auth-card .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin: 0 0 2rem;
    font-size: 0.95rem;
}

.field { margin-bottom: 1.25rem; text-align: left; }
.field label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.field input[type="email"],
.field input[type="password"],
.field input[type="text"] {
    width: 100%;
    padding: 0.8rem 1rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 0.7rem;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field input::placeholder { color: var(--text-dim); }
.field input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
}

.field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.checkbox { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); cursor: pointer; }
.checkbox input { width: 1rem; height: 1rem; accent-color: var(--accent-strong); }

.alert {
    padding: 0.85rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.7rem;
    font-size: 0.9rem;
}
.alert-danger {
    color: var(--danger-text);
    background: var(--danger-bg);
    border: 1px solid var(--danger-border);
}
.alert-info {
    color: #a5b4fc;
    background: rgba(129, 140, 248, 0.12);
    border: 1px solid rgba(129, 140, 248, 0.30);
}

.auth-footer {
    margin-top: 1.75rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Dashboard
   ========================================================================== */
.dashboard {
    max-width: 60rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}
.dashboard .welcome { margin-bottom: 2.5rem; }
.dashboard .welcome h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.dashboard .welcome p { color: var(--text-muted); margin: 0; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.stat { padding: 1.5rem; }
.stat .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); }
.stat .value { font-size: 2rem; font-weight: 700; color: #fff; margin-top: 0.25rem; }
.stat .value.accent { color: var(--accent); }

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* ==========================================================================
   Motion & responsive
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.8s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .animate-in { animation: none; }
    * { scroll-behavior: auto !important; }
}

@media (max-width: 640px) {
    .auth-card { padding: 2rem 1.5rem; }
    .site-nav { padding: 0.85rem 1rem; }
    .site-nav .brand .brand-lockup { height: 1.5rem; }
}

/* ==========================================================================
   Admin / CRM
   ========================================================================== */
.admin-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.75rem;
    background: rgba(8, 11, 17, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.admin-nav .brand { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; color: #fff; white-space: nowrap; }
.admin-nav .brand .brand-mark { height: 1.6rem; }
.admin-nav .links { display: flex; gap: 1.25rem; align-items: center; }
.admin-nav .links a { color: var(--text-muted); font-weight: 500; }
.admin-nav .links a:hover, .admin-nav .links a.active { color: #fff; }
.admin-nav .spacer { flex: 1; }

.admin-main { max-width: 68rem; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }

.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.page-head h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 0; }
.page-head .sub { color: var(--text-muted); margin: 0.25rem 0 0; }
.head-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.breadcrumb { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: #fff; }

/* Buttons: small + variants */
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.85rem; border-radius: 0.55rem; }
.btn-danger {
    color: #fecdd3;
    background: rgba(244, 63, 94, 0.12);
    border-color: rgba(244, 63, 94, 0.35);
}
.btn-danger:hover { background: rgba(244, 63, 94, 0.22); color: #fff; transform: translateY(-2px); }

/* Tables */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table.data {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 23, 42, 0.5);
    font-size: 0.92rem;
}
table.data th, table.data td { padding: 0.85rem 1rem; text-align: left; white-space: nowrap; }
table.data thead th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}
table.data tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.15s ease; }
table.data tbody tr:last-child { border-bottom: none; }
table.data tbody tr:hover { background: rgba(255,255,255,0.03); }
table.data td.num, table.data th.num { text-align: right; font-variant-numeric: tabular-nums; }
table.data .muted { color: var(--text-dim); }

/* Definition list for detail views */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.detail-card { padding: 1.5rem; }
.detail-card h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 1rem; }
.detail-card dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 0.5rem 1rem; }
.detail-card dt { color: var(--text-dim); font-size: 0.9rem; }
.detail-card dd { margin: 0; color: var(--text); }

.section { margin-top: 2.5rem; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.section-head h2 { font-size: 1.25rem; margin: 0; }

/* Status badges */
.status { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.status-erstellt   { color: #a5b4fc; background: rgba(129,140,248,0.14); border: 1px solid rgba(129,140,248,0.3); }
.status-verschickt { color: #fcd34d; background: rgba(251,191,36,0.14); border: 1px solid rgba(251,191,36,0.3); }
.status-bezahlt    { color: #6ee7b7; background: rgba(16,185,129,0.14); border: 1px solid rgba(16,185,129,0.3); }

/* Forms */
.form-card { max-width: 44rem; padding: 2rem 2rem 2.25rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.25rem; }
.form-grid .full { grid-column: 1 / -1; }
form .form-row { margin-bottom: 1.1rem; }
form label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
form input[type="text"], form input[type="email"], form input[type="number"],
form input[type="date"], form input[type="url"], form input[type="search"],
form input[type="password"], form textarea, form select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    color: var(--text);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
form input[type="search"] { -webkit-appearance: none; appearance: none; }
form input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
form textarea { resize: vertical; }
form input:focus, form textarea:focus, form select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(168,85,247,0.22);
}
form .form-help, .form-help { display: block; margin-top: 0.3rem; font-size: 0.78rem; color: var(--text-dim); }
form .checkbox-row { display: flex; align-items: center; gap: 0.5rem; }
form .checkbox-row input { width: auto; }
.form-actions { display: flex; gap: 0.75rem; margin-top: 1.75rem; flex-wrap: wrap; }
/* Invoice creation: letterhead choice above the submit button */
.invoice-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
.radio-group { margin: 0; padding: 0; border: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.25rem; }
.radio-group legend { float: left; margin-right: 0.5rem; font-size: 0.85rem; color: var(--text-dim); }
.radio { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); cursor: pointer; font-size: 0.92rem; }
.radio input { width: 1rem; height: 1rem; margin: 0; accent-color: var(--accent-strong); }
ul.form-errors, .form-error { color: var(--danger-text); font-size: 0.82rem; list-style: none; padding: 0; margin: 0.35rem 0 0; }

/* Flash messages */
.flashes { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.flash { padding: 0.85rem 1rem; border-radius: 0.7rem; font-size: 0.92rem; }
.flash-success { color: #6ee7b7; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); }
.flash-error   { color: var(--danger-text); background: var(--danger-bg); border: 1px solid var(--danger-border); }

/* Selectable task rows for invoice creation */
.pick input[type="checkbox"] { width: 1.1rem; height: 1.1rem; accent-color: var(--accent-strong); }

.empty {
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--text-dim);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

.inline-form { display: inline; }

@media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
}

/* Zeiterfassung / Stopwatch */
.stopwatch-card { text-align: center; padding: 2.5rem 1.5rem; }
.stopwatch {
    font-size: clamp(2.75rem, 9vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
    color: #fff;
}
.stopwatch.is-running {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: stopwatch-pulse 1.4s ease-in-out infinite;
}
@keyframes stopwatch-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.6; }
}
.stopwatch-state { margin: 1rem 0 1.5rem; }
.stopwatch-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Dashboard widgets */
.stat.card { display: block; text-decoration: none; }
a.stat.card { transition: border-color 0.2s ease, transform 0.2s ease; }
a.stat.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.stat .hint { margin-top: 0.4rem; font-size: 0.85rem; color: var(--text-muted); }
.dash-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem 2rem;
    align-items: start;
}
.dash-columns .section { margin-top: 2.5rem; }

/* Task work-status badges */
.status-offen      { color: #93c5fd; background: rgba(59,130,246,0.14); border: 1px solid rgba(59,130,246,0.3); }
.status-in-arbeit  { color: #fcd34d; background: rgba(251,191,36,0.14); border: 1px solid rgba(251,191,36,0.3); }
.status-erledigt   { color: #6ee7b7; background: rgba(16,185,129,0.14); border: 1px solid rgba(16,185,129,0.3); }

/* Compact inline status select in task tables */
select.status-select {
    width: auto;
    padding: 0.3rem 1.6rem 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Overdue invoices */
.overdue-text { color: #fb7185 !important; font-weight: 600; }
.status-overdue {
    color: #fb7185;
    background: rgba(244,63,94,0.14);
    border: 1px solid rgba(244,63,94,0.35);
    margin-left: 0.35rem;
}

/* Revenue chart on dashboard */
.revenue-totals { display: flex; gap: 1.5rem; flex-wrap: wrap; color: var(--text-muted); font-size: 0.9rem; }
.revenue-totals strong { color: #fff; }
.revenue-chart { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.revenue-row { display: grid; grid-template-columns: 2.5rem 1fr 6rem; align-items: center; gap: 0.75rem; }
.revenue-row .revenue-month { font-size: 0.8rem; color: var(--text-dim); }
.revenue-row.is-current .revenue-month { color: var(--accent); font-weight: 700; }
.revenue-bar-track { background: rgba(255,255,255,0.05); border-radius: 999px; height: 0.7rem; overflow: hidden; }
.revenue-bar {
    display: block; height: 100%;
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
    border-radius: 999px; min-width: 2px;
}
.revenue-row.is-current .revenue-bar { background: linear-gradient(120deg, var(--accent-strong), var(--accent)); }
.revenue-value { text-align: right; font-variant-numeric: tabular-nums; font-size: 0.85rem; color: var(--text-muted); }

/* List toolbar (search + filter) */
.list-toolbar { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.25rem; }
.list-toolbar input[type="search"] { width: auto; flex: 1 1 18rem; }
.list-toolbar select { width: auto; }

/* Pagination */
.pagination { display: flex; gap: 1rem; align-items: center; justify-content: center; margin-top: 1.5rem; }
.pagination-info { color: var(--text-dim); font-size: 0.85rem; }
.btn.is-disabled { opacity: 0.4; pointer-events: none; }

/* Two-factor setup */
.twofa-steps { margin: 0 0 1rem 1.1rem; color: var(--text-muted); line-height: 1.7; }
.twofa-qr { display: flex; justify-content: center; padding: 1rem; background: #fff; border-radius: 0.75rem; width: max-content; margin: 0 auto 1rem; }
.twofa-qr img { display: block; }
.detail-card code { background: rgba(255,255,255,0.06); padding: 0.15rem 0.4rem; border-radius: 0.35rem; font-size: 0.9rem; letter-spacing: 0.05em; }

.row-actions { display: flex; gap: 0.5rem; justify-content: flex-end; flex-wrap: wrap; }

/* Two-factor setup: wide two-column layout (QR left, steps + form right) */
.twofa-setup-grid { display: grid; grid-template-columns: minmax(240px, auto) 1fr; gap: 2.5rem; align-items: start; }
.twofa-setup-qr { text-align: center; }
.twofa-setup-qr .twofa-qr { margin: 0 auto 1rem; }
.twofa-setup-qr code { display: inline-block; word-break: break-all; max-width: 100%; }
.twofa-setup-form .twofa-steps { margin-top: 0; }
.twofa-setup-form input[type="text"] { max-width: 14rem; }
@media (max-width: 720px) { .twofa-setup-grid { grid-template-columns: 1fr; } }
