
.splash {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('splash.webp');
  width: 100%;
  height: 600px;
  max-height: 80vh;
}

.no-webp {
  background-image: url('splash.png');
}

.splash__title {
  position: absolute;
  left: 15%;
  top: 15%;
}

/* ----- */
.intro {
  padding: var(--line-height-em) 0;
  background: var(--white);
}

.explore-prompt {
  color: var(--burnt-orange);
  font-weight: var(--fw-medium);
  text-align: center;
  background-image: url('/static/components/assets/down-carat--burnt-orange.png');
  background-repeat: no-repeat;
  background-position: right 20%;
  background-size: 1.3em;
  margin: 0 auto;
  width: 13em;
}

.explore-prompt:hover {
  background-image: url('/static/components/assets/down-carat--burnt-orange.png');
}

.explore-prompt a {
  text-decoration: none;
}

/* ------- */

.timeline {
  padding-top: calc(var(--line-height-em)*3);
  padding-bottom: calc(var(--line-height-em)*3);

}

.timeline__item {
  padding-top: calc(var(--line-height-em)*2);
  padding-bottom: var(--line-height-em);
  display: flex;
  justify-content: flex-end;
}

.timeline__image-wrapper {
  min-width: 100px;
  min-height: 50px;
  max-height: 200px;
  max-width: 300px;
  margin-right: 100px;

}

.timeline__image {
  max-width: 200px;
  min-width: 100px;
  min-height: 50px;
  max-height: 200px;
  margin-right: 100px;
}

@media screen and (max-width:954px) {
  .timeline__image {
    max-width: 150px;
    margin-right: 20px;
  }
}

.timeline__image.logo {
  margin: var(--line-height-em) 100px 0 auto;
  display: block;
  width: 250px;
  object-fit: contain;
  background: none;
}

.timeline__info {
  position: relative;
  width: 60%;
}

.timeline__info::before {
  content: '';
  height: calc(100% + var(--line-height-em)*3);
  width: 1px;
  position: absolute;
  left: calc(15px/2);
  top: calc(var(--line-height-em)*-2);
  background-color: var(--extra-muted);
}

.timeline__year {
  position: relative;
  min-width: 7em;
  padding-left: 30px;
  font-weight: var(--fw-bold);
}

.timeline__year::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--muted);
  position: absolute;
  left: 0;
  top: 6px;
}

.timeline__info {
  display: flex;
}

@media screen and (max-width:459px) {
  .timeline__item {
    padding-top: 0;
    display: block;
  }

  .timeline__image {
    max-width: 100%;
    /* width: 100%; */
    margin-right: 0;
    margin-bottom: calc(var(--line-height-em)/2);
  }

  .timeline__info {
    width: 100%;
  }

  .timeline__info::before {
    top: calc(var(--line-height-em)*-.5);
  }
}
