/* Blog page — split layout handled by base.css primitives.
   This file covers sidebar header scaling and post reader content styles. */

/* Scale down the page header inside the narrow sidebar pane */
.left-selection-pane .page-header-left {
  margin-bottom: var(--space-lg);
}

.left-selection-pane .page-header-left h1 {
  font-size: var(--font-size-xxl);
}

.left-selection-pane .page-header-left p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* Post reader content */
.post-content {
  max-width: 720px;
}

.post-body {
  font-size: var(--font-size-lg);
  margin-top: var(--space-xl);
}

