/* ============================================================
   ApiFixer — single-post.css
   Light editorial design for single blog posts only (loaded in
   addition to base.css, only when is_singular('post')). Adapted
   from the apifixer.com "API Fixer Pro" reference design — its own
   self-contained token set, distinct from base.css's dark theme
   tokens (--bg/--fg/--neon/--cyan), so both can coexist on the
   same page without collision. Header/footer are untouched and
   keep using the dark theme from base.css.
   ============================================================ */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-latin-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212;
}

.single-post-page {
  --accent: #0a6e4f;
  --accent-lt: #e0f5ee;
  --accent-mid: #1d9e75;
  --accent-dark: #064433;
  --ink: #0f1b14;
  --ink-2: #2e4039;
  --ink-3: #5a7168;
  --surface: #ffffff;
  --surface-2: #f7faf8;
  --surface-3: #eef5f1;
  --sp-border: #daeade;
  --code-bg: #0f2218;
  --code-fg: #a8e6c5;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --sp-shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
  --sp-shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
  --sp-transition: 0.22s cubic-bezier(.4, 0, .2, 1);

  background: var(--surface-2);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.7;
  padding: 8rem 0 5rem;
}
@media (min-width: 900px) { .single-post-page { padding: 10rem 0 6rem; } }

.single-post-page a { color: inherit; text-decoration: none; }
.single-post-page img { display: block; max-width: 100%; }

/* Breadcrumb bar */
.single-post-page .breadcrumb-bar {
  background: var(--surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 24px;
}
.single-post-page .breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 13px; color: var(--ink-3);
}
.single-post-page .breadcrumb a { color: var(--accent); transition: color var(--sp-transition); }
.single-post-page .breadcrumb a:hover { color: var(--accent-dark); }
.single-post-page .breadcrumb .sep { color: var(--sp-border); }
.single-post-page .breadcrumb .current { color: var(--ink-2); font-weight: 500; }

/* Layout grid */
.single-post-page .layout-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 960px) { .single-post-page .layout-grid { grid-template-columns: 1fr 320px; gap: 36px; } }

/* Post content card */
.single-post-page .post-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sp-border);
  padding: 24px 20px;
  box-shadow: var(--sp-shadow-sm);
}
@media (min-width: 640px) { .single-post-page .post-content { padding: 36px; } }
@media (min-width: 960px) { .single-post-page .post-content { padding: 48px 52px; } }

/* Post meta row */
.single-post-page .post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.single-post-page .cat-badge {
  display: inline-block; background: var(--accent-lt); color: var(--accent-dark);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 100px; text-transform: uppercase;
}
.single-post-page .meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sp-border); }
.single-post-page .meta-date,
.single-post-page .meta-read { font-size: 13px; color: var(--ink-3); }

/* Title */
.single-post-page .post-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

/* Author row */
.single-post-page .author-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--sp-border);
}
.single-post-page .author-avatar {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden;
  background: var(--accent-mid); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; flex-shrink: 0;
}
.single-post-page .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.single-post-page .author-info { display: flex; flex-direction: column; }
.single-post-page .author-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.single-post-page .author-role { font-size: 12px; color: var(--ink-3); }
.single-post-page .share-row { display: flex; gap: 6px; margin-left: auto; }
.single-post-page .share-btn {
  width: 34px; height: 34px; border: 1px solid var(--sp-border); border-radius: var(--radius-sm);
  background: transparent; color: var(--ink-3); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--sp-transition);
}
.single-post-page .share-btn:hover { background: var(--accent-lt); border-color: var(--accent-mid); color: var(--accent-dark); }

