/* ==========================================================================
   Store Badges — App Store & Google Play official-style buttons
   White background, black border — applies to all pages, all screen sizes
   ========================================================================== */

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    background: #ffffff;
    border: 1.5px solid #1c1c1e;
    border-radius: 10px;
    text-decoration: none !important;
    color: #000000 !important;
    min-width: 148px;
    transition: opacity 0.15s ease;
    /* reset inherited btn/ezv2 styles */
    font-size: inherit;
    line-height: 1;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    text-shadow: none;
    box-shadow: none;
    background-image: none;
    vertical-align: middle;
    margin: 6px 8px 6px 0;
}

.store-badge:hover,
.store-badge:focus {
    opacity: 0.75;
    color: #000000 !important;
    text-decoration: none !important;
}

.store-badge__icon {
    flex-shrink: 0;
    display: block;
}

.store-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.store-badge__text small {
    font-size: 10px;
    font-weight: 400;
    color: #1c1c1e;
    letter-spacing: 0.01em;
    display: block;
    text-transform: none;
}

.store-badge__text strong {
    font-size: 19px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
    white-space: nowrap;
    display: block;
    font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    text-transform: none;
}

/* Hero section spacing */
#home-section-wrapper .buttons .store-badge {
    margin: 0 10px 14px;
}

/* Feature section button row spacing */
.feature-btns .store-badge {
    margin: 0 10px 10px 0;
}

/* Blog sidebar CTA */
.bp-sidebar-cta .store-badge {
    display: flex;
    margin: 0 0 10px;
}

/* Mobile: slightly smaller */
@media (max-width: 599px) {
    .store-badge {
        min-width: 130px;
        padding: 8px 13px;
        gap: 8px;
    }
    .store-badge__text strong {
        font-size: 17px;
    }
}
