html,
body {
  background: var(--white);
}

.archive-page {
  min-height: 100vh;

  background: var(--white);
  color: var(--black);
}

.archive-logo {
  width: min(88vw, 1180px);

  margin: 34px auto 0;

  display: flex;
  justify-content: center;
}

.archive-logo img {
  width: min(420px, 82vw);
  height: auto;
  display: block;
}

.archive-content {
  min-height: 72vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 64px 0 96px;
}

.archive-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;

  font-size: 0.82rem;
  line-height: 1.7;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.archive-list a {
  opacity: 0.72;
}

.archive-list a:hover {
  opacity: 1;
}

.archive-list__in-progress {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  opacity: 0.72;
  cursor: default;
}

.archive-list__in-progress span {
  position: absolute;
  left: calc(100% + 0.6rem);
  opacity: 0;
  color: #9a9a9a;
  font-size: 0.62em;
  letter-spacing: 0.16em;
  white-space: nowrap;
  transition: opacity 140ms ease;
}

.archive-list__in-progress:hover {
  color: #9a9a9a;
}

.archive-list__in-progress:hover span {
  opacity: 1;
}

.archive-navigation {
  min-height: calc(55vh + 250px);
}

@media (max-width: 620px) {
  .archive-logo {
    margin-top: 26px;
  }

  .archive-content {
    min-height: 66vh;
    padding: 72px 0 84px;
  }

  .archive-list {
    width: min(84vw, 1180px);
    gap: 0.95rem;

    font-size: 0.72rem;
    line-height: 1.6;
    letter-spacing: 0.18em;
    text-align: center;
  }

  .archive-navigation {
    min-height: calc(55vh + 120px);
  }
}