/* Featured image / gradient placeholder */
.single-post-page .featured-image-wrap { margin-bottom: 36px; }
.single-post-page .featured-image { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--sp-border); }
.single-post-page .featured-image img { width: 100%; height: auto; }
.single-post-page .img-placeholder {
  height: 240px;
  background: linear-gradient(135deg, var(--surface-3) 0%, var(--accent-lt) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
}
.single-post-page .img-caption {
  padding: 10px 16px; font-size: 12px; color: var(--ink-3);
  background: var(--surface-3); border-top: 1px solid var(--sp-border);
  text-align: center; font-style: italic;
}

/* Post body typography */
.single-post-page .post-body { color: var(--ink-2); }
.single-post-page .post-body p { font-size: 16.5px; line-height: 1.8; margin-bottom: 20px; color: var(--ink-2); }
.single-post-page .post-body p.lead {
  font-size: 18px; color: var(--ink); font-weight: 400;
  border-left: 3px solid var(--accent-mid); padding-left: 18px; margin-bottom: 28px;
}
.single-post-page .post-body h2 {
  font-family: var(--font-serif); font-size: 24px; color: var(--ink);
  margin: 36px 0 14px; letter-spacing: -.01em; scroll-margin-top: 6rem;
}
.single-post-page .post-body h3 {
  font-family: var(--font-sans); font-size: 18px; font-weight: 600; color: var(--ink);
  margin: 28px 0 10px; scroll-margin-top: 6rem;
}
.single-post-page .post-body ul,
.single-post-page .post-body ol { margin: 0 0 20px; padding-left: 1.4rem; color: var(--ink-2); }
.single-post-page .post-body li { margin: 0.4rem 0; }
.single-post-page .post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.single-post-page .post-body img { border-radius: var(--radius-md); }
.single-post-page .post-body blockquote {
  border-left: 3px solid var(--accent-mid); background: var(--accent-lt);
  color: var(--ink-2); font-style: italic; padding: 0.75rem 1.25rem;
  margin: 1.5rem 0; border-radius: 0 8px 8px 0;
}
.single-post-page .post-body hr { border: none; border-top: 1px solid var(--sp-border); margin: 2rem 0; }

/* Code — reuses the sitewide Prism token colors (unscoped in blog.css),
   just a different code-block background/foreground for this page. */
.single-post-page .post-body code {
  font-family: 'JetBrains Mono', monospace; font-size: 13.5px;
  background: var(--surface-3); color: var(--accent-dark);
  padding: 2px 6px; border-radius: 4px;
}
.single-post-page .post-body pre {
  background: var(--code-bg); border-radius: var(--radius-md);
  padding: 20px 24px; overflow-x: auto; margin: 24px 0;
  border: 1px solid rgba(255, 255, 255, .06);
}
.single-post-page .post-body pre code {
  background: none; color: var(--code-fg); font-size: 13.5px; padding: 0; line-height: 1.7;
}
.single-post-page .post-body pre[class*="language-"] { background: var(--code-bg); }
.single-post-page .post-body :not(pre) > code[class*="language-"] { background: var(--surface-3); color: var(--accent-dark); }
.single-post-page .code-copy-btn {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--code-fg);
}
.single-post-page .code-copy-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

