﻿body {
    background: #fff;
    font-family: 'Roboto', sans-serif;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

    /* Vertical line */
    .timeline::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 6px;
        bottom: 0;
        width: 1px;
        background-color: #90caf9;
    }

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

    /* Circle marker */
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -37px;
        top: 4px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid #42a5f5;
        background-color: #fff;
        box-sizing: border-box;
    }

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.timeline-title {
    color: #42a5f5;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

.timeline-date {
    color: #42a5f5;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 16px;
}

.timeline-body {
    color: #333;
    font-size: 1.5rem;
    line-height: 1.6;
}
