.page-galeria__grid{
    width:min(1200px, 100%);
    margin: 0 auto;
    columns: 3 260px;
    column-gap: 1em;
}
.page-galeria__item-image{
    display: block;
    margin-bottom: 1em;
    width:100%;
    border-radius: 12px;
    object-fit: cover;
    cursor: zoom-in;
}

.page-gallery__lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 9999;
}

.page-gallery__lightbox.is-active {
    opacity: 1;
    pointer-events: all;
}

.page-gallery__lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.page-gallery__lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    display: block;
}

.page-gallery__lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-gallery--lightbox-open {
    overflow: hidden;
}
