/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,14,24,.93);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    &.open {
        display: flex;
    }
    .lb-img {
        max-width: 90vw;
        max-height: 88vh;
        width: 90vw;
        height: 88vh;
        border-radius: 6px;
        object-fit: contain;
    }
    .lb-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 38px;
        height: 38px;
        border-radius: 9px;
        background: rgba(255,255,255,.1);
        border: 1px solid rgba(255,255,255,.15);
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .15s;
        & svg {
            width: 18px;
            height: 18px;
        }
    }
    .lb-close:hover {
        background: rgba(255,255,255,.2);
    }
    .lb-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.15);
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .15s;
        & svg {
            width: 18px;
            height: 18px;
        }
    }
    .lb-nav:hover {
        background: rgba(255,255,255,.22);
    }
    .lb-prev {
        left: 1.25rem;
    }
    .lb-next {
        right: 1.25rem;
    }
}

