 
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 10px 0;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee linear infinite;
}

.marquee-item {
    min-width: 300px;
    padding: 10px;
  margin-right: 50px; /* Espacio adicional entre noticias */
}

.marquee-item a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

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