/* ── About page ──────────────────────────────────────────────── */
.about-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 6rem 2rem 5rem;
}

.about-content {
  max-width: 620px;
  width: 100%;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.5;
}

.about-content p {
  margin-bottom: 1em;
}

.about-content p:last-child {
  margin-bottom: 0;
}


@media screen and (max-width: 44rem) {
  .about-layout {
    padding: 8rem 1.5rem 3rem;
  }
}