/*
 * Basic styles for WP Timeline Blog
 */

.wp-timeline-blog {
    position: relative;
    margin: 20px 0;
    padding: 10px 0;
    border-left: 2px solid #ccc;
}

.timeline-item {
    margin-left: 20px;
    padding-bottom: 20px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #0073aa;
    border: 2px solid #fff;
    z-index: 1;
}

.timeline-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 5px;
}

.timeline-content {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.9em;
    line-height: 1.5;
}
