/* Bandeau d'invitation aux notifications push — voir assets/js/push-notifications.js */
.ecla-push-banner__inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ecla-push-banner__icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}
.ecla-push-banner__text {
    flex: 1 1 200px;
    min-width: 180px;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}
.ecla-push-banner__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}
.ecla-push-btn {
    border: none;
    border-radius: 20px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    min-height: 38px;
    transition: background 0.2s, opacity 0.2s, transform 0.15s;
}
.ecla-push-btn:active {
    transform: scale(0.97);
}
.ecla-push-btn--primary {
    background: #ffffff;
    color: #1a6b3a;
}
.ecla-push-btn--primary:hover {
    background: rgba(255, 255, 255, 0.88);
}
.ecla-push-btn--ghost {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.ecla-push-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.24);
}
@media (max-width: 480px) {
    .ecla-push-banner__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .ecla-push-banner__actions {
        margin-left: 0;
        justify-content: center;
    }
}
