.mg-container-28950b72 {
    overflow: hidden;
    width: 100%;
    position: relative;
    user-select: none;
    display: block;
}

.mg-container-inner-28950b72 {
    display: flex;
    flex-direction: column;
}

.mg-line {
    width: 100%;
    overflow: hidden;
}

.mg-track-wrapper {
    display: flex;
    width: max-content;
    flex-wrap: nowrap;
}

.mg-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    animation: mgMarquee linear infinite;
    will-change: transform;
}

.mg-item {
    flex-shrink: 0;
    display: block;
}

.mg-item-img {
    display: block;
    width: auto;
    object-fit: cover;
    border-radius: 0 !important; /* No rounded edges as requested */
}

/* Direction Left */
.mg-line.dir-left .mg-track {
    animation-name: mgMarqueeLeft;
}

/* Direction Right */
.mg-line.dir-right .mg-track {
    animation-name: mgMarqueeRight;
}

/* Pause on Hover */
.mg-container-28950b72.pause-on-hover:hover .mg-track {
    animation-play-state: paused;
}

@keyframes mgMarqueeLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes mgMarqueeRight {
    0% {
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}
