/* ── blog-post.css — shared styles for all blog posts ── */
.wrap { max-width: 680px; }

.post-header { margin-bottom: 32px; }
.post-title { font-size: 26px; font-weight: normal; line-height: 1.3; margin-bottom: 8px; }
.post-meta {
  font-family: -apple-system, sans-serif;
  font-size: 13px; color: var(--text3);
}
.post-meta .tag {
  font-size: 11px; font-weight: 600;
  background: var(--tag-bg); color: var(--text3);
  padding: 2px 8px; border-radius: 4px; margin-left: 4px;
}
.post-meta .read-time { margin-left: 8px; }

.post-body p { margin-bottom: 16px; color: var(--text2); }
.post-body h2 {
  font-size: 20px; font-weight: normal;
  margin: 32px 0 12px; color: var(--text);
}
.post-body blockquote {
  border-left: 3px solid var(--link-hover);
  background: var(--highlight);
  padding: 10px 14px; margin: 16px 0;
  font-size: 15px; color: var(--text2);
  border-radius: 0 6px 6px 0;
}
.post-body ul { padding-left: 20px; margin-bottom: 16px; color: var(--text2); }
.post-body li { margin-bottom: 4px; }
.post-body ol { padding-left: 20px; margin-bottom: 16px; color: var(--text2); }
.post-body strong { color: var(--text); }
.post-body em { color: var(--text3); }
.post-body code {
  font-family: 'Courier New', monospace;
  font-size: 14px; background: var(--code-bg);
  padding: 2px 6px; border-radius: 3px;
}
.post-body pre {
  background: var(--code-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 16px 0;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text2);
}
.post-body pre code {
  background: none; padding: 0; font-size: inherit;
}
.post-body table {
  width: 100%; border-collapse: collapse;
  margin: 16px 0;
  font-family: -apple-system, sans-serif; font-size: 13.5px;
}
.post-body th {
  text-align: left; font-weight: 600;
  color: var(--text3); padding: 6px 10px;
  border-bottom: 1px solid var(--border); font-size: 12px;
}
.post-body td {
  padding: 5px 10px; border-bottom: 1px solid var(--border-light);
  color: var(--text2); font-family: 'Courier New', monospace; font-size: 13px;
}
.post-body tr:last-child td { font-weight: 700; color: var(--text); }

.post-nav {
  margin-top: 40px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px; font-family: -apple-system, sans-serif;
}
