/* Live Badge Styles */
a.live-badge,
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    background-color: #dc2626;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25em 0.6em;
    border-radius: 0.25em;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

a.live-badge:hover,
a.live-badge:focus,
.live-badge:hover,
.live-badge:focus {
    background-color: #b91c1c;
    color: white !important;
    text-decoration: none !important;
}

/* Pulsing dot before the text */
.live-badge::before {
    content: '';
    width: 0.5em;
    height: 0.5em;
    background-color: white;
    border-radius: 50%;
    animation: live-badge-pulse 1.5s ease-in-out infinite;
}

@keyframes live-badge-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
