@layer components {
    .wizard__content {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .wizard__results {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 1rem;
    }

    .wizard__result {
        background: #fffef2;
        border: 1px solid rgba(0, 0, 0, .08);
        border-radius: 6px;
        padding: 1rem;
    }

    .wizard__result-title {
        font-weight: 700;
    }

    .wizard__reject {
        text-align: center;
        font-weight: 800;
        font-size: clamp(1.25rem, 4vw, 2rem);
        color: #fff;
        background: #b12a2a;
        padding: 1rem;
        transform: rotate(-3deg);
        animation: reject-drop .45s ease both;
        margin: 40px;
    }

    .wizard__nav {
        display: flex;
        gap: .75rem;
        margin-top: 1rem;

        & .wizard__nav-btn {
            appearance: none;
            background: #ebe2c4;
            border: 1px solid rgba(0, 0, 0, .2);
            border-radius: 4px;
            padding: .5rem .75rem;
            font-family: var(--font-typewriter, 'Courier New', Courier, monospace);
            cursor: pointer;
            transition: transform .1s ease;

            &:hover {
                transform: translateY(-1px);
            }
        }
    }

    @keyframes reject-drop {
        from {
            opacity: 0;
            transform: translateY(-16px) rotate(-6deg);
        }
        to {
            opacity: 1;
            transform: translateY(0) rotate(-3deg);
        }
    }

    .u-hidden {
        border: 0 !important;
        clip: rect(1px, 1px, 1px, 1px) !important;
        -webkit-clip-path: inset(50%) !important;
        clip-path: inset(50%) !important;
        height: 1px !important;
        margin: -1px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        width: 1px !important;
        white-space: nowrap !important;
    }
}
