.pt-marquee-wrapper-c54e262c {
    overflow: hidden;
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.pt-marquee-track-c54e262c {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    animation: pt-scroll-c54e262c 40s linear infinite;
    align-items: center;
}

.pt-marquee-item-c54e262c {
    display: flex;
    align-items: center;
    white-space: nowrap;
    box-sizing: border-box;
}

.pt-marquee-text-c54e262c {
    font-weight: 700;
    text-transform: uppercase;
}

.pt-marquee-icon-c54e262c {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px; /* Base spacing to the right of text */
}

/* Pause animation on hover */
.pt-marquee-wrapper-c54e262c:hover .pt-marquee-track-c54e262c {
    animation-play-state: paused;
}

/* Loop exactly halfway through the repeated tracks */
@keyframes pt-scroll-c54e262c {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
