/* ── Bande Défilante Elementor ── */

.etw-ticker {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    background: #1a1a1a;
    height: 48px;
    position: relative;
}

/* ── Label gauche ── */
.etw-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    background: #e63946;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
    position: relative;
}

/* Petite flèche à droite du label */
.etw-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #e63946;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    z-index: 3;
}

/* ── Zone de défilement ── */
.etw-track-wrap {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

/* ── Piste animée ── */
.etw-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* ── Item individuel ── */
.etw-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 50px;
}

.etw-item-icon {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #f5c518;
    flex-shrink: 0;
}

.etw-item-icon i,
.etw-item-icon svg {
    display: block;
}

.etw-item-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.etw-sep {
    color: #ffffff;
    opacity: 0.4;
    font-size: 12px;
    margin-left: 4px;
}
