/* Marquee Container Styles */
.marquee-container {
    width: 100%;
    margin: 0;
    overflow: hidden; /* Hide overflow */
}

/* Marquee Styles */
.marquee {
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #000;
    white-space: nowrap;
}

.marquee__content {
    display: flex;
    animation: marquee-scroll 20s linear infinite;
}

.marquee__item {
    display: inline-block;
}

.marquee__text {
    display: inline-block;
    padding-right: 2rem;
}

.marquee__separator {
    padding-right: 2rem;
    color: #000;
}

/* Keyframes for Smooth Scrolling */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0); /* Start position */
    }
    100% {
        transform: translateX(-100%); /* Scroll to the left by 100% of the content */
    }
}

/* Ensure the duplicate content smoothly connects with no gaps */
.marquee__content::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
}
