.tape-marquee{
    background: #EEEEEE;
    padding: 100px 0;
    overflow: hidden;
}

.tape-marquee__container{
    /* добавь сюда max-width/паддинги если нужно */
}

.tape-marquee__head{
    text-align: center;
    margin-bottom: 55px;
}

.tape-marquee__title{
    font-family: 'Geist', sans-serif;
    margin: 0 0 20px 0;
    color: #1C1C1C;
    font-weight: 400;
    font-size: 54px;
    line-height: 62px;
    text-align: center;
}

.tape-marquee__accent{
    color: #e11d2e;
}

.tape-marquee__sub{
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin: 0 auto;
    color: #575757;
}

.tape-marquee__row{
    position: relative;
    margin-top: 10px;
}

/* ===== marquee core ===== */
.marquee{
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 10px;
}

.marquee__group{
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    gap: 10px;
    min-width: 100%;
    animation: scroll-x 80s linear infinite;
    will-change: transform;
}

/* reverse row (влево) */
.marquee--reverse .marquee__group{
    animation-direction: reverse;
    animation-delay: -3s;
}

/* pause on hover */
.marquee:hover .marquee__group{
    animation-play-state: paused;
}

@keyframes scroll-x{
    from{ transform: translateX(0); }
    to{   transform: translateX(calc(-100% - 18px)); }
}

@media (prefers-reduced-motion: reduce){
    .marquee__group{ animation-play-state: paused; }
}