.clients-marquee {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.clients-marquee-item {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
}

.clients-marquee-item__text {
    display: inline-block;
    color: var(--primary-foreground, #22272C);
    font-family: var(--font-display, sans-serif);
    font-size: 24px;   
    text-transform: uppercase;
    letter-spacing: .01em;
    line-height: .98;
}

.clients-marquee-item__icon {
    display: inline-flex;
    color: var(--primary-foreground, #22272C);
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 24px;
    line-height: 1;
}

.clients-marquee-item__icon i,
.clients-marquee-item__icon svg {
    display: block;
    width: 1em;
    height: 1em;
    color: inherit;
    font-size: inherit;
}

