/* ===== Bandeau annonceur (uc-banner-top) ===== */
.uc-banner-top {
    position: relative;
    z-index: 999;
    background: linear-gradient(90deg, #014b93 0%, #0161b8 50%, #014b93 100%);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.12);
    isolation: isolate;
}

.uc-banner-top.uc-alert {
    background: linear-gradient(90deg, #014b93 0%, #0161b8 50%, #014b93 100%);
    color: #ffffff;
    margin-bottom: 0;
    padding: 0.5rem 1rem;
}

.uc-banner-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.uc-banner-tag {
    display: flex;
    align-items: center;
    transform: rotate(-3deg);
    flex: 0 0 auto;
    padding-left: 0.75rem;
}

.uc-banner-tag-svg {
    width: 160px;
    height: auto;
    filter: none;
    position: relative;
    z-index: 1;
}

.uc-banner-tag-svg path:not([fill="none"]) {
    fill: #D4FF4F !important;
}

.uc-banner-tag-svg circle {
    fill: #014b93 !important;
}

.uc-banner-tag-svg text {
    fill: #014b93 !important;
}

.uc-banner-copy {
    flex: 1 1 320px;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.uc-banner-title {
    margin: 0;
    font-size: clamp(1rem, 1.2vw + 0.8rem, 1.15rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #ffffff;
}

.uc-banner-subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9);
}

.uc-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1rem;
    border-radius: 999px;
    background: #D4FF4F;
    color: #06283f;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
    position: relative;
    z-index: 2;
}

.uc-banner-cta:hover,
.uc-banner-cta:focus {
    color: #06283f;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .uc-banner-top-inner {
        justify-content: center;
        text-align: center;
    }

    .uc-banner-copy {
        order: 2;
    }

    .uc-banner-cta {
        order: 3;
    }
}
