.banner {
    background-image: url('https://propulse-corner.com/wp-content/uploads/2026/01/studio-entete.webp');
    background-position: top;
    background-repeat: no-repeat;
    margin-top: -6rem;
    padding-top: 25rem;
    padding-bottom: 2rem;
}

.banner h1 {
    text-shadow: 0 0 24px var(--light-purple);
}

@media screen and (max-width:980px) {
    h1 {
        font-size: 2.5rem;
    }

    .banner {
        margin-top: 0;
    }
}

.text-line {
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: .875rem;
    margin-top: 1rem;
}

.text-intro {
    font-size: 2.25rem;
    font-family: var(--font-primary);
}

@media screen and (max-width:980px) {
    .text-intro {
        font-size: 1.5rem;
    }

}

.item-studio {
    border: solid 1px var(--slate-800);
    padding: 2rem;
}


.custom-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.custom-dots li a {
    display: block;
    width: 1rem;
    height: 2px;
    background: var(--white);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all .3s ease-in;
}

.custom-dots li.uk-active a {
    width: 3rem;
    transition: all .3s ease-in;
}


/* Barre de progression interne */
.custom-dots li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--light-purple);
    transform: scaleX(0);
    transform-origin: left;
}


/* Quand le dot est actif, animation de progression */
.custom-dots li.uk-active a::after {
    animation: dot-progress var(--duration, 5s) linear forwards;
}

@media screen and (max-width:980px) {
    .slider-progress {
        top: -2rem;
        margin: 0;
        right: 2rem;
        height: max-content;
    }
}

@keyframes dot-progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}