.breaking-news__desktop-container {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 49px;
    background: linear-gradient(90deg, rgba(21, 22, 71, 1) 0%, rgba(22, 75, 134, 1) 48%, rgba(23, 108, 174, 1) 77%);
    color: #FBFBFB;
    border-radius: 6px;
    padding: 0px 18px;
    gap: 1rem;
}

.breaking-news__mobile-container {
    display: none;
}

.breaking-news__badge {
    background-color: #0249A6;
    color: #FBFBFB;
    font-weight: 600;
    font-size: 11px;
    padding: 6px 8px;
    border-radius: 8px;
}

.breaking-news__marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 80%;
    color: #D5D5D5;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    flex: 1;
}

.breaking-news__marquee-text {
    display: inline-block;
    white-space: nowrap;
    display: inline-block;
    animation: marquee 16s linear infinite;
    padding-right: 16rem !important;
    min-width: auto !important;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (min-width: 0px) and (max-width: 768px) {
    .breaking-news__desktop-container {
        display: none;
    }

    .breaking-news__mobile-container {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
        height: 49px;
        background: linear-gradient(90deg, rgba(21, 22, 71, 1) 0%, rgba(22, 75, 134, 1) 48%, rgba(23, 108, 174, 1) 77%);
        color: #FBFBFB;
        border-radius: 0px;
        padding: 0px 18px;
        gap: .5rem;
    }

    .breaking-news__badge {
        background-color: #0249A6;
        color: #FBFBFB;
        font-weight: 600;
        font-size: 10px;
        padding: 3px 4px;
        border-radius: 8px;
    }

    .breaking-news__marquee-container {
        overflow: hidden;
        white-space: nowrap;
        width: 75%;
        color: #D5D5D5;
        font-weight: 600;
        font-size: 12px;
        position: relative;
        flex: 1;
    }

    .breaking-news__marquee-text {
        padding-right: 0 !important;
        min-width: auto !important;
    }
}
