.button-container {
    display: block;
    width: 100%;
    max-width: 640px;
    margin: auto;
    margin-bottom: 20px;
}

.img-wipe {
    position: relative;
    width: 100%;
    aspect-ratio: 640 / 160;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
}

.img-wipe img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-top {
    clip-path: inset(0 0 0 100%);
    transition: clip-path 0.4s cubic-bezier(.4,0,.2,1);
}

.img-wipe:hover .img-top {
    clip-path: inset(0 0 0 0);
}