/* Default page template - for legal/content pages like Privacy Policy */

.default-page {
  max-width: 65ch;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

/* Page title */
.default-page > .h1 {
  font-family: var(--font-site-title);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Content wrapper */
.default-page .text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

/* Correct heading hierarchy: h1 > h2 > h3 > h4 */
.default-page .text h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-normal);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  line-height: var(--line-height-snug);
}

.default-page .text h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-normal);
  margin-top: 1.25rem;
  margin-bottom: 0.375rem;
  line-height: var(--line-height-snug);
}

.default-page .text h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-normal);
  margin-top: 1rem;
  margin-bottom: 0.375rem;
  line-height: var(--line-height-normal);
}

/* Paragraph and list spacing - tighter */
.default-page .text p,
.default-page .text ul,
.default-page .text ol {
  margin-bottom: 1rem;
}

/* Horizontal rule - subtle divider, less space */
.default-page .text hr {
  margin: 2rem 0;
  height: 1px;
  background: var(--color-light);
}

/* First child no extra top margin */
.default-page .text :first-child {
  margin-top: 0;
}

/* Slightly less space before first section heading */
.default-page .text h2:first-of-type {
  margin-top: 1.5rem;
}
