Каким образом можно реализовать адаптив псевдоэлемента?
Чтоб он одновременно сжимался вместе с блоком и не вылезал за пределы его?
Сейчас при сжатии экрана, он начинает выскакивать за пределы блока
<div class="who-we-are__image">
<img class="image__who-we-are" src="img/pexels-photo-406014 3.jpg" alt="">
</div>
.who-we-are__image {
position: relative;
text-align: center;
margin-top: -29%;
padding: 0 30px;
}
.who-we-are__image::before {
position: absolute;
top: -33%;
left: 0px;
content: '';
background: url('../img/Blob\ 2.png') 0 0 / 100% no-repeat;
width: 656px;
height: 471px;
}
.image__who-we-are {
width: 100%;
max-width: 846px;
border-radius: 40px;
position: relative;
}