
/* Archival imagery on the About page */
.archive-figure {
  margin: 2.25rem 0 0;
}

.archive-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,.18);
}

.archive-figure figcaption {
  margin-top: .65rem;
  font-size: .78rem;
  line-height: 1.45;
  color: rgba(255,255,255,.58);
}

.archive-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
  margin-top: 2.25rem;
}

.archive-pair .archive-figure {
  margin-top: 0;
}

.archive-pair img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #0d0d0f;
  padding: .5rem;
}

.archive-figure-wide img {
  max-height: 680px;
  object-fit: contain;
  background: #0d0d0f;
}

@media (max-width: 700px) {
  .archive-pair {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }

  .archive-figure {
    margin-top: 1.5rem;
  }

  .archive-figure figcaption {
    font-size: .72rem;
  }
}
