/* ==========================================================================
   LIGHTBOX — ingrandimento tile Instagram.
   ========================================================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    cursor: zoom-out;
}

.lightbox.is-open {
    display: flex;
}

.lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: var(--shadow-modal);
}

.lightbox__close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    color: var(--color-on-dark);
    font-size: 2.25rem;
    line-height: 1;
    font-weight: var(--fw-light);
}
