.type-image-overlay {
    position: absolute;
    z-index: 999;
    left: 50%; 
    top:50%;
    text-align: center;
    background: var(--color-blue);
    color: #222;

    padding: 0px;
    opacity: 0;
    border-radius: 50%;
    width: 100px;
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 1/1;
    transition: transform 0.3s, opacity 0.3s;
    transform: translate(-50%,-35%);
    font-size: 14px;
    line-height: 130%;
    font-weight: 500;
}
.type-image-overlay:hover {
    background: var(--color-teal);
    color: #fff;
}
.type-image {
    border: 0px solid white;
}
.thumb-holder{
    position: relative;
    z-index: 1;
}
.thumb-image-holder:hover .type-image-overlay{
   opacity: 1;
   transform: translate(-50%,-50%);
}
.thumb-image-holder:hover .ico-zoom {
   opacity: 0;
}
.thumb-image-holder {
    position: relative;
}
.type-credit {
    width: 100%;
    position: relative;
    z-index: 999;
}
.ico-zoom {
    position: absolute;
    right:15px;
    top: 15px;
   
    width: 30px; height: 30px;
    background: var(--color-blue);
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ico-zoom i {
    color: white;
    font-size: 1.25em;
}
.line-top {
    width: 100%;
    height: 1px;
    border-top: 1px solid white;
    margin-bottom:1.5em;
}
.subinfo {
    margin-top: 8px;
}
.home_links_holder {
    background: var(--color-khaki);
    border-radius: 0px 30px 30px 0px;
    height: 100%;
    overflow: hidden;
   
}
.home_links_holder .type-image {
    border: 0px solid white;
}
.textbox {
    padding: 0em 1.25em 1.25em;
}
.event-holder figure {
    aspect-ratio: 2/1;
}


@media screen and (min-width: 992px) {
    .textbox {
        padding: 1em 2em 2em;
    } 
    .event-holder figure {
        aspect-ratio: 2/1.1;
    }
}