/* Ability to cut image corner. See wasp-blocks.php. */
.wp-block-image.is-style-wasp-cut-br img {
	object-fit: cover;
	width: 100%;
	height: auto;
   	clip-path: polygon(
        0% 0%,
      	100% 0%,
       	100% calc(100% - 75px),
       	calc(100% - 75px) 100%,
       	0% 100%
   	);
	aspect-ratio: 1/1;

	@media (min-width: 480px) {
		aspect-ratio: 2.48/1;
	}
}
