/**
 * Front styles for core/cover block
 * Border radius for 50-50 layouts only.
 * Overlay color + text color are handled in theme.json (styles.blocks.core/cover.css).
 */

/* Border radius for 50-50 layout */
.wp-block-cover.img-50-50-left {
  border-top-left-radius: var(--wp--custom--primitives--size--80, 8px);
  border-bottom-left-radius: var(--wp--custom--primitives--size--80, 8px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 768px) {
  .wp-block-cover.img-50-50-left {
    border-top-left-radius: var(--wp--custom--primitives--size--80, 8px);
    border-top-right-radius: var(--wp--custom--primitives--size--80, 8px);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