/* Tables */
.single-post-page .post-body table {
  width: 100%; border-collapse: collapse; margin: 32px 0;
  font-size: 0.95rem; line-height: 1.5; border-radius: 8px; overflow: hidden;
  box-shadow: var(--sp-shadow-sm); border: 1px solid var(--sp-border);
}
.single-post-page .post-body table th {
  background-color: var(--surface-3); color: var(--ink);
  font-weight: 600; text-align: left; padding: 14px 16px;
  border-bottom: 2px solid var(--sp-border);
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem;
}
.single-post-page .post-body table td {
  padding: 12px 16px; border-bottom: 1px solid var(--surface-3); color: var(--ink-2); vertical-align: middle;
}
.single-post-page .post-body table tbody tr:nth-child(even) { background-color: var(--surface-2); }
.single-post-page .post-body table tbody tr:hover { background-color: var(--surface-3); }
.single-post-page .post-body table td code {
  background: var(--surface-2); color: var(--accent-dark); padding: 2px 6px; border-radius: 4px;
}
@media (max-width: 600px) {
  .single-post-page .post-body table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Callouts — available to editors via the block editor's "Additional CSS
   Class" field: callout + (callout-info | callout-success) on a Group/Paragraph block. */
.single-post-page .callout {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius-md); margin: 24px 0; font-size: 15px;
}
.single-post-page .callout-info { background: #e8f0fe; border-left: 3px solid #4285f4; color: #1a3a6e; }
.single-post-page .callout-success { background: var(--accent-lt); border-left: 3px solid var(--accent-mid); color: var(--accent-dark); }

/* FAQ blocks (apifixer/faq, apifixer/faq-item) restyled for the light theme */
.single-post-page .post-body .wp-block-apifixer-faq { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem; }
.single-post-page .post-body .wp-block-apifixer-faq-item {
  border: 1px solid var(--sp-border); border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem; background: var(--surface-3);
}
.single-post-page .post-body .wp-block-apifixer-faq-item .faq-question {
  margin: 0 0 0.5rem; font-size: 1rem; font-weight: 700; color: var(--ink);
  display: flex; align-items: baseline; gap: 0.5rem;
}
.single-post-page .post-body .wp-block-apifixer-faq-item .faq-question::before { content: "Q."; color: var(--accent-mid); font-family: 'JetBrains Mono', monospace; }
.single-post-page .post-body .wp-block-apifixer-faq-item .faq-answer { margin: 0; color: var(--ink-2); font-size: 0.9rem; line-height: 1.65; padding-left: 1.5rem; }

/* Post tags */
.single-post-page .post-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--sp-border);
}
.single-post-page .tag {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; padding: 5px 12px; border-radius: 100px;
  background: var(--surface-3); color: var(--accent); border: 1px solid var(--sp-border);
  transition: all var(--sp-transition);
}
.single-post-page .tag:hover { background: var(--accent-lt); border-color: var(--accent-mid); }

/* Author bio box */
.single-post-page .author-bio-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--surface-3); border: 1px solid var(--sp-border); border-radius: var(--radius-md);
  padding: 24px; margin-top: 40px; flex-wrap: wrap;
}
.single-post-page .author-bio-avatar {
  width: 90px; height: 90px; border-radius: 50%; overflow: hidden;
  background: var(--accent-mid); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 600; flex-shrink: 0;
}
.single-post-page .author-bio-avatar img { width: 100%; height: 100%; object-fit: cover; }
.single-post-page .author-bio-content { flex: 1; min-width: 200px; }
.single-post-page .author-bio-content h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.single-post-page .author-bio-content p { font-size: 14px; color: var(--ink-3); margin-bottom: 10px; }
.single-post-page .author-contact { font-size: 13px; color: var(--accent); font-weight: 500; }
.single-post-page .author-contact:hover { text-decoration: underline; }

/* Related posts */
.single-post-page .related-posts { margin-top: 48px; }
.single-post-page .related-title { font-family: var(--font-serif); font-size: 22px; margin-bottom: 20px; color: var(--ink); }
.single-post-page .related-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .single-post-page .related-grid { grid-template-columns: repeat(3, 1fr); } }
.single-post-page .related-card {
  border: 1px solid var(--sp-border); border-radius: var(--radius-md); overflow: hidden;
  background: var(--surface); transition: all var(--sp-transition); display: block; position: relative;
}
.single-post-page .related-card:hover { box-shadow: var(--sp-shadow-md); transform: translateY(-3px); border-color: var(--accent-mid); }
.single-post-page .related-img { height: 110px; background: linear-gradient(135deg, var(--surface-3), var(--accent-lt)); }
.single-post-page .related-img img { width: 100%; height: 100%; object-fit: cover; }
.single-post-page .related-meta { padding: 14px; }
.single-post-page .related-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-mid); }
.single-post-page .related-meta h4 { font-size: 13px; font-weight: 600; color: var(--ink); margin: 6px 0 8px; line-height: 1.4; }
.single-post-page .related-date { font-size: 11px; color: var(--ink-3); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.single-post-page .sidebar { position: static; display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 960px) { .single-post-page .sidebar { position: sticky; top: 6rem; } }

.single-post-page .sb-widget {
  background: var(--surface); border: 1px solid var(--sp-border); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--sp-shadow-sm);
}
.single-post-page .sb-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.single-post-page .sb-heading span {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-3); white-space: nowrap;
}
.single-post-page .sb-heading-line,
.single-post-page .sb-heading i.sb-heading-line { flex: 1; height: 1px; background: var(--sp-border); display: block; }

