.jgb-tiled-gallery {
width: 100%;
margin-left: auto;
margin-right: auto;
}
.jgb-tiled-gallery.aligncenter { max-width: 100%; }
.jgb-tiled-gallery.alignwide   { max-width: 1200px; }
.jgb-tiled-gallery.alignfull   { max-width: 100vw; margin-left: calc(50% - 50vw); }
.tiled-gallery__gallery { width: 100%; } .tiled-gallery__row {
display: flex;
flex-wrap: nowrap;
gap: 4px;
margin-bottom: 4px;
}
.tiled-gallery__row:last-child { margin-bottom: 0; } .tiled-gallery__col {
flex-shrink: 0;
min-width: 0;
overflow: hidden;
position: relative;
} .tiled-gallery__item {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
}
.tiled-gallery__item img {
display: block;
width: 100%;
height: 200px; object-fit: cover;
transition: transform .3s ease;
}
.tiled-gallery__item a:hover img,
.tiled-gallery__item img:hover {
transform: scale(1.03);
} .tiled-gallery__caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 6px 10px;
background: rgba(0,0,0,.5);
color: #fff;
font-size: 0.8rem;
text-align: center;
opacity: 0;
transition: opacity .2s;
}
.tiled-gallery__item:hover .tiled-gallery__caption { opacity: 1; }  .is-style-circle .tiled-gallery__item img {
border-radius: 50%;
height: 160px;
width: 160px;
object-fit: cover;
}
.is-style-circle .tiled-gallery__col {
display: flex;
align-items: center;
justify-content: center;
} .is-style-square .tiled-gallery__item img {
height: 0;
padding-bottom: 100%;
position: relative;
}
.is-style-square .tiled-gallery__item {
aspect-ratio: 1 / 1;
}
.is-style-square .tiled-gallery__item img {
height: 100%;
padding-bottom: 0;
} .is-rounded .tiled-gallery__item img {
border-radius: 8px;
} @media (max-width: 600px) {
.tiled-gallery__row { flex-wrap: wrap; }
.tiled-gallery__col { flex-basis: 50% !important; }
.tiled-gallery__item img { height: 140px; }
}