/* TIMELINE */
.timeline{position:relative;max-width:700px;margin:0 auto}
.timeline::before{content:'';position:absolute;left:50%;top:0;bottom:0;width:2px;background:var(--border-light);transform:translateX(-50%)}
.tl-item{display:flex;align-items:flex-start;gap:24px;margin-bottom:48px;position:relative}
.tl-item:nth-child(odd){flex-direction:row-reverse;text-align:right}
.tl-item__dot{width:16px;height:16px;border-radius:50%;background:var(--accent);border:3px solid var(--off-white);flex-shrink:0;position:relative;z-index:1;box-shadow:0 0 0 4px var(--accent-glow)}
.tl-item__content{flex:1;max-width:calc(50% - 32px)}
.tl-item__year{font-family:var(--font-display);font-weight:800;font-size:1.4rem;color:var(--accent);margin-bottom:4px}
.tl-item__text{font-size:.9rem;color:var(--text-body);line-height:1.6}
@media(max-width:768px){
  .timeline::before{left:16px}
  .tl-item,.tl-item:nth-child(odd){flex-direction:row;text-align:left}
  .tl-item__content{max-width:100%}
}