/* Search */
.single-post-page .sb-search form { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--sp-border); border-radius: var(--radius-sm); padding: 8px 14px; transition: border-color var(--sp-transition); }
.single-post-page .sb-search:focus-within { border-color: var(--accent-mid); box-shadow: 0 0 0 3px rgba(29, 158, 117, .12); }
.single-post-page .sb-search input.search-field { border: none; outline: none; width: 100%; font-family: var(--font-sans); font-size: 14px; background: transparent; color: var(--ink); padding: 0; }
.single-post-page .sb-search .search-submit { border: none; background: transparent; color: var(--ink-3); cursor: pointer; padding: 0; }

/* WhatsApp contact widget (top of sidebar) — light-theme override */
.single-post-page .whatsapp-widget {
  background: var(--surface); border: 1px solid var(--sp-border); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--sp-shadow-sm); text-align: center;
}
.single-post-page .whatsapp-widget-icon { background: rgba(37,211,102,0.12); color: #1d9e75; }
.single-post-page .whatsapp-widget h4 {
  font-family: var(--font-sans); text-transform: none; letter-spacing: normal;
  font-size: 16px; font-weight: 700; color: var(--ink);
}
.single-post-page .whatsapp-widget p { color: var(--ink-3); font-size: 13px; }
.single-post-page .whatsapp-widget-btn { background: #25D366; color: #04140C; border-radius: 100px; }
.single-post-page .whatsapp-widget-btn:hover { filter: brightness(1.05); }

/* Author CTA card (dark green) */
.single-post-page .sb-author-card { text-align: center; background: var(--accent-dark); border-color: var(--accent-dark); }
.single-post-page .sb-author-avatar {
  width: 60px; height: 60px; border-radius: 50%; overflow: hidden;
  background: var(--accent-mid); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; margin: 0 auto 12px; border: 3px solid rgba(255, 255, 255, .2);
}
.single-post-page .sb-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.single-post-page .sb-author-name { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.single-post-page .sb-author-bio { font-size: 13px; color: rgba(255, 255, 255, .65); line-height: 1.5; margin-bottom: 16px; }
.single-post-page .sb-author-cta {
  display: inline-block; background: var(--accent-mid); color: #fff; font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: 100px; transition: all var(--sp-transition);
}
.single-post-page .sb-author-cta:hover { background: #15b585; transform: translateY(-1px); }

/* Recent posts */
.single-post-page .sb-recent-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; }
.single-post-page .sb-recent-item { display: flex; gap: 12px; align-items: flex-start; }
.single-post-page .sb-recent-thumb {
  width: 52px; height: 52px; border-radius: var(--radius-sm); overflow: hidden;
  background: linear-gradient(135deg, var(--surface-3), var(--accent-lt)); flex-shrink: 0; border: 1px solid var(--sp-border);
}
.single-post-page .sb-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.single-post-page .sb-recent-info { flex: 1; }
.single-post-page .sb-recent-title { display: block; font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.4; margin-bottom: 4px; transition: color var(--sp-transition); }
.single-post-page .sb-recent-title:hover { color: var(--accent); }
.single-post-page .sb-recent-date { font-size: 11px; color: var(--ink-3); }

/* Category/tag pills */
.single-post-page .sb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.single-post-page .sb-tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500;
  color: var(--accent-dark); background: var(--accent-lt); padding: 6px 12px; border-radius: 100px;
  border: 1px solid var(--sp-border); transition: all var(--sp-transition);
}
.single-post-page .sb-tag:hover { background: var(--accent-mid); color: #fff; border-color: var(--accent-mid); }
.single-post-page .sb-tag-count { background: rgba(0, 0, 0, .08); border-radius: 100px; padding: 1px 6px; font-size: 10px; }
.single-post-page .sb-tag:hover .sb-tag-count { background: rgba(255, 255, 255, .2); }

/* CTA widget (light green) */
.single-post-page .sb-cta-widget { background: var(--accent-lt); border-color: var(--accent-mid); text-align: center; }
.single-post-page .sb-cta-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--accent-mid); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.single-post-page .sb-cta-widget h4 { font-size: 16px; font-weight: 700; color: var(--accent-dark); margin-bottom: 8px; }
.single-post-page .sb-cta-widget p { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; line-height: 1.5; }
.single-post-page .sb-cta-btn {
  display: inline-block; background: var(--accent); color: #fff; font-size: 13px; font-weight: 600;
  padding: 10px 22px; border-radius: 100px; transition: all var(--sp-transition);
}
.single-post-page .sb-cta-btn:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(10, 110, 79, .25); }

/* Table of contents */
.single-post-page .toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; margin: 0; padding: 0; }
.single-post-page .toc-list li a {
  display: block; font-size: 13px; color: var(--ink-3); padding: 6px 10px;
  border-radius: var(--radius-sm); border-left: 2px solid transparent; transition: all var(--sp-transition);
}
.single-post-page .toc-list li.toc-level-3 a { padding-left: 1.5rem; }
.single-post-page .toc-list li a:hover { color: var(--accent); background: var(--accent-lt); border-left-color: var(--accent-mid); }

