I'm building our companies new website, but am running into an issue.
The designer created images like this:
So this bottom right corner. The other corners are all border-radius: 40px;.
I'm trying to use a clip-path to create this type of inverse border, but am not that experienced with clip-paths.
This is how far I got:
.image {
clip-path: polygon(0 0, 100% 0, 100% 83%, 87% 86%, 83% 100%, 0 100%);
}
<img src="https://staging.mailmeisters.nl/wp-content/uploads/2024/01/Team-foto-mobiel.jpg" class="image" alt="Image with wave effect"/>
But I need this wavey, inverse border effect as shown in the image. I know you can use different shapes in one clip path, like multiple circles, but did not manage to create it.
Does anyone know how to build this clip-path like this?

Use mask