.experience { background: var(--bg-primary); }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-blue), rgba(59, 130, 246, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 20px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-blue);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
  z-index: 2;
}

.timeline-content {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: var(--transition-base);
}

.timeline-content:hover {
  border-color: rgba(59, 130, 246, 0.12);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.timeline-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 6px 0 4px;
}

.timeline-org {
  font-size: 0.85rem;
  color: var(--accent-pink);
  font-weight: 500;
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 10px;
}
