.status--live {
    position: relative;
    color: var(--red-alert);

    &::before {
        content: "";
        inline-size: 0.75rem;
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--red-alert);
    }

    &::after {
        content: "";
        position: absolute;
        inset-inline-start: 0;
        inset-block-start: 50%;
        translate: 0 -50%;
        inline-size: 0.75rem;
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--red-alert);
        animation: pulse 2s ease infinite;
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        scale: 1;
    }

    80% {
        opacity: 0;
        scale: 2.5;
    }

    100% {
        opacity: 0;
        scale: 3;
    }
}
