.is-loading {
  overflow-y: auto;
}

.facts dd small {
  margin-left: 8px;
  color: rgba(11, 11, 11, .5);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
}

.current-list li {
  grid-template-columns: 64px minmax(260px, 1.25fr) minmax(220px, 1fr) 100px;
}

.current-list h3 {
  font-family: var(--body);
  font-size: clamp(30px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.current-list b {
  justify-self: end;
  color: var(--muted);
  font-family: var(--display);
  letter-spacing: .12em;
}

.current-list li > span {
  position: relative;
}

.current-list li > span::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--line);
}

@media (max-width: 760px) {
  .current-list li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .current-list h3 {
    font-size: 10.5vw;
  }

  .current-list li > span::after {
    display: none;
  }

  .facts dd small {
    display: block;
    margin: 4px 0 0;
    text-align: right;
  }
}
