.Gallery--single{
    position: relative;
}
.Gallery--single-image{
    padding-top: calc(100% / 16 * 9);
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    overflow: hidden;
}
.Gallery--single-image-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-position: center;
    object-fit: contain;
    z-index: 0;
}
.Gallery-single-fullscreen-icon {
    background: url("./lightboximgs/ic.fullscreen.svg");
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 9;
    transition: .3s all;
    transform: scale(0.99);
    outline: none;
}
.Gallery-single-fullscreen-icon:hover {
    transform: scale(1.3);
    transition: .3s all;
}
@media (max-width: 991px) {
    .Gallery-single-fullscreen-icon:hover {
        transform: none;
    }
}
.Gallery--single-image:before{
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    z-index: -1;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    filter: blur(15px);
}
.Gallery--single-description{
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    color: var(--site-color-hidden);
    padding: 10px;
}
@media (min-width: 760px){
    .Gallery--single{
        /*margin: 0 -20px;*/
    }
    .Gallery--single-description{
        padding: 10px 20px;
    }
}
@media (min-width: 780px){
    .Gallery--single{
        /*margin: 0 -30px;*/
    }
    .Gallery--single-description{
        padding: 10px 30px;
    }
}