@charset "UTF-8";
/* IMAGE COVER */
.image {
    display: block;
    width: 100%;
    position: relative;
}
.image:before{
    content: "";
    display: block;
    padding-top: 100%;
}
.img-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.img-container a:hover {
    cursor: zoom-in;
}

.img-container .featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
.custom-object-fit {
    position: relative;
    background-size: cover;
    background-position: center center;
}
.custom-object-fit .featured-image {
    opacity: 0;
}
.img-container.custom-object-fit {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}