@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
.dhwp_block_image_links_repeater {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;

}
@media screen and (max-width:992px) {
    .dhwp_block_image_links_repeater {
        display: block;
    }
    
}
.dhwp_image_links_repeater_item {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
@media screen and (max-width:992px) {
    .dhwp_image_links_repeater_item {
        display: block;
        max-height: 220px;
        overflow: hidden;
    }
}
.dhwp_image_links_repeater_item > a {
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 3;
    position: absolute;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: center;
    justify-items: center;
    text-decoration: none;
    background: rgba(0,0,0,0.8);
    /* backdrop-filter: blur(1px); */
    padding: 20px;
}

.dhwp_image_links_repeater_item.has_button > a {
    grid-template-rows: 70% auto;
}
.dhwp_image_links_repeater_item > a:hover {
    background: rgba(0,0,0,0.6);
}
.dhwp_image_links_repeater_item > img.image_link_placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}
.dhwp_image_links_repeater_item > a span.image_link_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 2;
}
.dhwp_image_links_repeater_item > a span.image_link_image img {
    z-index: 3;
    opacity: 0.01;
}
.dhwp_image_links_repeater_item > a span.image_link_headline {
    display: block;
    z-index: 4;
    font-size: 6vw;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Play", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #fff;
    color: transparent;
    transition: all .3s ease;
}
.dhwp_image_links_repeater_item.has_button > a span.image_link_headline {
    align-self: flex-end;
}
.dhwp_image_links_repeater_item > a:hover span.image_link_headline {
    color: rgba(255,255,255,1);
}
@media screen and (max-width:992px) {
    .dhwp_image_links_repeater_item > a span.image_link_headline {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.dhwp_image_links_repeater_item > a span.image_link_btn {
    display: block;
    z-index: 4;
    max-width: 90%;
    background: #af2413;
    color: #fff;
    font-family: "Play", Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-weight: 400;
    text-decoration: none;
    padding: 10px 40px;
    text-transform: uppercase;
}