/**
 * Full-height cropped image for a quote layout.
 * Opt-in: apply the `siku-quote` class to the Row containing the image and text.
 *
 * `left-swoop` / `right-swoop`: apply to the same Row (alongside `siku-quote`)
 * to round the image's bottom-left or bottom-right corner.
 *
 * On mobile, reverse the Row's column order with core's own
 * `is-style-reverse-mobile` block style (see reverse-column-stack-mobile plugin).
 */

.siku-quote {
    padding: 0;
}

.siku-quote img {
    height: 100% !important;
    object-fit: cover;
    width: 100%;
}

/* Note: !important is necessary to override the WP editor style */

.siku-quote .left-swoop img {
    border-bottom-left-radius: 70% !important;
}

.siku-quote .right-swoop img {
    border-bottom-right-radius: 70% !important;
}

.siku-quote figure {
    height: 100%;
}
