/* DocketProof guides — additional rules for /guides/ and /pl/guides/ pages,
   layered on top of blog.css (loaded first, for the shared design tokens,
   nav, and footer — see that file's own comment). This file only adds
   what a guide needs beyond a report entry: prose headings, lists, a
   plain code block, and the "what this proves / doesn't prove" honesty
   grid already used on the landing page (index.html), reused here instead
   of restyled, so a reader sees one consistent honesty affordance across
   the whole site. */

.guide-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.guide-body h2:first-child { margin-top: 0; }
.guide-body p { margin-bottom: 16px; line-height: 1.7; color: var(--text); }
.guide-body p:last-child { margin-bottom: 0; }
.guide-body ul, .guide-body ol { margin: 0 0 16px 22px; line-height: 1.7; }
.guide-body li { margin-bottom: 6px; }
.guide-body code { font-family: var(--mono); font-size: 0.92em; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 1px 6px; }
.guide-body a { color: var(--ink-bright); text-decoration: underline; text-underline-offset: 3px; }
.guide-body strong { color: var(--text); font-weight: 600; }

.guide-toc { margin: 28px 0 40px; padding: 18px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.guide-toc p.section-label { margin-bottom: 10px; }
.guide-toc ol { margin: 0 0 0 20px; }
.guide-toc a { color: var(--text-dim); text-decoration: none; }
.guide-toc a:hover { color: var(--ink-bright); }

.code-block { margin: 20px 0 28px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 10px; overflow: hidden; }
.code-block .bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.code-block .bar .fname { font-family: var(--mono); font-size: 12px; color: var(--text-faint); }
.code-block pre { margin: 0; padding: 20px 22px; font-family: var(--mono); font-size: 13px; line-height: 1.7; overflow-x: auto; color: var(--text); white-space: pre; }

.honesty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin: 24px 0 32px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 720px) { .honesty-grid { grid-template-columns: 1fr; } }
.honesty-col { background: var(--surface); padding: 24px 22px; }
.honesty-col h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; font-weight: 600; }
.honesty-col.proves h3 { color: var(--valid); }
.honesty-col.doesnt h3 { color: var(--invalid); }
.honesty-col ul { list-style: none; margin: 0; }
.honesty-col li { margin-bottom: 12px; padding-left: 18px; position: relative; font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.honesty-col li::before { content: "—"; position: absolute; left: 0; color: var(--text-faint); }
.honesty-col li:last-child { margin-bottom: 0; }

.guide-list { list-style: none; margin-top: 44px; }
.guide-list li { padding: 20px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.guide-list li:first-child { border-top: none; }
.guide-list a { color: var(--text); text-decoration: none; font-size: 16px; }
.guide-list a:hover { color: var(--ink-bright); }
.guide-list .guide-desc { display: block; font-size: 13px; color: var(--text-dim); margin-top: 4px; }
