/********************************************************/
/*
/*      Cake Tools Block CSS
/*
/********************************************************/
/******************************/
/* Image
/******************************/
.wp-block-image {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    overflow: clip;

    img {
        position: relative;
        left: 50%;
        flex-basis: 100%;
        max-width: unset;
        max-height: unset;
        object-fit: cover;
        object-position: var(--focal-x, 50%) var(--focal-y, 50%);
        translate: -50%;
    }
}