/* Marquee-Grundstruktur (SnS-Ticker-Modul) */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    cursor: pointer;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 50s linear infinite;
}

.marquee:hover .marquee-track,
.marquee.paused .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-block;
    margin-right: 3rem;
    white-space: nowrap;
}

.marquee-item i {
    margin-right: 0.4rem;
}

.marquee-item a {
    color: inherit;
    text-decoration: none;
}

.marquee-item a:hover {
    text-decoration: underline;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Titel/Rahmen um das Ticker-Modul ausblenden */
#mod-custom117 {
    margin: 0;
    padding: 0;
}

.grid-child.container-component:has(#mod-custom117) {
    border: none;
    background: none;
}

.grid-child.container-component:has(#mod-custom117) .card-header {
    display: none;
}