/* TIMELINE SECTION SCOPED STYLES */
#section-timeline * {
    box-sizing: border-box;
  }
  
  #section-timeline {
    z-index: -3;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
  }
  
  #section-timeline .timeline_component {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
  }
  
  #section-timeline .timeline_item {
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    padding: 20px 0;
    position: relative;
  }
  
  #section-timeline .timeline_left {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
  }
  
  #section-timeline .timeline_centre {
    display: flex;
    justify-content: center;
  }
  
  #section-timeline .timeline_date-text {
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
    position: sticky;
    top: 50vh;
  }
  
  #section-timeline .timeline_text {
    font-size: 15px;
  }
  
  #section-timeline .timeline_circle {
    background-color: #fff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: sticky;
    box-shadow: 0 0 0 8px #0a0a0a;
  }
  
  #section-timeline .timeline_progress {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background-color: #414141;
    z-index: -2;
    pointer-events: none;
  }
  
  #section-timeline .timeline_progress-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #ff6a00, #ee0979);
    z-index: -1;
    transition: height 0.2s ease-out;
    pointer-events: none;
  }
  
  #section-timeline .timeline_image-wrapper img {
    max-width: 150px;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    height: auto;
  }
  
  #section-timeline .timeline_image-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    max-width: 200px;
  }
  
  #section-timeline .timeline_link {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.8px;
    text-decoration: none;
    opacity: 0.6;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: opacity 0.3s;
  }
  
  #section-timeline .timeline_link:hover {
    opacity: 1;
  }
  
  #section-timeline .text-colour-lightgrey {
    color: #ffffffa6;
  }
  
  #section-timeline .overlay-fade-top {
    background-image: linear-gradient(#0a0a0a, #0a0a0a00);
    height: 80px;
    position: absolute;
    inset: 0% 0% auto;
  }
  
  #section-timeline .overlay-fade-bottom {
    background-image: linear-gradient(to top, #0a0a0a, #0a0a0a00);
    height: 80px;
    position: absolute;
    inset: auto 0% 0%;
  }
  
  /* Typography adjustments only for this section */
  #section-timeline h3 {
    font-size: 25px;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  #section-timeline .paragraph-large {
    font-size: 20px;
    letter-spacing: -0.02em;
  }
  
  
  #section-timeline .padding-vertical-xlarge {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  #section-timeline .timeline-main_heading-wrapper {
    color: #fff;
    text-align: center;
    max-width: 640px;
    margin: auto;
  }
  
  /* Responsive adjustments */
  @media screen and (max-width: 767px) {
    #section-timeline h2 {
      font-size: 40px;
    }
  
    #section-timeline .paragraph-large {
      font-size: 18px;
    }
  
    #section-timeline .padding-vertical-xlarge {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    #section-timeline .timeline_item {
      grid-template-columns: 64px 1fr;
    }
  
    #section-timeline .timeline_left {
      text-align: left;
      grid-area: 1 / 2 / 2 / 3;
    }
  
    #section-timeline .timeline_centre {
      justify-content: flex-start;
      grid-area: 1 / 1 / 3 / 2;
    }
  
    #section-timeline .timeline_right {
      grid-area: span 1 / span 1 / span 1 / span 1;
    }
  
    #section-timeline .timeline_date-text {
      font-size: 36px;
      margin-bottom: 24px;
    }
  
    #section-timeline .timeline_text {
      font-size: 12px;
    }
  
    #section-timeline .timeline_progress {
      left: 6px;
    }
  
    #section-timeline .timeline_image-wrapper {
      justify-content: flex-start;
      padding-right: 0;
      padding-left: 0;
      margin-bottom: 12px;
    }
  
    #section-timeline .timeline_image-wrapper img {
      max-width: 80px !important;
      width: 80px !important;
      height: auto;
    }
  
  }
  