.digital-banner {
    width: 100%;
    max-width: 950px;
    height: 90px;
    margin: 15px auto;
    border-radius: 10px;
    overflow: hidden;

    
    background-image: linear-gradient(135deg, #1f4fd8, #16a085);
    
    background-image: url('https://storage-vnportal.vnpt.vn/gov-tnn/7341/images/ngang/bannercds.jpg');
    background-size: cover;
    background-position: center;


    display: flex;
    align-items: center;
}


.digital-banner .title {
    flex: 0 0 260px;
    height: 100%;
    background: rgba(0,0,0,0.2);
    color: #fff;
    font-weight: 700;
    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
padding: 10px;
    backdrop-filter: blur(5px);
}

/* Marquee */
.digital-banner .marquee {
    position: relative;
    flex: 1;
    height: 100%;

    display: flex;              
    align-items: center;  

    overflow: hidden;
    padding-right: 20px;
}

.digital-banner .marquee span {
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    font-size: 20px;
    line-height: 1.6;        
    padding-left: 100%;
    animation: scrollText 45s linear infinite;
}

/* Animation */
@keyframes scrollText {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* Mobile */
@media (max-width: 768px) {
    .digital-banner {
        height: 80px;
    }
    .digital-banner .title {
        flex: 0 0 160px;
        font-size: 14px;
    }
    .digital-banner .marquee span {
        font-size: 13px;
    }
}