.ketm-lpu-wrap {
    background: #F5F5F7;
    padding-bottom: 20px;
    padding-top: 20px;
}

.ketm-lpu-headline {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    color: #333;
}

.ketm-lpu-marquee {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 0px;
    background: #F5F5F7;
}

/* Track bewegt sich automatisch nach links */
.ketm-lpu-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: ketm-lpu-scroll var(--ketm-lpu-speed, 30s) linear infinite;
}

/* Pause bei Hover */
.ketm-lpu-marquee:hover .ketm-lpu-track {
    animation-play-state: paused;
}

.ketm-lpu-run {
    display: grid;
    grid-auto-flow: column;
    gap: 15px;
}

.ketm-lpu-item {
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 10px;
    text-decoration: none;
    color: inherit;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 110px;

    /*Links vorerst deaktivieren*/
    pointer-events: none;
    cursor: default;
}

.ketm-lpu-item:hover {
    border-color: #ddd;
}

.ketm-lpu-avatar img {
    border-radius: 999px;
    display: block;
}

.ketm-lpu-name {
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    line-height: 1.15;
}

/* Endlos-Animation */
@keyframes ketm-lpu-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .ketm-lpu-track {
        animation: none;
    }
}
