.lc-e422249b-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.lc-e422249b-wrapper.has-fade::before,\n.lc-e422249b-wrapper.has-fade::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--lc-fade-width, 80px);
    z-index: 5;
    pointer-events: none;
}
.lc-e422249b-wrapper.has-fade::before {
    left: 0;
    background: linear-gradient(to right, var(--lc-fade-color, #ffffff), transparent);
}
.lc-e422249b-wrapper.has-fade::after {
    right: 0;
    background: linear-gradient(to left, var(--lc-fade-color, #ffffff), transparent);
}

.lc-e422249b-track {
    display: flex;
    align-items: center;
    width: max-content;
}

/* Use margin-inline-end to avoid flex container gaps which break perfect -50% translation */
.lc-e422249b-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: all var(--lc-transition, 0.3s) ease;
    overflow: hidden;
    width: var(--lc-logo-width, 150px);
    height: var(--lc-logo-height, 80px);
    margin-inline-end: var(--lc-gap, 20px);
}

.lc-e422249b-marquee .lc-e422249b-track {
    animation: lc-e422249b-scroll var(--lc-speed, 20s) linear infinite;
}
.lc-e422249b-dir-rtl .lc-e422249b-track {
    animation-direction: reverse;
}
.lc-e422249b-marquee.pause-on-hover:hover .lc-e422249b-track {
    animation-play-state: paused;
}

@keyframes lc-e422249b-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.lc-e422249b-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lc-e422249b-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all var(--lc-transition, 0.3s) ease;
}

.lc-grayscale-yes .lc-e422249b-img {
    filter: grayscale(100%);
}
.lc-opacity-yes .lc-e422249b-img {
    opacity: 0.6;
}

.lc-e422249b-item:hover .lc-e422249b-img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

.lc-e422249b-classic .lc-e422249b-track {
    width: 100%;
    transition: transform 0.5s ease;
}

.lc-e422249b-prev,\n.lc-e422249b-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    padding: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    line-height: 1;
}
.lc-e422249b-prev { left: 10px; }
.lc-e422249b-next { right: 10px; }

.lc-e422249b-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    list-style: none;
    padding: 0;
}
.lc-e422249b-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}
.lc-e422249b-dot.active {
    background: #333;
}
