/* --- Estructura Principal del Ticker --- */
.ahora-ticker-wrapper {
    background: #E11C24; /* El rojo de tu marca */
    color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    font-family: Arial, sans-serif;
    position: relative;
    border-radius: 4px;
}

/* --- Etiqueta fija AHORA --- */
.ahora-label {
    background: #a3141a; /* Un rojo un poco más oscuro para resaltar */
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    z-index: 10;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

/* --- Contenedor de noticias (animación) --- */
.ahora-track {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.ahora-move {
    display: inline-block;
    padding-left: 100%;
    animation: ahora-scroll 40s linear infinite; /* Velocidad de lectura cómoda */
}

@keyframes ahora-scroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* --- Links de las noticias --- */
.ahora-noticia-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 0 30px; /* Espacio entre noticias para que no se peguen */
    display: inline-block;
}

.ahora-noticia-link:hover {
    text-decoration: underline;
}

.ahora-noticia-link::after {
    content: "|"; /* Separador visual entre noticias */
    margin-left: 30px;
    color: rgba(255,255,255,0.5);
}

/* --- SOLUCIÓN ERROR LOGO GIGANTE (MÓVIL) --- */
/* Esto obliga al logo a mantenerse en su lugar cuando activás la compresión */
@media (max-width: 768px) {
    /* Ajuste para el logo en cabecera */
    header img, 
    .elementor-widget-image img,
    img[class*="wp-image"] {
        max-width: 180px !important; /* Tamaño máximo en celular */
        width: 180px !important;
        height: auto !important;
    }

    /* Ajuste del ticker para pantallas pequeñas */
    .ahora-label {
        font-size: 12px;
        padding: 0 10px;
    }
    
    .ahora-noticia-link {
        font-size: 13px;
    }
}