.custom-gallery-masonry {
    column-count: 3;
    column-gap: 12px;
}

@media (max-width: 768px) {
    .custom-gallery-masonry { column-count: 2; }
}
@media (max-width: 480px) {
    .custom-gallery-masonry { column-count: 1; }
}

.custom-gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
}

.custom-gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.custom-gallery-item:hover img {
    transform: scale(1.03);
}

.custom-gallery-lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cgl-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.cgl-close, .cgl-prev, .cgl-next {
    position: absolute;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.cgl-close { top: 20px; right: 30px; }
.cgl-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.cgl-next { right: 20px; top: 50%; transform: translateY(-50%); }