.breaking-news-bar {
    display: flex;
    align-items: center;
    background: #00245A;
    color: #ffffff;
    overflow: hidden;
    width: 100%;
    height: 48px;
    font-family: inherit;
    font-size: 14px;
}
.breaking-news-bar a:hover {
text-decoration: none;}

.breaking-news-label {
    background: #00AEF0;
    color: #fff;
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    /*font-weight: 700;*/
 
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
}

.breaking-news-label img {
    width: 35px;
    height: 35px;
    display: block;
}

.breaking-news-wrapper {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.breaking-news-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: breakingNewsScroll 40s linear infinite;
}

.breaking-news-item {
    display: inline-block;
    text-decoration: none;
    margin-right: 40px;
}

.breaking-news-title {
    color: #ffffff;
    font-weight: 400;
}

.breaking-news-separator {
    color: #ffffff;
}

.breaking-news-author {
    color: #00AEF0;
    font-weight: 700;
}

.breaking-news-item:hover .breaking-news-title {
    text-decoration: underline;
}

@keyframes breakingNewsScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}