.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 68px;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: var(--border);
}

.experience-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.timeline-icon {
    position: absolute;
    left: -68px;
    top: 32px;
    width: 50px;
    height: 50px;
    background: var(--indigo);
    border: 4px solid var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px var(--border);
    z-index: 2;
}

.timeline-icon i {
    font-size: 20px;
    color: #ffffff;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 20px;
}

.experience-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.company {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.company a {
    color: var(--indigo);
    text-decoration: none;
}

.company a:hover {
    text-decoration: underline;
}

.date {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.experience-description {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 12px;
}

.experience-note {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}