Проще всего поставить картинку абсолютом с right: 0; bottom: 0, так же дать ей object-fit: contain, и ограничить по max-width и max-height
.img-class {
position: absolute;
right: 0;
bottom: 0;
max-width: 300px;
max-height: 300px;
width: auto;
height: auto;
object-fit: contain;
}