.breaking-news-wrapper {
    display: flex;
    border: 2px solid #FFCC00; /* borde amarillo */
    margin-bottom: 25px;       /* aire debajo */
    margin-left: 25px;
    background: #111;
    overflow: hidden;
    
}

.breaking-news-label {
    background: #FFCC00;
    color: #000;
    padding: 10px 15px;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.breaking-news-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #111;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%; /* arranca fuera de pantalla */
    animation: marquee 30s linear infinite; /* velocidad */
}

.marquee-content .item {
    margin-right: 40px; /* espacio entre noticias */
    font-size: 20px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
}

.marquee-content a {
    color: #fff;
    text-decoration: none;
}

.marquee-content a:hover {
    text-decoration: underline;
}

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