/* ─── WORK EXPERIENCE TIMELINE ─── */

/* Keep extra room at bottom to match other sections */
#experience { padding-bottom: 120px; }
#experience .section-head { margin-bottom: 32px; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-entry {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 28px;
  padding-bottom: 72px;   /* more space between entries */
}
.tl-entry:last-child { padding-bottom: 20px; } /* soft landing before border */

/* spine: dot + vertical line */
.tl-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--accent);   /* filled — much more visible */
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tl-line {
  flex: 1;
  width: 2px;                  /* thicker line */
  background: var(--border);
  margin-top: 7px;
}

/* body */
.tl-body {
  padding-top: 0;
}

.tl-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.tl-period {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);         /* was --faint; now more readable */
}

.tl-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);   /* solid fill instead of ghost outline */
  border: 1px solid var(--accent);
  padding: 2px 9px;
  border-radius: 999px;
}

.tl-role {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 3px;
}

.tl-org {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 20px;
}

.tl-project-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);         /* bumped from --faint */
  margin-bottom: 4px;
}

.tl-project-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}

.tl-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tl-bullets li {
  font-size: 13px;
  color: var(--text);          /* was --muted; solid now */
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.tl-bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted);         /* was --faint */
}

.tl-bullets em {
  font-style: normal;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 680px) {
  .tl-entry { grid-template-columns: 20px 1fr; gap: 0 16px; padding-bottom: 56px; }
  #experience { padding-bottom: 80px; }
}