.wall-archive-title {
  font-weight: 600;
  font-size: 72px;
  animation: flyIn 500ms ease-out;
}
.wall-archive-description {
  font-size: 22px;
  font-weight: normal;
  margin-top: 10px;
}
.archive {
  max-width: 720px;
  margin: 80px auto 120px;
  box-sizing: border-box;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}
.archive .archive-empty {
  text-align: center;
  color: var(--c-text-soft);
}
.archive-year {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  font-family: sourceHanSerif;
  color: var(--c-text-heading);
  margin: 40px 0 16px;
}
.archive-year::after {
  content: '';
  flex: 1;
  margin-left: 16px;
  border-top: 1px solid var(--c-border);
}
.archive-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0 8px 8px;
  border-left: 2px solid var(--c-border);
  margin-left: 4px;
  position: relative;
  transition: border-color 200ms ease-out;
}
.archive-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transform: translateY(-50%);
  transition: background-color 200ms ease-out;
}
.archive-item:hover {
  border-left-color: var(--c-accent);
}
.archive-item:hover::before {
  background: var(--c-accent);
}
.archive-item:hover .archive-item__title {
  color: var(--c-accent-hover);
}
.archive-item__date {
  flex: none;
  width: 48px;
  color: var(--c-post-info);
  font-size: 14px;
  font-family: monospace;
}
.archive-item__title {
  color: var(--c-link);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 200ms ease-out;
}
@-moz-keyframes flyIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes flyIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-o-keyframes flyIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes flyIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
