/* Content typography for the "doc" pages (Privacy Policy, Terms, Changelog).
   Base reset, colors, and the shared header/footer come from styles.css —
   this file only styles what's inside <main>. Loaded after styles.css so
   these rules win where they overlap. */

.doc-wrap{max-width:720px; margin:0 auto; padding:0 24px;}
main{padding:56px 0 80px;}
main h1{
  font-family:'Space Grotesk', sans-serif; font-size:32px; margin:0 0 8px;
}
.updated{
  font-family:'IBM Plex Mono', monospace; font-size:12.5px;
  color:var(--ink-faint); margin-bottom:40px;
}
main h2{
  font-family:'Space Grotesk', sans-serif; font-size:19px;
  margin:40px 0 12px;
}
main p{color:var(--ink-muted); font-size:15px; margin:0 0 14px; line-height:1.65;}
main ul{color:var(--ink-muted); font-size:15px; padding-left:20px; margin:0 0 14px;}
main li{margin-bottom:8px;}
main strong{color:var(--ink); font-weight:600;}
.callout{
  background:var(--surface); border:1px solid var(--line); border-radius:12px;
  padding:20px 22px; margin:32px 0;
}
.callout p{margin:0; color:var(--ink);}
code{
  font-family:'IBM Plex Mono', monospace; font-size:13px;
  background:var(--surface); border:1px solid var(--line); border-radius:4px;
  padding:1px 6px;
}

/* Changelog-specific */
.intro{color:var(--ink-muted); font-size:15.5px; max-width:520px; margin-bottom:48px;}
.entry{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:24px;
  padding:26px 0;
  border-top:1px solid var(--line);
}
.entry:first-of-type{border-top:none;}
@media (max-width:560px){
  .entry{grid-template-columns:1fr; gap:8px;}
}
.version{
  font-family:'IBM Plex Mono', monospace;
  font-size:13px;
  color:var(--accent);
  padding-top:2px;
}
.entry h2{
  font-family:'Space Grotesk', sans-serif;
  font-size:17px;
  margin:0 0 10px;
}
.entry ul{
  color:var(--ink-muted);
  font-size:14.5px;
  margin:0;
  padding-left:18px;
}
.entry li{margin-bottom:7px;}
.entry li:last-child{margin-bottom:0;}
