/* /block/ guides. Loads after blog.css and only adds what those pages need:
   stat cards, numbered setup steps, app screenshots, related links, sources. */

.post code{
  font-size:.92em;background:var(--surface);padding:1px 6px;border-radius:6px;
  overflow-wrap:anywhere;   /* the Windows hosts path is wider than a phone */
}
.post sup{font-size:.7em;line-height:0}
.post sup a{text-decoration:none;color:var(--accent);font-weight:700;padding:0 1px}

.stats{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:12px;margin:26px 0 30px;
}
.stat{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-card);
  padding:20px 22px;
}
.stat b{
  display:block;font-size:34px;font-weight:800;letter-spacing:-.03em;
  line-height:1.05;color:var(--accent);margin-bottom:8px;
}
.stat span{display:block;font-size:15px;line-height:1.5;color:#3C3A36}

.callout{
  background:var(--surface);border:1px solid var(--line);
  border-radius:var(--r-card);padding:20px 24px;margin:0 0 26px;
}
.callout p:last-child{margin-bottom:0}

.post ol.steps{list-style:none;padding:0;counter-reset:step;margin:22px 0 26px}
.post ol.steps li{
  counter-increment:step;position:relative;padding:0 0 0 48px;margin-bottom:18px;
}
.post ol.steps li::before{
  content:counter(step);position:absolute;left:0;top:0;
  width:32px;height:32px;border-radius:50%;
  background:var(--accent);color:var(--white);
  font-weight:800;font-size:15px;display:grid;place-items:center;
}

.shots{display:flex;gap:14px;margin:8px 0 34px;overflow-x:auto;padding-bottom:4px}
.post .shots .shot{margin:0;flex:0 0 190px}
.post .shots .shot img{border-radius:22px;border:1px solid var(--line)}

.rels{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 10px}
.post a.rel{
  text-decoration:none;border:1px solid var(--line);border-radius:999px;
  padding:9px 16px;font-size:15px;font-weight:600;background:var(--white);
  transition:border-color .15s ease;
}
.post a.rel:hover{border-color:var(--accent)}

.post h2.sources-h{font-size:18px;margin-top:48px}
.post ol.sources{font-size:14px;line-height:1.55;color:var(--muted);padding-left:22px}
.post ol.sources li{margin-bottom:8px;scroll-margin-top:20px}
.post ol.sources a{color:var(--muted)}
.src-pub{opacity:.85}

@media (max-width:560px){
  .stat b{font-size:30px}
  .post .shots .shot{flex-basis:160px}
}
