.app-banner {
    display: flex;
    width: 100%;
    background: #f5f5f5;
    color: #222222;
    font-family: "DM Sans", sans-serif;
    overflow: hidden;
}

.app-banner__intro {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 24px clamp(16px, 3vw, 24px);
}

.app-banner__headline {
    margin: 0;
    color: #0173b9;
    font-size: clamp(16px, 1.6vw, 24px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0.5px;
}

.app-banner__card {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    padding: 14px 18px;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 2px 6px 0 #e3e3e3;
}

.app-banner__card-icon {
    flex: 0 0 auto;
    width: clamp(48px, 5vw, 55px);
    height: clamp(48px, 5vw, 55px);
    border-radius: 11px;
    box-shadow: 2px 2px 11px 0 rgba(0, 0, 0, 0.25);
}

.app-banner__card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.app-banner__card-title {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 700;
    line-height: 1.28;
    color: #222222;
}

.app-banner__card-desc {
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 400;
    line-height: 1.28;
    color: #000000;
}

.app-banner__media {
    flex: 1 1 55%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 14px clamp(16px, 2vw, 28px);
    min-height: clamp(240px, 20vw, 282px);
    padding: 20px clamp(16px, 4vw, 72px);
    background-image: var(--app-banner-bg-desktop);
    background-repeat: no-repeat;
}

.app-banner__cta {
    flex: 0 0 100%;
    max-width: 272px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.5px;
    text-align: center;
}

.app-banner__cta-container {
    display: flex;
    gap: 25px;
    width: 100%;
    justify-content: center;

    @media (max-width: 767.98px) {
        flex-direction: column;
    }
    
}

.app-banner__stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-banner__store {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 99px;
    padding: 6px 10px;
    border-radius: 8px;
    background-color: #000000;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.14);
    cursor: pointer;
}

.app-banner__store:hover {
    text-decoration: none;
}

.app-banner__store-icon {
    width: 13px;
    height: 15px;
    flex: 0 0 auto;
}

.app-banner__store-label {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.app-banner__store-subtitle {
    font-weight: 400;
}

.app-banner__qr {
    width: clamp(110px, 12vw, 134px);
    height: auto;
    align-self: center;
}

@media (max-width: 767.98px) {

    .app-banner__qr{
        align-self: flex-start;
        margin: 0px 10px;
    }

    .app-banner {
        flex-direction: column;
    }

    .app-banner__intro {
        align-items: center;
        gap: 21px;
        padding: 20px 0 5px;
        width: 310px;
        margin-inline: auto;
    }

    .app-banner__headline {
        max-width: 320px;
        text-align: center;
    }

    .app-banner__media {
        flex: 1 1 auto; 
        gap: 28px;
        min-height: 360px;
        padding: 20px;
        background-image: var(--app-banner-bg-mobile);
        align-content: flex-end;
        background-size: cover;
    }

    .app-banner__cta {
        margin: 0 auto;
    }

 
    .app-banner__stores {
        order: 2;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .app-banner__store {
        flex: 1 1 0;
        min-width: 0;
        max-width: 24%;
        height: 38px;
    }
}

