/* Badges de telechargement App Store / Google Play (design unique pour toute l'application) */
.rns-sb-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .rns-sb-badges {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .rns-sb-badges {
        justify-content: flex-start;
    }
}

.rns-sb-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 999px;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.rns-sb-badge:hover {
    background: #f1f5f9;
    color: #000000;
    transform: translateY(-1px);
}

.rns-sb-badge-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.rns-sb-badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.rns-sb-badge-small {
    font-size: 0.75rem;
}

.rns-sb-badge-big {
    font-size: 1.125rem;
    font-weight: 600;
}
