.site-main {
  min-height: 100vh;
  padding-top: 60px;
}

.shell {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--gutter-lg);
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.route-view.is-active.route-enter {
  animation: route-enter 360ms cubic-bezier(.22, .8, .3, 1) both;
}

.page-shell {
  min-height: calc(100vh - 60px);
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: var(--s10);
}

.page-intro {
  max-width: 880px;
}

.page-intro .eyebrow {
  margin-bottom: var(--s4);
}

.page-title {
  max-width: 900px;
  font-family: var(--font-heading);
  font-size: var(--fs-page-title);
  font-synthesis: none;
  font-weight: 700;
  line-height: var(--lh-title);
  letter-spacing: -.015em;
  text-wrap: balance;
  text-transform: none;
}

.page-description {
  max-width: 680px;
  max-inline-size: var(--measure-lead);
  margin-top: var(--s6);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: 400;
  line-height: var(--lh-body);
  text-wrap: pretty;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s5);
}

.section-heading h2,
.writing-catalogue-heading h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  font-synthesis: none;
  font-weight: 700;
  line-height: var(--lh-title);
  letter-spacing: -.015em;
  text-wrap: balance;
  text-transform: none;
}

@keyframes route-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
