/* ---- Section Zone d'intervention ---- */

main #zone_intervention {
    position: relative;
}

main #zone_intervention .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../media/colored_background.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .08;
    z-index: -1;
}

main #zone_intervention h2 {
    text-align: center;
}

main #zone_intervention .cta_button {
    display: block;
    background: linear-gradient(135deg, #8B1681, #A06BFF);
    border: none;
    border-top: 1px solid #888;
    border-bottom: 1px solid #888;
    color: white;
    border-radius: 8px;
    width: min(600px,100%);
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
    transition: .4s;
    padding: 12px 0;
    margin: 62px auto 12px;
}

.zone_intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.6;
    color: RGBa(20, 20, 20, .85);
}

.zone_search {
    position: relative;
    max-width: 420px;
    margin: 0 auto 32px;
}

.zone_search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: RGBa(20, 20, 20, .4);
}

.zone_search input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px 12px 42px;
    border-radius: 12px;
    border: 1px solid RGBa(20, 20, 20, .15);
    background-color: white;
    font-size: 15px;
    font-family: inherit;
    box-shadow: 0 0 8px RGBa(10, 10, 10, .05);
    transition: .3s;
}

.zone_search input:focus {
    outline: none;
    border-color: var(--BLUE-COLOR);
    box-shadow: 0 0 0 3px var(--BLUE-COLOR-TRANSPARENT);
}

.zone_band {
    max-width: 1000px;
    margin: 0 auto 24px;
    animation: zoneFadeIn .35s ease;
}

.zone_band_label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--BLUE-COLOR);
    margin-bottom: 12px;
}

.zone_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zone_chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--BLUE-COLOR-TRANSPARENT);
    border: 1px solid RGBa(28, 106, 122, .3);
    color: #0f4552;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1;
}

.zone_chip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.zone_no_result {
    display: none;
    text-align: center;
    color: RGBa(20, 20, 20, .5);
    padding: 24px 0;
}

@keyframes zoneFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .zone_band {
        animation: none;
    }
}

@media screen and (max-width: 600px) {
    .zone_chip {
        font-size: 13px;
        padding: 6px 12px;
    }
}