/* ================================================================
   experience.css — Work experience section (#experience)
   ================================================================ */

/* Vertical line running down the left side */
.exp-timeline {
  position: relative;
  padding-left: 28px;
}
.exp-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--indigo), rgba(99, 102, 241, 0.1));
}

/* Individual job block */
.exp-item {
  position: relative;
  margin-bottom: 52px;
}
.exp-item:last-child {
  margin-bottom: 0;
}

/* Circle dot on the timeline line */
.exp-dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--indigo);
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

/* Role title + date range on the same row */
.exp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.exp-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.3px;
}
.exp-period {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--slate-dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Company name */
.exp-company {
  font-size: 14px;
  color: var(--indigo-glow);
  margin-bottom: 14px;
  font-weight: 500;
}

/* Bullet point list of achievements */
.exp-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-points li {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
/* Triangle arrow bullet */
.exp-points li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--indigo-glow);
  font-size: 11px;
  top: 3px;
}
