/* Bannière "Ajouter en tant que source préférée sur Google" */
.bps-preferred-source {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #178E79;
    border-radius: 15px;
    background: #fff;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color .2s ease, box-shadow .2s ease, transform .1s ease;
}

.bps-preferred-source:hover,
.bps-preferred-source:focus-visible {
    background: #f5fbf9;
    box-shadow: 0 2px 8px rgba(23, 142, 121, 0.15);
    color: #1a1a1a;
    text-decoration: none;
}

.bps-preferred-source:active {
    transform: translateY(1px);
}

.bps-preferred-source__logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.bps-preferred-source__text {
    flex: 1;
    text-align: left;
}

.bps-preferred-source__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #178E79;
    transition: transform .2s ease;
}

.bps-preferred-source:hover .bps-preferred-source__arrow {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 480px) {
    .bps-preferred-source {
        padding: 12px 14px;
        gap: 12px;
        font-size: 14px;
    }
    .bps-preferred-source__logo {
        width: 28px;
        height: 28px;
    }
}