/* Live Blog Container */
.live-blog-wrapper {
    padding: 40px 0;
    background: #ffffff;
}

.live-blog-header {
    border-bottom: 3px solid #B80000;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.live-blog-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1E1E1E;
}

.live-badge {
    background: #B80000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 15px;
}

.live-blog-meta {
    font-size: 0.9rem;
    color: #767676;
    margin-top: 8px;
}

/* Update Items */
.live-update-item {
    border-left: 4px solid #B80000;
    padding: 15px 20px;
    margin-bottom: 25px;
    background: #F9F9F9;
    transition: background 0.2s;
}

.live-update-item:hover {
    background: #F1F1F1;
}

.live-update-time {
    font-size: 0.85rem;
    color: #B80000;
    font-weight: 600;
    margin-bottom: 5px;
}

.live-update-headline {
    font-size: 1.4rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.live-update-content {
    font-size: 1rem;
    line-height: 1.6;
}

.live-update-thumb img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

/* Loading Indicator */
.live-loading {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #888;
}