/* Career timeline (no container border; each entry draws its own segment) */
.career-timeline { margin-left: 1rem; padding-left: 1rem; }

.timeline-entry {
  position: relative;
  margin-bottom: 1rem;
}

/* Dot */
.timeline-entry::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px 2px rgba(255, 230, 0, 0.5);  /* glow effect */
  background: var(--bs-warning, #FFDF00);
  /* box-shadow: 0 0 6px rgba(255, 215, 0, 0.6); */
}

/* Vertical line segment to the NEXT entry */
.timeline-entry::after {
  content: "";
  position: absolute;
  left: -0.75rem;          /* align with the dot center */
  top: 1.9rem;             /* start just below the dot */
  bottom: -1rem;           /* reaches near next entry’s dot */
  width: 2px;
  /* background: rgba(255, 255, 255, 0.08); */
  background: repeating-linear-gradient(to bottom, #2a2b31 0 4px, transparent 6px 15px);
}

/* Stop the line after the last item */
.timeline-entry:last-child { margin-bottom: 0; }
.timeline-entry:last-child::after { display: none; }

/* Card styling (unchanged) */
.timeline-entry .float-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  transition: transform .2s ease, border-color .2s ease;
}
.timeline-entry .float-card:hover {
  transform: translateX(4px);
  border-color: #FFDF00;
}


.badge-outline {
  display: inline-block;
  padding: .35em .65em;
  border: 1px solid var(--bs-warning);
  color: var(--bs-warning);
  background-color: transparent !important;
  font-size: .75rem;
  border-radius: .35rem;
  font-weight: 500;
  line-height: 1;
}

.badge-outline:hover {
  background-color: rgba(247, 201, 72, .15); /* subtle hover glow */
  cursor: default;
}