.driven-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: clamp(2rem, 4.1667vw, 5rem) 0;
    border-top: 1px solid rgba(13, 13, 13, 0.2);
    border-bottom: 1px solid rgba(13, 13, 13, 0.2);
    background: #ffffff;
}

.driven-section__sr-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.driven-section__track {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 3.229vw, 3.875rem);
    width: max-content;
    animation: driven-marquee 30s linear infinite;
}

.driven-section__group {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 3.229vw, 3.875rem);
    flex: none;
    white-space: nowrap;
}

.driven-section__text {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 5.2083vw, 6.25rem);
    line-height: 1;
    text-transform: uppercase;
    color: #0D0D0D;
}

.driven-section__dot {
    flex: none;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
}

.driven-section__dot--muted {
    background: rgba(13, 13, 13, 0.6);
}

.driven-section__dot--solid {
    background: #0D0D0D;
}

@keyframes driven-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-16.6667%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .driven-section__track {
        animation: none;
    }
}
