.op-marquee-wrapper {
    width: 100%;
    height: 30vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: transparent;
    /* Ou ta couleur de fond */
}

.op-marquee-content {
    display: block !important;
    /* On force le mode bloc */
    white-space: nowrap !important;
    /* INDISPENSABLE : force les enfants sur une seule ligne */
    width: max-content;
    will-change: transform;
}

.op-marquee-item {
    display: inline-block !important;
    /* Force l'alignement horizontal */
    font-size: 120px;
    font-weight: bold;
    text-transform: uppercase;
    padding-right: 80px;
    /* L'espace entre les répétitions */
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--section-txt-color);
}

@media (max-width: 768px) {
    .op-marquee-item {
        font-size: 60px;
        padding-right: 40px;
    }

    .op-marquee-wrapper {
        height: 15vh;
    }
}