.angie-marquee-wrapper-dc3fc5c5 {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
}

.angie-marquee-track-dc3fc5c5 {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: var(--marquee-gap-dc3fc5c5, 40px);
    animation: scroll-dc3fc5c5 var(--marquee-speed-dc3fc5c5, 20s) linear infinite;
    animation-direction: var(--marquee-direction-dc3fc5c5, normal);
}

.angie-marquee-content-dc3fc5c5 {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: var(--marquee-gap-dc3fc5c5, 40px);
    min-width: 100%;
}

.angie-marquee-item-dc3fc5c5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.angie-marquee-item-dc3fc5c5 img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.angie-marquee-item-dc3fc5c5 a {
    display: inline-flex;
}

.angie-marquee-track-dc3fc5c5.angie-marquee-pause-dc3fc5c5:hover {
    animation-play-state: paused;
}

@keyframes scroll-dc3fc5c5 {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exactly the width of one content block + gap */
        transform: translateX(calc(-50% - (var(--marquee-gap-dc3fc5c5, 40px) / 2)));
    }
}
