.image-link img.sizeref-image {
    opacity: 0;
}

.image-link {
    width: 100%;
    position: relative;
    overflow:hidden;
}

.image-link > img:not(.sizeref-image) {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.image-link-content {
    position: absolute;
    bottom: 0;
    padding: 30px;
    color: #FFFFFF;
    z-index: 3;
    width: 100%;
    height: 100%;
}


a.image-link-button {
    background: #C2B162;
    padding: 14px 30px;
    border-radius: 20px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    position: absolute;
    left: 30px;
    bottom: 30px;
    opacity: 0;
    transform: translateY(100%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.image-link:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #004B3166;
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.image-link-text {
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 36px;
    font-family: 'big-caslon-fb';
    text-transform: uppercase;
    line-height: 1;
}

.image-link:hover > img {
    transform: scale(1.1);
}

.image-link:hover .image-link-button {
    opacity:1;
    transform: translateY(0);
}

.image-link:hover:after {
    opacity:1;
}

.editor-styles-wrapper  .image-link-text p {
    line-height:1;
}

.image-link.backend .image-link-content {
    padding:0;
}