/* ============================================================
   Page-level styles — MS_site
   Error pages, shared page utilities
   ============================================================ */

/* ---------- Error pages (404 / 500) ---------- */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-h) - 200px);
    padding-block: var(--space-8);
}

.error-page__card {
    text-align: center;
    max-width: 480px;
}

.error-page__code {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    margin-bottom: var(--space-3);
}

.error-page__title {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-4);
}

.error-page__desc {
    font-size: var(--fs-md);
    color: var(--text-muted);
    margin-bottom: var(--space-6);
    max-width: 100%;
}
