body {
    overflow: visible ;
   }
  /* ============================================================
   TIMELINE MODULE
   ============================================================ */

/* ---- Sub-navigation ---- */
.section--timeline .tl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.6rem .5rem;
  margin-bottom: 3.5rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section--timeline .tl-nav::-webkit-scrollbar {
  display: none;
}
.section--timeline .tl-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  width: fit-content;
  justify-content: center;
}
.section--timeline .tl-nav__sep {
  padding: 0 0.25rem;
  font-size: 2rem;
  line-height: 0;
  flex-shrink: 0;
  user-select: none;
  margin-top: -4px;
}
.section--timeline .tl-nav__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.section--timeline .tl-nav__link {
  display: block;
  padding: 0.3rem 0.7rem;
  font-size: 1.3125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  color: inherit;
}
/* ---- Timeline wrapper and vertical line ---- */
.section--timeline .tl-wrap {
  position: relative;
}
.section--timeline .tl-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 0;
}

/* ---- Timeline item — desktop 2-column grid ---- */
.section--timeline .tl-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 3.5rem 0;
  position: relative;
}

/* Odd: text col1, media col2 */
.section--timeline .tl-item--odd .tl-item__text .tl-item__title  { padding-right: 4rem; }
.section--timeline .tl-item--odd .tl-item__text  { grid-column: 1; grid-row: 1; padding-right: 2rem; }
.section--timeline .tl-item--odd .tl-item__media { grid-column: 2; grid-row: 1; padding-left: 2rem; }

/* Even: media col1, text col2 */
.section--timeline .tl-item--even .tl-item__text  { grid-column: 2; grid-row: 1; padding-left: 2rem; padding-top: 3rem;}
.section--timeline .tl-item--even .tl-item__media { grid-column: 1; grid-row: 1; padding-right: 2rem; }

/* Center column — absolutely positioned at the centerline */
.section--timeline .tl-item__center {
  position: absolute;
  left: 50%;
  top: 3.5rem;
  z-index: 2;
}

/* ---- Marker: flag + connector + dot ---- */
.section--timeline .tl-item__marker {
  display: flex;
  align-items: center;
}

/* Odd: flag is on text (left) side — marker extends left, dot sits on line */
.section--timeline .tl-item--odd .tl-item__marker {
  flex-direction: row;
  transform: translateX(calc(-100% + 7px));
}

/* Even: flag is on text (right) side — reverse order, marker extends right */
.section--timeline .tl-item--even .tl-item__marker {
  flex-direction: row-reverse;
  transform: translateX(-7px);
}

.section--timeline .tl-item__flag {
  font-weight: 700;
  padding: 0 10px;
  line-height: 1.3;
  font-size: 1.3125rem;
}
.section--timeline .tl-item__connector {
  display: block;
  width: 28px;
  height: 2px;
  flex-shrink: 0;
}
.section--timeline .tl-item__dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Text column ---- */
.section--timeline .tl-item__title {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  margin-top: 0;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .section--timeline .tl-item__body {
    font-size: 1.125rem;
  }
}
.section--timeline .tl-item__body p:last-child {
  margin-bottom: 0;
}

/* ---- Media column ---- */
.section--timeline .tl-item__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.section--timeline .tl-item__video-wrap {
  width: 100%;
}
.section--timeline .tl-item__video-wrap iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .section--timeline .tl-nav {
    margin-bottom: 2rem;
    margin-left: -20px;
    margin-right: -20px;
  }

  /* Move vertical line to left edge */
  .section--timeline .tl-wrap::before {
    left: 7px;
    transform: none;
  }

  /* Single column layout */
  .section--timeline .tl-item {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0 2rem 28px;
    position: relative;
  }

  /* Center marker: absolute at top-left */
  .section--timeline .tl-item__center {
    position: absolute;
    left: 0;
    top: 2.5rem;
    transform: none;
  }
  .section--timeline .tl-item--odd .tl-item__marker,
  .section--timeline .tl-item--even .tl-item__marker {
    flex-direction: row;
    transform: translateX(1px) translateY(-51px);
    align-items: center;
  }
  .section--timeline .tl-item__connector {
    order: 2;
    /* display: none; */
  }
  .section--timeline .tl-item__dot {
    order: 1;
  }
  .section--timeline .tl-item__flag {
    order: 3;
  }

  /* Content order: media, then text */
  .section--timeline .tl-item__media {
    order: 1;
    margin-bottom: 1.25rem;
    padding: 0 !important;
  }
  .section--timeline .tl-item__text {
    order: 2;
    padding: 0 !important;
  }
}

  {% end_scope_css %}