.article-live-head-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.article-live-head-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: article-live-pulse 1.8s ease-in-out infinite;
}

.article-live-feed {
    display: grid;
    gap: 14px;
    margin: 0 0 20px;
}

.article-live-item {
    border: 1px solid rgba(220, 38, 38, 0.18);
    border-radius: 14px;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(254, 242, 242, 0.85), #fff 42%);
}

.article-live-item__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.article-live-item__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: article-live-pulse 1.8s ease-in-out infinite;
}

.article-live-item__title {
    margin: 0 0 8px;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.45;
}

.article-live-item__body {
    margin: 0;
    color: var(--text, #1f2937);
    line-height: 1.85;
    font-size: 16px;
}

.article-live-item__time {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted, #64748b);
}

@keyframes article-live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
    .article-live-head-badge__dot,
    .article-live-item__dot {
        animation: none;
    }
}
