
.piwan-gallery{
column-count:4;
column-gap:var(--piwan-gap,16px);
margin:30px 0;
}

.piwan-gallery.cols-2{
column-count:2;
}

.piwan-gallery.cols-3{
column-count:3;
}

.piwan-gallery.cols-4{
column-count:4;
}

.piwan-gallery.cols-5{
column-count:5;
}

.piwan-gallery.cols-6{
column-count:6;
}

.piwan-item{
display:block;
margin-bottom:var(--piwan-gap,16px);
overflow:hidden;
border-radius:var(--piwan-radius,16px);
break-inside:avoid;
background:#f2f2f2;
}

.piwan-item img{
width:100%;
display:block;
transition:.35s ease;
}

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

.piwan-item.wide img{
aspect-ratio:16/10;
object-fit:cover;
}

@media(max-width:768px){

.piwan-gallery{
column-count:2 !important;
}

}
