/* Page-specific overrides — keep this file thin */

/* ── Home: hero extra spacing ── */
.home-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
}

/* ── About: photo styling ── */
.about-photo {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

/* ── 404 page ── */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-page__code {
    font-size: clamp(5rem, 10vw, 10rem);
    font-family: var(--font-heading);
    font-weight: 700;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
