.pa-ticker-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
}

.pa-ticker-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    white-space: nowrap;
    animation: paTickerMove 45s linear infinite;
    will-change: transform;
}

.pa-ticker-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.pa-ticker-item a {
    color: #fff !important;
    text-decoration: none;
}

.pa-ticker-item a:hover {
    opacity: 0.9;
}

@keyframes paTickerMove {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* pausa opcional al pasar mouse */
.pa-ticker-wrap:hover .pa-ticker-track {
    animation-play-state: paused;
}




.pa-source-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: #ff6a00;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .3px;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.dark .pa-source-badge {
    color: #ffffff;
}