/* Healthline Timeline Styling */
.hl-timeline-container {
  position: relative;
  padding-left: 30px;
  margin: 20px 0;
}

/* The Vertical Line (Track) */
.hl-timeline-track {
  position: absolute;
  left: 4px;
  top: 10px;
  bottom: 0px;
  width: 2px;
  background-color: #bfbfbf;
}

.hl-timeline-item {
  position: relative;
  margin-bottom: 30px;
}

/* The Circles (Nodes) */
.hl-timeline-node {
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bfbfbf;
  z-index: 2;
}

.hl-timeline-item.is-current .hl-timeline-node {
  background-color: #0586d7;
  width: 12px;
  height: 12px;
  left: -31px;
}

/* Content Area */
.hl-timeline-header {
  margin: 0 0 16px 0;
  font-weight: 700;
  color: #000;
}

.hl-timeline-date {
  margin-bottom: 4px;
  font-weight: 700;
  color: #000;
}

/* Role Labels and Names */
.hl-timeline-role {
  margin-bottom: 12px;
}

.hl-role-label {
  display: block;
  font-size: 14px;
  line-height: 160%;
  color: #595959;
}

.hl-role-name {
  display: block;
  font-size: 14px;
  line-height: 160%;
  font-weight: 700;
}

/* Remove bottom margin from last item */
.hl-timeline-item:last-child {
  margin-bottom: 0;
}
.hl-timeline-trigger {
  gap: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
