/* lib/styles/pages/not_found_page.css */

.not-found-page {
    padding: 96px 0 128px 0;
    background-color: var(--color-paper-white, #F7F7F5);
    min-height: calc(100vh - 250px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.not-found-page__content {
    background-color: #FFFFFF;
    border: 1px solid var(--color-light-grey, #E0E0DC);
    border-radius: 12px;
    padding: 64px 48px;
    box-shadow: 0 4px 12px rgba(16, 32, 48, 0.03);
    text-align: center;
    margin: 0 auto;
}

.not-found-page__icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.not-found-page__icon-wrapper .icon--xl {
    font-size: 64px;
    color: var(--color-guidance-teal, #1D7670);
}

.not-found-page__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-justice-blue, #1F3D63);
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.not-found-page__description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-neutral-navy, #102030);
    opacity: 0.85;
    margin: 0 auto 32px auto;
    max-width: 420px;
}

.not-found-page__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .not-found-page {
        padding: 48px 0 64px 0;
    }

    .not-found-page__content {
        padding: 48px 24px;
    }

    .not-found-page__title {
        font-size: 28px;
    }

    .not-found-page__actions {
        flex-direction: column-reverse;
    }

    .not-found-page__actions>* {
        width: 100%;
    }
}