/* ============================================================
   store-badges.css — кнопки загрузки из Google Play и App Store
   ============================================================ */

.store-badges-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 30px;
    justify-content: center;
}

@media (min-width: 900px) {
    .store-badges-row {
        margin-top: 0;
        justify-content: flex-start;
    }
}

.store-badge-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.store-badge-link:hover {
    opacity: 0.85;
}

/* Размеры пропорциональны оригинальным PNG:
   Google Play 320×124 → 228×88
   App Store   320×108 → mobile 198×67, desktop 180×60 */

.store-badge-image--google-play {
    display: block;
    width: 228px;
    height: 88px;
}

.store-badge-image--app-store {
    display: block;
    width: 198px;
    height: 67px;
}

@media (min-width: 900px) {
    .store-badge-image--app-store {
        width: 180px;
        height: 60px;
    }
}
