/* NewsBlog Live Timeline Styles */
.nb-timeline-wrapper {
    position: relative;
    padding-left: 25px;
    margin: 40px 0;
    border-left: 2px solid #cc0000;
}

.nb-timeline-item {
    position: relative;
    margin-bottom: 30px;
    background: #fdfdfd;
    padding: 15px 20px;
    border: 1px solid #eaeaea;
    border-radius: 6px;
}

.nb-timeline-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.nb-live-dot {
    position: absolute;
    left: -33px;
    top: 20px;
    width: 14px;
    height: 14px;
    background: #cc0000;
    border: 3px solid #fff;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

.nb-timeline-time {
    background: #cc0000;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
}

.nb-timeline-content p {
    margin: 0 0 10px 0;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

.nb-timeline-content p:last-child {
    margin-bottom: 0;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(204, 0, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(204, 0, 0, 0); }
}