/* Target only the LARGE IMAGE pattern */
.wp-block-cover.has-chevron-background .wp-block-image {
    position: relative;
    width: min(1236px, 100%);
    margin-inline: auto;
    overflow: visible; /* or hidden if you want cropped chevrons */
}

/* Normalize the image to the same aspect ratio box */
.wp-block-cover.has-chevron-background .wp-block-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1236 / 695;
    object-fit: cover; /* or contain if you never want crop */
    border-radius: 24px;
}

/* Keep the actual image above the chevrons */
.wp-block-cover.has-chevron-background .wp-block-image img {
    position: relative;
    z-index: 2;
}
