.wp-block-tpi-tpi-link-card {
    display: block;
    padding: 2rem;
    border-top-left-radius: 0rem;
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 0rem;
    background-color: #fff;
    margin: 0;
    transition: all .3s;

    &:hover {
        transform: scale(1.015);
        transform-origin: center;
        box-shadow: 0 3px 8px 0px rgba(0,0,0,0.1);
        -webkit-box-shadow: 0 3px 8px 0px rgba(0,0,0,0.1);
        -moz-box-shadow: 0 3px 8px 0px rgba(0,0,0,0.1);

    }

    & figure {
        margin: 0;
    }

    & img {
        width: 100%;
        aspect-ratio: 2/1;
        object-fit: contain !important;
        object-position: center;
        /* background-color: #fff;
        border: 6px solid #fff; */
    }

}