.animated-image-block {
    position: relative;
    z-index: -1;
}
.animated-image-block .animated-img {
    width: 100%;
    border-radius: 32px;
    transform-origin: top;
    transform: scale(0.5); /* Initial scale, animated with js */
    transition: transform 0.7s ease-in-out;
}