/* =========================================================================
   Digital Skills Online — accessibility-first base stylesheet
   ========================================================================= */

/* ── Design tokens ───────────────────────────────────────────────────────── */
:root {
    --bg:               #fbfaf7;
    --surface:          #ffffff;
    --surface-2:        #f3f2ee;
    --border:           #d9d6cf;
    --border-strong:    #9a968d;
    --text:             #1a1a1a;
    --text-muted:       #5b5b5b;
    --link:             #0a5d62;
    --link-hover:       #073e42;
    --accent:           #0f766e;   /* deep teal */
    --accent-ink:       #ffffff;
    --accent-soft:      #d6ece9;
    --success:          #15803d;
    --success-soft:     #d1fae5;
    --warning:          #b45309;
    --warning-soft:     #fef3c7;
    --danger:           #b91c1c;
    --danger-soft:      #fee2e2;
    --focus:            #1d4ed8;

    --radius-sm:        6px;
    --radius:           10px;
    --radius-lg:        16px;

    --shadow-sm:        0 1px 2px rgba(0,0,0,.06);
    --shadow:           0 2px 6px rgba(0,0,0,.08), 0 4px 14px rgba(0,0,0,.04);

    --space-1:          0.25rem;
    --space-2:          0.5rem;
    --space-3:          0.75rem;
    --space-4:          1rem;
    --space-5:          1.5rem;
    --space-6:          2rem;
    --space-8:          3rem;

    --font-body:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-dyslexia:    'Atkinson Hyperlegible', 'Lexend', 'Comic Sans MS', sans-serif;
    --font-mono:        'SFMono-Regular', Menlo, Consolas, 'Courier New', monospace;

    --base-font-size:   17px;      /* base; scaled via data-font-scale */
    --line-height:      1.6;
    --content-width:    72ch;       /* reading width cap */
    --shell-width:      1100px;
}

/* High-contrast override */
html[data-high-contrast="1"] {
    --bg:             #ffffff;
    --surface:        #ffffff;
    --surface-2:      #f0f0f0;
    --border:         #000000;
    --border-strong:  #000000;
    --text:           #000000;
    --text-muted:     #000000;
    --link:           #0000c8;
    --link-hover:     #0000c8;
    --accent:         #000000;
    --accent-ink:     #ffffff;
    --accent-soft:    #ffffff;
    --focus:          #ff6a00;
    --shadow:         none;
    --shadow-sm:      none;
}

/* Font scale — applied via data attribute on <html> */
html[data-font-scale="115"] { --base-font-size: 19.5px; }
html[data-font-scale="130"] { --base-font-size: 22px; }

/* Dyslexia-friendly font */
html[data-dyslexia-font="1"] body { font-family: var(--font-dyslexia); letter-spacing: 0.01em; }

/* Reduce motion — from user choice OR OS preference */
html[data-reduce-motion="1"] *,
html[data-reduce-motion="1"] *::before,
html[data-reduce-motion="1"] *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0ms !important;
        transition-duration: 0ms !important;
    }
}

/* ── Reset & base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--base-font-size);
    line-height: var(--line-height);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--link-hover); }

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 var(--space-3); color: var(--text); }
h1 { font-size: 1.875rem; font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: 1.375rem; font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 700; }

p  { margin: 0 0 var(--space-4); }
strong { font-weight: 700; }
small  { font-size: 0.875em; }

/* Focus — visible always, not just keyboard */
:focus { outline: none; }
:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip link — keyboard only, appears on focus */
.skip-link {
    position: absolute; top: -100px; left: var(--space-4);
    background: var(--text); color: var(--bg);
    padding: var(--space-3) var(--space-4); border-radius: var(--radius);
    font-weight: 700; z-index: 1000;
}
.skip-link:focus { top: var(--space-3); }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container { max-width: var(--shell-width); margin: 0 auto; padding: 0 var(--space-4); }
.main { padding: var(--space-6) 0 var(--space-8); outline: none; }

/* Prose: width-capped for readability */
.prose { max-width: var(--content-width); }
.prose p, .prose li { line-height: 1.65; }
.prose h2 { margin-top: var(--space-6); }
.prose ul, .prose ol { margin: 0 0 var(--space-4) var(--space-5); }