/* Widget-area widgets (block-based Archives/Categories etc.) inside .sb-widget */
.single-post-page .sb-widget .wp-block-group > * + * { margin-block-start: 0.85rem; }
.single-post-page .sb-widget .wp-block-heading {
  margin: 0 !important; font-size: 12px !important; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--ink-3);
}
.single-post-page .sb-widget ul { list-style: none; margin: 0; padding: 0; }
.single-post-page .sb-widget li { padding: 0.4rem 0; border-bottom: 1px dashed var(--sp-border); font-size: 13px; }
.single-post-page .sb-widget li:last-child { border-bottom: 0; }
/* :where() keeps this at zero specificity so it's a true fallback default —
   component links like .sb-author-cta/.sb-tag/.sb-cta-btn/.sb-recent-title
   (declared above) always win instead of being fought on tag+class count. */
.single-post-page :where(.sb-widget) a { color: var(--ink-3); }
.single-post-page :where(.sb-widget) a:hover { color: var(--accent); }

/* Comments */
.single-post-page .comments-wrap {
  background: var(--surface); border: 1px solid var(--sp-border); border-radius: var(--radius-lg);
  padding: 24px 20px; margin-top: 2.5rem; box-shadow: var(--sp-shadow-sm); color: var(--ink);
}
@media (min-width: 640px) { .single-post-page .comments-wrap { padding: 36px; } }
.single-post-page .comments-title { color: var(--ink); font-family: var(--font-serif); }
.single-post-page .comment {
  background: var(--surface-2); border: 1px solid var(--sp-border); border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem; margin-bottom: 1rem;
}
.single-post-page .comment-author { color: var(--ink); }
.single-post-page .comment-date { color: var(--ink-3); }
.single-post-page .comment-content { color: var(--ink-2); }
.single-post-page .comment-list .children { border-left-color: var(--sp-border); }
.single-post-page .comment-form { background: var(--surface-2); border: 1px solid var(--sp-border); border-radius: var(--radius-md); padding: 1.5rem; }
.single-post-page .field-label { color: var(--ink-3); font-family: var(--font-sans); }
.single-post-page .comment-form .field {
  background: var(--surface); border: 1px solid var(--sp-border); color: var(--ink); font-family: var(--font-sans);
}
.single-post-page .comment-form .field:focus { border-color: var(--accent-mid); box-shadow: 0 0 0 3px rgba(29,158,117,.12); }
.single-post-page .comment-form .btn-primary { background: var(--accent); color: #fff; box-shadow: none; }
.single-post-page .comment-form .btn-primary:hover { background: var(--accent-dark); }
.single-post-page .comment-reply .link-btn { color: var(--accent); }

/* Toast (copy-link feedback) */
.single-post-page .toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; font-size: 13px; padding: 10px 22px; border-radius: 100px;
  opacity: 0; pointer-events: none; transition: all 0.3s ease; z-index: 999;
}
.single-post-page .toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 480px) {
  .single-post-page .post-content { padding: 20px 16px; }
}
