body.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.page main {
  flex: 1 0 auto;
  width: 100%;
}

.page-content {
  padding: clamp(3rem, 8vw, 5rem) 0 var(--section-pad);
  max-width: 560px;
}

.page-content h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.page-content h2 {
  margin: 36px 0 12px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.page-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.page-content ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.page-content a {
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content a:hover {
  opacity: 0.7;
}

.last-updated {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.breadcrumb {
  padding: 20px 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--border-strong);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
}