/* ── Site header ─────────────────────────────────────────────────────────── */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-4); padding: var(--space-3) var(--space-4);
}

.brand {
    display: inline-flex; align-items: center; gap: var(--space-3);
    text-decoration: none; color: var(--text);
}
.brand__mark {
    width: 42px; height: 42px; border-radius: var(--radius-sm);
    background: var(--accent); color: var(--accent-ink);
    display: grid; place-items: center;
    font-weight: 800; font-size: 1rem; letter-spacing: 0.02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 800; font-size: 1.05rem; }
.brand__tagline { color: var(--text-muted); font-size: 0.78rem; }
@media (max-width: 640px) { .brand__tagline { display: none; } }

.primary-nav { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; }
.nav-link {
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    text-decoration: none; color: var(--text);
    font-weight: 600;
    min-height: 44px; display: inline-flex; align-items: center;
}
.nav-link:hover { background: var(--surface-2); color: var(--text); }
.nav-link.is-active { background: var(--accent-soft); color: var(--accent); }
.nav-link--cta {
    background: var(--accent); color: var(--accent-ink);
}
.nav-link--cta:hover { background: var(--link-hover); color: var(--accent-ink); }

.badge-dot {
    display: inline-block; margin-left: var(--space-2);
    background: var(--danger); color: #fff; border-radius: 999px;
    font-size: 0.75rem; font-weight: 700;
    min-width: 1.25rem; padding: 0 0.375rem; text-align: center; line-height: 1.25rem;
}

/* ── Accessibility panel ─────────────────────────────────────────────────── */
.a11y-btn {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    display: inline-grid; place-items: center;
    cursor: pointer;
}
.a11y-btn:hover { background: var(--surface-2); }
.a11y-btn[aria-expanded="true"] { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }

.a11y-panel {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: var(--space-4) 0 var(--space-5);
}
.a11y-panel__head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: var(--space-4);
}
.a11y-panel__head h2 { margin: 0; font-size: 1.05rem; }
.a11y-panel__close {
    background: transparent; border: 0; font-size: 1.75rem; line-height: 1;
    color: var(--text); width: 44px; height: 44px; cursor: pointer;
    border-radius: var(--radius-sm);
}
.a11y-panel__close:hover { background: var(--bg); }

.a11y-group { border: 0; padding: 0; margin: 0 0 var(--space-4); }
.a11y-group legend { font-weight: 700; margin-bottom: var(--space-2); }

.a11y-radio-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.a11y-radio-row label {
    display: inline-flex; align-items: center; gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer; min-height: 44px;
    font-weight: 600;
}
.a11y-radio-row input:checked + span { color: var(--accent); }
.a11y-radio-row label:has(input:checked) {
    background: var(--accent-soft);
    border-color: var(--accent);
}

.a11y-toggle-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.switch {
    display: inline-flex; align-items: center; gap: var(--space-3);
    padding: var(--space-3); background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    cursor: pointer; min-height: 56px;
    font-weight: 600;
}
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch__track {
    position: relative; display: inline-block;
    width: 44px; height: 26px; flex-shrink: 0;
    background: var(--border-strong); border-radius: 999px;
    transition: background .15s;
}
.switch__track::after {
    content: ''; position: absolute; top: 3px; left: 3px;
    width: 20px; height: 20px; background: #fff; border-radius: 50%;
    transition: transform .15s;
}
.switch input:checked + .switch__track { background: var(--accent); }
.switch input:checked + .switch__track::after { transform: translateX(18px); }
.switch:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }

.a11y-panel__foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-3);
}
.a11y-saved { color: var(--success); font-weight: 700; }

