.gallery {}

.gallery__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.gallery__item__image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--template-border-radius--large);
}

/* gallery--swiper */

.gallery--swiper {}

/* gallery--thumnail */

.gallery--thumbnail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    grid-auto-rows: 210px;
    column-gap: 20px;
    row-gap: 20px;
}


/* Styles */

/* gallery--swiper-2 */

.gallery--swiper-2 .gallery__item {
    min-height: 300px;
    min-height: clamp(250px, 45vw, 400px);
}
