﻿.store {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    border-radius: 38px;
    overflow: hidden;
}
.store img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.store-cta {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1em 2em;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #E53029;
    border-radius: 38px 0 38px 0;
}
.store-cta::after {
    content: '';
    clip-path: path("M0.75 4.77344C0.335786 4.77344 0 5.10922 0 5.52344C0 5.93765 0.335786 6.27344 0.75 6.27344L0.75 5.52344L0.75 4.77344ZM13.2803 6.05377C13.5732 5.76087 13.5732 5.286 13.2803 4.99311L8.50736 0.220136C8.21447 -0.0727574 7.73959 -0.0727574 7.4467 0.220136C7.15381 0.513029 7.15381 0.987903 7.4467 1.2808L11.6893 5.52344L7.4467 9.76608C7.15381 10.059 7.15381 10.5338 7.4467 10.8267C7.73959 11.1196 8.21447 11.1196 8.50736 10.8267L13.2803 6.05377ZM0.75 5.52344L0.75 6.27344L12.75 6.27344V5.52344V4.77344L0.75 4.77344L0.75 5.52344Z");
    position: absolute;
    top: 50%;
    right: 15px;
    width: 15px;
    height: 10px;
    background-color: #fff;
    transform: translate(0, -50%);
    transition: transform .2s;
}
.store-cta:hover::after {
    transform: translate(5px, -50%);
}

@media screen and (max-width: 768px) {
    .store {
        border-radius: 20px;
        height: 200px;
    }
    .store-cta {
        font-size: 14px;
        text-transform: uppercase;
        border-radius: 10px 0;
    }
    .store-cta::after {
        right: 7px;
    }
}