.mpg-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.mpg-gallery img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.3s;
}

.mpg-gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox */
#mpg-lightbox-overlay {
    display:none;
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
    z-index:9999;
}
#mpg-lightbox-overlay img {
    max-width:90%;
    max-height:90%;
    border-radius:6px;
}
#mpg-close {
    position:absolute;
    top:20px; right:30px;
    color:white;
    font-size:40px;
    cursor:pointer;
}