/* =========================
   CUSTOM BREAKING TICKER
========================= */

.custom-breaking-news-ticker{
    display:flex;
    align-items:center;
    width:100%;
    background:#fff;
    border:1px solid #e5e5e5;
    overflow:hidden;
    position:relative;
    min-height:35px;
    margin:15px 10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.cbnt-label{
    flex:0 0 auto;
    background:#cb0002;
    color:#fff;
    font-weight:700;
    font-size:15px;
    line-height:1;
    padding:10px 18px;
    white-space:nowrap;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.cbnt-track-wrap{
    flex:1;
    overflow:hidden;
    position:relative;
    min-width:0;
    height:35px;
    display:flex;
    align-items:center;
    background:#fff;
}

.cbnt-track{
    display:flex;
    align-items:center;
    gap:28px;
    white-space:nowrap;
    will-change:transform;
    position:relative;
}

.cbnt-item{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#222;
    font-size:16px;
    padding-right:10px;
}

.cbnt-item:hover{
    color:#d32f2f;
}

.cbnt-dot{
    color:#222;
    font-size:18px;
    line-height:1;
    flex:0 0 auto;
}

.cbnt-text{
    display:inline-block;
    line-height:1.4;
}

.cbnt-controls{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    border-left:1px solid #e5e5e5;
    background:#fff;
}

.cbnt-btn{
    border:none;
    background:transparent;
    width:42px;
    height:35px;
    cursor:pointer;
    font-size:18px;
    color:#333;
    transition:all .2s ease;
}

.cbnt-btn:hover{
    background:#f5f5f5;
    color:#d32f2f;
}

/* Mobile */
@media (max-width: 991px){
    .custom-breaking-news-ticker{
        min-height:35px;
    }

    .cbnt-label{
        font-size:12px;
        padding:14px 12px;
    }

    .cbnt-track-wrap{
        height:35px;
    }

    .cbnt-item{
        font-size:14px;
        gap:8px;
    }

    .cbnt-btn{
        width:34px;
        height:35px;
        font-size:15px;
    }
}

@media (max-width: 767px){
    .custom-breaking-news-ticker{
        display:grid;
        grid-template-columns:auto 1fr auto;
        align-items:stretch;
    }

    .cbnt-label{
        padding:14px 10px;
        font-size:11px;
    }

    .cbnt-track-wrap{
        height:35px;
    }

    .cbnt-item{
        font-size:13px;
        gap:6px;
    }

    .cbnt-controls{
        border-left:1px solid #e5e5e5;
    }

    .cbnt-btn{
        width:30px;
        height:35px;
        font-size:14px;
    }
}

@media (max-width: 480px){
    .custom-breaking-news-ticker{
        margin:10px 0;
    }

        .cbnt-label {
        font-size: 12px;
        padding: 11px 8px 0;
    }

    .cbnt-item{
        font-size:14px;
    }
}