/* assets/css/timeline.css */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;            /* vertical line position */
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(125, 130, 140, 0.35);
}
.timeline-item {
  position: relative;
  margin: 0 0 24px 48px; /* left gutter for line + dot */
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;                  /* dot */
  box-shadow: 0 0 0 3px rgba(125,130,140,.12);
}
.timeline-time {
  font-weight: 500;
  color: #7f8794;
  margin-bottom: 4px;
  line-height: 1.35;
  font-size: 0.9rem;
}
.timeline-title {
  margin: 0;
  font-weight: 600;
  line-height: 1.35;
  font-size: 0.9rem;
}
.timeline-meta {
  font-weight: 300;
  color: #7f8794;
  margin: 2px 0 8px;
  line-height: 1.35;
  font-size: 0.8rem;
}
.timeline p {
  font-weight: 100;
  margin: 0 0 8px;
  font-size: 0.75rem;
}
