.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    padding-left: 20px;
    border-left: 2px solid var(--border-light);
}

.timeline-entry {
    position: relative;
}

.timeline-dash {
    position: absolute;
    top: 10px;
    left: -26px;
    width: 12px;
    height: 2px;
    border-radius: 1px;
    background: var(--accent-muted);
}

.timeline-content {
    min-width: 0;
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.timeline-title {
    margin: 0;
    color: var(--fg);
    font-size: 15px;
}

.timeline-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: var(--radius);
    background: var(--bg-inset);
    flex-shrink: 0;
}

.timeline-company {
    margin: 2px 0;
    color: var(--fg-muted);
    font-size: 14px;
}

.timeline-date {
    margin: 0 0 8px 0;
    color: var(--fg-dim);
    font-size: 13px;
}

.timeline-bullets {
    margin: 0;
    padding-left: 18px;
}

.timeline-bullets li {
    margin-bottom: 6px;
    line-height: 1.55;
    color: var(--fg-muted);
}

@media (max-width: 640px) {
    .timeline {
        padding-left: 16px;
    }

    .timeline-dash {
        left: -21px;
    }

    .timeline-header {
        flex-wrap: wrap;
    }
}
