.ticker-bar {
    position: sticky;
    top: 76px; /* ggf. an deine Navbar-Höhe anpassen */
    z-index: 1020;
    background: linear-gradient(90deg, #008080, #006666);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.ticker-wrap {
    display: flex;
    align-items: center;
    min-height: 42px;
    overflow: hidden;
}

.ticker-label {
    flex: 0 0 auto;
    padding: 0 18px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    background: rgba(255,255,255,0.08);
    height: 42px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.ticker {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
}

.ticker-content {
    white-space: nowrap;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    padding-left: 100%;
    display: inline-block;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

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

@media (max-width: 991.98px) {
    .ticker-bar {
        top: 66px; /* ggf. mobil anpassen */
    }

    .ticker-label {
        padding: 0 12px;
        font-size: 0.85rem;
    }

    .ticker-content {
        font-size: 0.9rem;
    }
}