/* experience.css - Experience page specific styles */
.timeline {
    border-left: 3px solid var(--accent-teal);
    padding-left: 2rem;
    margin-left: 1rem;
}

.timeline-item {
    margin-bottom: 2.5rem;
    position: relative;
    animation: slideIn 0.5s ease;
}

.timeline-item::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--accent-teal);
    position: absolute;
    left: -2.3rem;
    top: 0.3rem;
    border-radius: 50%;
    border: 3px solid var(--card-dark);
    transition: all 0.2s ease;
}

.timeline-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 12px var(--accent-teal);
}

.exp-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.exp-title {
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

body.light .exp-title {
    color: #0f172a;
}

.exp-company {
    color: var(--accent-teal);
    font-weight: 500;
}

.exp-date {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.timeline-item ul {
    list-style: none;
    margin-top: 0.5rem;
}

.timeline-item li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-soft);
}

.timeline-item li::before {
    content: "▹";
    color: var(--accent-teal);
    position: absolute;
    left: 0.2rem;
    font-size: 1.2rem;
}

.freelance-note {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px dashed var(--accent-teal);
    margin-top: 2rem;
}

.freelance-note h3 {
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}