.news-topbar{
    width:100%;
    font-family:'Noto Serif Bengali', serif;
    overflow:hidden;
}

/* ROW */
.news-row{
    display:flex;
    align-items:center;
    width:100%;
    color:#ffffff;
    font-size:16px;
    line-height:1.4;
}

.news-row + .news-row{
    margin-top:4px;
}

/* LABEL */
.news-row .label{
    min-width:120px;
    padding:8px 14px;
    font-weight:700;
    background:#c80000;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
}

.news-row.blue .label{
    background:#7a001c;
}

/* CONTENT */
.news-row .content{
    flex:1;
    background:#143f7a;
    overflow:hidden;
}

/* MARQUEE */
.nptb-marquee{
    overflow:hidden;
    white-space:nowrap;
}

.nptb-track{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:8px 18px;

    /* Headline Speed */
    animation:nptb-marquee 60s linear infinite;
}

.nptb-notice-track{
    animation-duration:20s !important; /* ⚡ much faster */
}
/* SEPARATOR */
.nptb-sep{
    opacity:.7;
}

/* META */
.news-row .meta{
    min-width:140px;
    padding:8px 14px;
    background:#0b8f00;
    font-weight:700;
    font-size:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
}

/* LINK */
.nptb-link{
    color:#ffffff;
    text-decoration:none;
}

.nptb-link:hover{
    color:#ffea00;
    text-decoration:underline;
}

/* DIVIDER */
.nptb-divider{
    width:100%;
    height:4px;
    background:#c80000;
    margin-top:4px;
}

/* KEYFRAME */
@keyframes nptb-marquee{
    0%   { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}

/* MOBILE */
@media(max-width:768px){

    .news-row{
        display:flex;
        align-items:center;
        background:#000;
        font-size:15px;
    }

    .news-row .label{
        min-width:90px;
        padding:8px 10px;
    }

    .news-row .content{
        background:#000;
    }

    .news-row .meta{
        display:none;
    }

    .nptb-track{
        padding:8px 12px;
        animation-duration:140s;
    }

    .nptb-notice-track{
        animation-duration:100s !important;
    }
}
