.not-found {
    flex: 1;
    display: flex;
    align-items: center;
}

.not-found .wrapper {
    align-items: center;
    justify-content: center;
}

.not-found .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
    max-width: 480px;
}

.not-found .code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.2;
}

.not-found .title {
    font-size: var(--font-xxl);
    font-weight: 700;
}

.not-found .description {
    font-size: var(--font-sm);
    color: var(--color-black-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .not-found .content {
        gap: var(--space-lg);
    }

    .not-found .title {
        font-size: var(--font-xl);
    }

    .not-found .description {
        font-size: var(--font-xs);
    }
}