/* ── Flash / alerts ──────────────────────────────────────────────────────── */
.flash-container { margin-top: var(--space-3); }
.flash {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    margin-bottom: var(--space-2);
    font-weight: 500;
}
.flash--success { background: var(--success-soft); border-color: var(--success); color: var(--success); }
.flash--error   { background: var(--danger-soft);  border-color: var(--danger);  color: var(--danger); }
.flash--warning { background: var(--warning-soft); border-color: var(--warning); color: var(--warning); }
.flash--info    { background: var(--accent-soft);  border-color: var(--accent);  color: var(--accent); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
    padding: 0.75rem 1.25rem;
    min-height: 48px;
    font: inherit; font-weight: 700;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: var(--accent); color: var(--accent-ink);
    text-decoration: none; cursor: pointer;
    transition: background .12s, border-color .12s;
}
.btn:hover { background: var(--link-hover); color: var(--accent-ink); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn--ghost:hover { background: var(--surface-2); color: var(--text); }
.btn--danger { background: var(--danger); }
.btn--danger:hover { background: #991b1b; }
.btn--sm { padding: 0.5rem 0.875rem; min-height: 40px; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: var(--space-4); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-weight: 600; }
.field .hint { color: var(--text-muted); font-size: 0.875rem; }
.field .error { color: var(--danger); font-size: 0.875rem; font-weight: 600; }
.input, .select, .textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    font: inherit;
    background: var(--surface);
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    min-height: 48px;
}
.input:focus, .select:focus, .textarea:focus {
    border-color: var(--accent);
}
.textarea { min-height: 8rem; resize: vertical; }

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
}
.card + .card { margin-top: var(--space-4); }

/* ── Auth screens — narrow centered ──────────────────────────────────────── */
.auth-wrap { max-width: 28rem; margin: var(--space-6) auto; }
.auth-wrap h1 { text-align: center; margin-bottom: var(--space-5); }
.auth-wrap .muted-row { text-align: center; margin-top: var(--space-4); }

/* ── Home / hero ─────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-5);
    text-align: center;
    margin-bottom: var(--space-6);
}
.hero h1 { font-size: 2.25rem; margin-bottom: var(--space-3); }
.hero .lede {
    max-width: 58ch; margin: 0 auto var(--space-5);
    font-size: 1.125rem; color: var(--text-muted);
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }

.points {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-4);
}
.point { padding: var(--space-5); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.point h2 { font-size: 1.125rem; }

/* ── Dashboard / track cards ─────────────────────────────────────────────── */
.track-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-4);
}
.track-card {
    display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: var(--space-5);
    text-decoration: none; color: var(--text);
}
.track-card:hover { border-color: var(--accent); box-shadow: var(--shadow); color: var(--text); }
.track-card__level {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    color: var(--accent); letter-spacing: 0.04em; margin-bottom: var(--space-2);
}
.track-card h3 { margin-bottom: var(--space-2); }
.track-card .summary { color: var(--text-muted); margin: 0 0 var(--space-4); flex: 1; }

.progress {
    width: 100%; height: 10px; background: var(--surface-2);
    border-radius: 999px; overflow: hidden; border: 1px solid var(--border);
}
.progress__bar { height: 100%; background: var(--accent); transition: width .25s; }
.progress-row { display: flex; justify-content: space-between; color: var(--text-muted); font-size: 0.875rem; margin-bottom: var(--space-2); }

.empty-state {
    text-align: center; padding: var(--space-8) var(--space-4);
    background: var(--surface); border: 2px dashed var(--border);
    border-radius: var(--radius); color: var(--text-muted);
}

/* ── Admin tables ────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: var(--space-3) var(--space-4); text-align: left; border-bottom: 1px solid var(--border); }
.table th { background: var(--surface-2); font-weight: 700; }
.table tr:last-child td { border-bottom: 0; }

.pill {
    display: inline-block; padding: 0.15rem 0.6rem; border-radius: 999px;
    font-size: 0.8rem; font-weight: 700;
    background: var(--surface-2); color: var(--text-muted);
}
.pill--ok      { background: var(--success-soft); color: var(--success); }
.pill--warn    { background: var(--warning-soft); color: var(--warning); }
.pill--danger  { background: var(--danger-soft); color: var(--danger); }
.pill--accent  { background: var(--accent-soft); color: var(--accent); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
    margin-top: var(--space-8);
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: var(--space-5) 0;
    color: var(--text-muted);
}
.site-footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); }
.site-footer nav { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.site-footer__credit {
    margin-top: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.muted { color: var(--text-muted); }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.stack > * + * { margin-top: var(--space-4); }
.row { display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center; }
.between { justify-content: space-between; }
.center-text { text-align: center; }

/* ── Read-aloud toolbar ───────────────────────────────────────────────── */
.read-aloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    margin: var(--space-3) 0 var(--space-4);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.read-aloud__field { display: inline-flex; align-items: center; gap: var(--space-2); font-size: 0.9rem; }
.read-aloud__field select {
    padding: 0.25rem 0.5rem; border: 1px solid var(--border);
    border-radius: var(--radius-sm); background: var(--surface); color: var(--text);
    min-height: 2rem; font-size: 0.9rem;
}
.ra-sentence--active {
    background-color: #fde68a !important;    /* clearly visible amber */
    color: #1a1a1a !important;                /* stays readable on amber */
    border-radius: 3px;
    box-shadow: 0 0 0 2px #fde68a;
    transition: background-color 120ms linear;
}
html[data-high-contrast="1"] .ra-sentence--active {
    background-color: #ffff00 !important;
    color: #000000 !important;
    outline: 2px solid #000000;
    box-shadow: none;
}
html[data-read-aloud-highlight="0"] .ra-sentence--active {
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none;
    outline: none;
}

