/* Hallo Newsticker */
.hallo-newsticker {
    width: 100%;
    overflow: hidden;
}

.hallo-newsticker-inner {
    display: flex;
    align-items: center;
    gap: 0.5em;
    white-space: nowrap;
}

.hallo-newsticker-pretext {
    flex: 0 0 auto;
    font-weight: 700;
}

.hallo-newsticker-marquee {
    overflow: hidden;
    flex: 1 1 auto;
}

.hallo-newsticker-track {
    display: inline-flex;
    width: max-content;
    will-change: transform;
    animation-name: hallo-newsticker-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.hallo-newsticker-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding-right: 2em;
}

.hallo-newsticker-link {
    text-decoration: none;
}

.hallo-newsticker-link:hover,
.hallo-newsticker-link:focus {
    text-decoration: underline;
}

.hallo-newsticker-separator {
    font-weight: 700;
}

.hallo-newsticker-pause-hover:hover .hallo-newsticker-track {
    animation-play-state: paused;
}

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