/* post-page-specific layout — clean reading column over the dark canvas plate */

.post-inner {
  /* no canvas hero here, just the dark plate background */
  min-height: 100vh;
  padding: 60px 32px 80px;
}

.post {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
}

.back-link {
  display: inline-block;
  font-size: 13px;
  color: var(--ink-dim);
  text-decoration: none;
  margin-bottom: 56px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

.post-header { margin-bottom: 48px; }

.post-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.post-tag {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(125,249,255,0.08);
  border: 1px solid rgba(125,249,255,0.25);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.post-header h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 600;
  color: var(--ink);
}

.post-lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 0;
  max-width: 60ch;
}

.post-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 65ch;
}
.post-body > * + * { margin-top: 1.2em; }
.post-body h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 2em;
  color: var(--ink);
}
.post-body p { margin: 0; }
.post-body code {
  font-family: var(--mono);
  font-size: 0.88em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(125,249,255,0.08);
  border: 1px solid rgba(125,249,255,0.18);
  color: var(--accent);
}
.post-body em { color: var(--ink); font-style: italic; }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(125,249,255,0.4);
  text-underline-offset: 3px;
}
.post-body a:hover { text-decoration-color: var(--accent); }