/* ── Reviews & star ratings ────────────────────────────────────────────── */
.stars { color: #f59e0b; letter-spacing: 1px; font-size: 1rem; }
.stars--large { font-size: 1.25rem; }
.stars__empty { color: var(--border-strong); }

/* Clickable star input — reverse-ordered radios to allow ★ hover fill via ~ selector */
.rating-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.1rem; }
.rating-input input[type="radio"] { display: none; }
.rating-input label {
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    color: var(--border-strong);
    transition: color 120ms linear, transform 80ms linear;
    user-select: none;
}
.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
    color: #f59e0b;
}
.rating-input label:hover { transform: scale(1.1); }

.review {
    padding: var(--space-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.track-card__rating {
    display: flex; align-items: center; gap: var(--space-2);
    margin: var(--space-2) 0 var(--space-3);
    font-size: 0.9rem;
}

/* ── Featured reviews on home page ─────────────────────────────────────── */
.featured-reviews {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
}
.featured-reviews__heading {
    text-align: center;
    margin-bottom: var(--space-3);
}
.featured-reviews__stats {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: var(--space-5);
}
.featured-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
}
@media (max-width: 900px) { .featured-reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .featured-reviews__grid { grid-template-columns: 1fr; } }

.featured-review {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-4);
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: var(--space-2);
}
.featured-review__stars {
    font-size: 1.1rem;
    color: #f59e0b;
    letter-spacing: 1px;
}
.featured-review__body {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
    color: var(--text);
    flex: 1;
}
.featured-review__attribution {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Admin "FEATURED" pill */
.pill--featured {
    background: #fef3c7;
    color: #92400e;
    margin-left: var(--space-1);
}

/* ── Public catalog ─────────────────────────────────────────────────────── */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-3);
}
.catalog-card {
    display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-5);
    position: relative;
}
.catalog-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.catalog-card__level {
    align-self: flex-start;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-2);
}
.catalog-card h3 { margin: 0 0 var(--space-2); font-size: 1.1rem; }
.catalog-card__summary {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 var(--space-3);
    flex: 1;
}
.catalog-card__meta {
    font-size: 0.85rem;
    margin: 0 0 var(--space-2);
}
.catalog-card__rating {
    font-size: 0.9rem;
    margin-bottom: var(--space-4);
    min-height: 1.5rem;
}
.catalog-card__cta {
    align-self: flex-start;
    margin-top: auto;
}

/* ── Home page courses teaser ───────────────────────────────────────────── */
.home-courses {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
}
.home-courses__head { text-align: center; margin-bottom: var(--space-5); }
.home-courses__head h2 { margin-bottom: var(--space-2); }
.home-courses__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
}
@media (max-width: 900px) { .home-courses__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .home-courses__grid { grid-template-columns: 1fr; } }

.home-course-card {
    display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-4);
    text-decoration: none; color: var(--text);
    transition: border-color .15s, box-shadow .15s;
}
.home-course-card:hover { border-color: var(--accent); box-shadow: var(--shadow); color: var(--text); }
.home-course-card__level {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    color: var(--accent); letter-spacing: 0.04em;
    margin-bottom: var(--space-2);
}
.home-course-card h3 {
    margin: 0 0 var(--space-2);
    font-size: 1rem;
    flex: 1;
}
.home-course-card__rating {
    font-size: 0.85rem;
    display: flex; align-items: center; gap: var(--space-2);
}
.home-courses__cta {
    text-align: center;
    margin-top: var(--space-5);
}
