.strickland-history-timeline {
  --history-bg: #f2f1e6;
  --history-navy: #002745;
  --history-blue: #4f7489;
  --history-line: #c8d4da;
  --history-text: #545454;
  background: var(--history-bg);
}

.strickland-history-timeline__top {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.strickland-history-timeline__active-year {
  margin: 0;
  font-family: "Chakra Petch", "Chivo", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--history-navy);
}

.strickland-history-timeline__timeline-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.strickland-history-timeline__track {
  position: relative;
  flex: 1;
  min-height: 40px;
}

.strickland-history-timeline__line,
.strickland-history-timeline__line-active {
  position: absolute;
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.strickland-history-timeline__line {
  background: var(--history-line);
}

.strickland-history-timeline__line-active {
  background: var(--history-blue);
  width: 0;
  pointer-events: none;
}

.strickland-history-timeline__dots {
  position: relative;
  height: 20px;
}

.strickland-history-timeline__dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 4px solid var(--history-line);
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--history-bg);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.strickland-history-timeline__dot.is-current {
  border-color: var(--history-blue);
  background: var(--history-blue);
}

.strickland-history-timeline__dot-year {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  margin: 0;
  font-family: "Chakra Petch", "Chivo", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--history-navy);
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.strickland-history-timeline__dot.is-next-year
  .strickland-history-timeline__dot-year {
  opacity: 1;
  visibility: visible;
}

.strickland-history-timeline__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.strickland-history-timeline__arrow {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 40px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 10px;
  line-height: 1;
  color: var(--history-navy);
  cursor: pointer;
}

.strickland-history-timeline__arrow[disabled] {
  opacity: 0.5;
  color: #8a9ca9;
  cursor: default;
}

.strickland-history-timeline__dot:focus-visible,
.strickland-history-timeline__arrow:focus-visible {
  outline: 2px solid var(--history-navy);
  outline-offset: 2px;
}

.strickland-history-timeline__slider-wrap {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
  width: calc(100vw - 413px - 80px);
  max-width: 900px;
}

.strickland-history-timeline__slider .slick-track {
  display: flex;
}

.strickland-history-timeline__slider .slick-slide {
  height: auto;
}

.strickland-history-timeline__slider .slick-slide > div {
  height: 100%;
}

.strickland-history-timeline__slide-wrap {
  box-sizing: border-box;
  height: 100%;
  padding-right: 48px;
}
.strickland-history-timeline__slide {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.strickland-history-timeline__slide-wrap.is-current
  .strickland-history-timeline__slide {
  opacity: 1;
}

.strickland-history-timeline__slide-wrap.is-next
  .strickland-history-timeline__slide {
  opacity: 0.5;
}



.strickland-history-timeline__image-frame {
  position: relative;
  border: 18px solid #f8fcfc;
  background: #f8fcfc;
  aspect-ratio: 440 / 300;
  overflow: hidden;
}

.slick-active .strickland-history-timeline__image-frame {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.strickland-history-timeline__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strickland-history-timeline__slide-heading {
  margin: 0;
  font-family: "Chakra Petch", "Chivo", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--history-navy);
}

.strickland-history-timeline__slide-text {
  font-family: "Avenir Next", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--history-text);
}

.strickland-history-timeline__slide-text p {
  margin: 0;
}

.strickland-history-timeline--empty {
  padding: 16px;
  border: 1px dashed var(--history-line);
}

.strickland-history-timeline--empty p {
  margin: 0;
}

@media (max-width: 767px) {
  .strickland-history-timeline__top {
    gap: 16px;
  }

  .strickland-history-timeline__active-year {
    font-size: 24px;
  }

  .strickland-history-timeline__track {
    min-height: 34px;
  }

  .strickland-history-timeline__dot-year {
    bottom: calc(100% + 8px);
    font-size: 14px;
  }

  .strickland-history-timeline__arrow {
    width: 32px;
    height: 30px;
  }

  .strickland-history-timeline__slider-wrap {
    margin-top: 16px;
    width: calc(100vw);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-left: 20px;
  }

  .strickland-history-timeline__slider .slick-list {
    padding-right: 110px;
    overflow: visible;
  }

  .strickland-history-timeline__slide-wrap {
    width: 260px;
    padding-right: 16px;
  }

  .strickland-history-timeline__slide {
    gap: 16px;
  }

  .strickland-history-timeline__image-frame {
    border-width: 10px;
  }

  .strickland-history-timeline__slide-heading {
    font-size: 18px;
  }
}
