/* ─── Experience Timeline ────────────────────────────────── */
.experience {
  background: var(--clr-bg-base);
  padding-bottom: var(--space-2xl);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clr-border);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-bg-base);
  border: 2px solid var(--clr-accent-blue);
  z-index: 2;
  transition: var(--t-fast);
}

.timeline-item:hover::before {
  background: var(--clr-accent-blue);
  box-shadow: 0 0 15px var(--clr-accent-blue);
  transform: scale(1.2);
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-accent-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: 0.25rem;
}

.timeline-company {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-text-secondary);
  margin-bottom: 1rem;
}

.timeline-content {
  color: var(--clr-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .timeline::before {
    left: 15px;
  }
  .timeline-item {
    padding-left: 45px;
  }
  .timeline-item::before {
    left: 9px;
  }
}
