/* --- Podstawowe style galerii --- */
.pup-gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Odstęp między zdjęciami */
    justify-content: center;
}

.pup-gallery-item {
    flex-shrink: 0; /* Zapobiega kurczeniu się elementów */
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pup-gallery-item:hover {
    transform: scale(1.05);
}

.pup-gallery-item a {
    display: block;
    line-height: 0; /* Usuwa dodatkową przestrzeń pod obrazkiem */
}

.pup-gallery-item img {
    max-width: 100%;
    display: block;
    border-radius: 5px;
    border: 2px solid #fff;
}

/* --- Styl Masonry (opcjonalny) --- */
.pup-gallery-style-masonry {
    display: block; /* Nadpisuje flex */
    /* Reszta stylów dla masonry jest dodawana dynamicznie przez <style> w shortcode.php */
}