.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 25, 31, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.image-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.image-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
