.wp-block-image {
    position: relative;

    /* Variation: Gradient and Carot */
    &.is-style-gradient-and-carot {
        background: linear-gradient(270deg, #f8f8f8, #f7f7f7, hsla(0, 0%, 80%, .6));
    }

    &.is-style-gradient-and-carot::after {
        content: '';
        position: absolute;
        bottom: 0px;
        /* Adjust this value based on your specific needs */
        left: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 10px 10px;
        /* Adjust size of the arrow */
        border-color: transparent transparent white transparent;
        /* Color only the bottom border */
        transform: translateX(-50%);
    }

    /* Variation: Logo Mask */
    &.is-style-logo-mask {
        img {
            mask-image: url('#mask');
            object-fit: cover;
            width: 542px;
            height: 373px;
        }
    }
}