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

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