/*
 * Ticker de novedades (hero) — SliderNoticeHeadWidgets
 * Complementa css_notice.css. La velocidad de la animación es dinámica (depende de
 * la cantidad de novedades) y llega por la custom property --ticker-speed en el HTML.
 * El shorthand `animation` resetea play-state a running (css_notice lo deja en paused).
 */
.ticker__list {
    display: flex;
    height: 131px !important;
    animation: ticker var(--ticker-speed, 60s) infinite linear;
}

/* Título de cada ítem (antes eran estilos inline duplicados en el <h3> y su <a>) */
.ticker__item h3,
.ticker__item h3 a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 20px;
}
