.wp-block-gallery img,
.wp-block-image img {
    cursor: zoom-in;
}

.ggll-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.94);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 30px;
}

.ggll-lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    animation: ggllZoom .25s ease;
}

.ggll-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}

.ggll-prev,
.ggll-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    padding: 20px;
}

.ggll-prev {
    left: 20px;
}

.ggll-next {
    right: 20px;
}

@keyframes ggllZoom {

    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {

    .ggll-prev,
    .ggll-next {
        font-size: 40px;
    }

    .ggll-close {
        font-size: 38px;
    }
}