.post {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 32px) clamp(60px, 8vw, 120px);
}
.post .eyebrow { margin-bottom: 20px; }
.post h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 16px;
}
.post .lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 12px;
}
.post .meta { font-size: 13px; color: var(--muted-2); margin: 0 0 48px; }
.post-body h2 {
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 48px 0 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.post-body h2:first-of-type { border-top: 0; padding-top: 0; }
.post-body h3 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; letter-spacing: -0.01em; }
.post-body p, .post-body li { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
.post-body p { margin: 0 0 14px; }
.post-body ul, .post-body ol { padding-left: 22px; margin: 0 0 16px; }
.post-body ul { list-style: disc; }
.post-body li { margin-bottom: 8px; }
.post-body li::marker { color: var(--muted-2); }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.post-body a:hover { color: var(--accent-2); }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 20px;
  font-size: 14px;
  display: block;
  overflow-x: auto;
}
.post-body th, .post-body td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  min-width: 90px;
}
.post-body th { background: var(--bg-quiet, rgba(0,0,0,0.03)); color: var(--ink); font-weight: 600; }
.post-body code {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 0.9em;
  background: rgba(0,0,0,0.05);
  padding: 1px 5px;
  border-radius: 4px;
}
.post-body pre {
  background: rgba(0,0,0,0.045);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  overflow-x: auto;
  margin: 0 0 16px;
}
.post-body pre code { background: none; padding: 0; font-size: 13px; line-height: 1.55; }
.post-body blockquote {
  border-left: 3px solid var(--line);
  margin: 0 0 16px;
  padding: 2px 0 2px 16px;
  color: var(--muted);
}
.post-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-md, 14px);
  background: var(--surface, rgba(0,0,0,0.02));
}
.post-cta h2 { margin: 0 0 6px; font-size: 20px; letter-spacing: -0.02em; }
.post-cta p { margin: 0; color: var(--muted); font-size: 14.5px; }
.post-related { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
.post-related a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; font-size: 15px; }
.post-related a:hover { color: var(--accent); }
.blog-index h1 { margin-bottom: 10px; }
.post-list { display: flex; flex-direction: column; margin-top: 40px; border-top: 1px solid var(--line); }
.post-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.post-item-meta { font-size: 12.5px; color: var(--muted-2); }
.post-item-title { font-size: clamp(18px, 2vw, 21px); font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.post-item:hover .post-item-title { color: var(--accent); }
.post-item-desc { font-size: 14.5px; color: var(--muted); line-height: 1.55; max-width: 65ch; }
