/* Live results card on the public notices grid. */

.live-card .live-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-card .live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e53935;
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
    animation: live-pulse 1.6s ease-out infinite;
}

.live-card .live-leader strong {
    margin-right: 4px;
}

@keyframes live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(229, 57, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}
