.cmw-marquee-wrap {
    overflow: hidden;
    width: 100%;
}

.cmw-marquee-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: cmw-scroll linear infinite;
}

.cmw-marquee-wrap.is-paused .cmw-marquee-track {
    animation-play-state: paused;
}

@keyframes cmw-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Karte – kein Schatten, kein Hover-Effekt */
.cmw-card {
    flex-shrink: 0;
    overflow: visible;
    background: #fff;
    border-radius: 12px;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cmw-card:hover {
    box-shadow: none !important;
    transform: none !important;
}

.cmw-card > a,
.cmw-card > div:not(.cmw-card-icon-wrap):not(.cmw-card-image):not(.cmw-card-title) {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

/* Bild */
.cmw-card-image {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Icon/Lottie wrapper */
.cmw-card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 16px 0;
    box-sizing: border-box;
}

/* Icon aus Bibliothek */
.cmw-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cmw-card-icon i {
    font-size: 100px;
    color: #1a1a1a;
}

.cmw-card-icon svg {
    width: 100px;
    height: 100px;
    fill: currentColor;
}

/* Lottie */
.cmw-card-lottie {
    width: 100px;
    height: 100px;
    display: block;
}

/* Titel – kein Abschneiden */
.cmw-card-title {
    width: 100%;
    padding: 12px 16px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}
