
.orbis-news-ticker {
    --orbis-bg: #10283b;
    --orbis-border: #28465b;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 66px;
    overflow: hidden;
    border: 1px solid var(--orbis-border);
    border-radius: 15px;
    background: var(--orbis-bg);
    color: #eaf2f7;
    box-shadow: 0 8px 22px rgba(4,18,29,.14);
    font-family: inherit;
}

.orbis-news-ticker *,
.orbis-news-ticker *::before,
.orbis-news-ticker *::after {
    box-sizing: border-box;
}

.orbis-news-ticker a {
    color: inherit;
    text-decoration: none;
}

.orbis-news-ticker__brand {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 285px;
    padding: 0 28px;
    background: var(--orbis-bg);
    border-right: 1px solid rgba(255,255,255,.12);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .075em;
    white-space: nowrap;
}

.orbis-news-ticker__brand-dot {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ff5149;
    box-shadow: 0 0 0 4px rgba(255,81,73,.18);
}

.orbis-news-ticker__viewport {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.orbis-news-ticker__track {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
}

.orbis-news-ticker__set {
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
}

.orbis-news-ticker__track.is-ready {
    animation: orbis-news-scroll var(--orbis-duration, 36s) linear infinite;
}

.orbis-news-ticker:hover .orbis-news-ticker__track,
.orbis-news-ticker:focus-within .orbis-news-ticker__track {
    animation-play-state: paused;
}

.orbis-news-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 66px;
    padding: 0 28px;
    border-right: 1px solid rgba(255,255,255,.12);
    font-size: 17px;
    color: #dbe7ee !important;
}

.orbis-news-ticker__item:hover {
    color: #64d4ee !important;
}

.orbis-news-ticker__text {
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

.orbis-news-ticker__dot {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--orbis-dot);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--orbis-dot) 18%, transparent);
}

.orbis-news-ticker__icon {
    font-size: 18px;
    line-height: 1;
}

.orbis-news-ticker__status {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 175px;
    padding: 0 20px;
    background: var(--orbis-bg);
    border-left: 1px solid rgba(255,255,255,.12);
    color: #adbdc8;
    font-size: 16px;
    white-space: nowrap;
}

.orbis-news-ticker__live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #5ed08b;
    box-shadow: 0 0 0 4px rgba(94,208,139,.13);
}

@keyframes orbis-news-scroll {
    from { transform: translate3d(0,0,0); }
    to   { transform: translate3d(var(--orbis-distance, -50%),0,0); }
}

@media (prefers-reduced-motion: reduce) {
    .orbis-news-ticker__track.is-ready {
        animation: none !important;
        transform: none !important;
    }

    .orbis-news-ticker__viewport {
        overflow-x: auto;
    }
}

@media (max-width: 900px) {
    .orbis-news-ticker {
        min-height: 58px;
        border-radius: 12px;
    }

    .orbis-news-ticker__brand {
        min-width: auto;
        padding: 0 17px;
        font-size: 15px;
    }

    .orbis-news-ticker__item {
        min-height: 58px;
        padding: 0 20px;
        font-size: 15px;
    }

    .orbis-news-ticker__status {
        display: none;
    }
}

@media (max-width: 560px) {
    .orbis-news-ticker__brand {
        padding: 0 14px;
    }

    .orbis-news-ticker__brand span:last-child {
        display: none;
    }

    .orbis-news-ticker__brand::after {
        content: "LATEST";
        font-weight: 800;
        letter-spacing: .055em;
    }

    .orbis-news-ticker__icon {
        font-size: 16px;
    }
}
