.news-badge--live {
    animation: news-live-badge-pulse 2.2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes news-live-badge-pulse {
    0%,
    100% {
        opacity: 0.82;
        transform: scale(1);
        box-shadow: 0 8px 18px rgba(200, 31, 21, 0.14);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
        box-shadow: 0 16px 30px rgba(200, 31, 21, 0.34);
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-badge--live {
        animation: none;
    }
}
