/* prose.css — long-form text pages: legal, about narrative, service detail body */

.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose p, .prose li { color: var(--text); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: 0.5em; }
.prose .muted { color: var(--text-muted); }
.prose hr { border: 0; border-top: 1px solid var(--rule); margin: 2.2em 0; }
.prose .updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2em; }

.callout {
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--highlight);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 1.6em 0;
}
.callout p:last-child { margin-bottom: 0; }

.dl-legal { display: grid; gap: 6px; }
.dl-legal dt { font-weight: 600; }
.dl-legal dd { margin: 0 0 12px; color: var(--text-muted); }

/* intro / narrative block on service & about */
.narrative { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.narrative .aside {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: calc(var(--hdr-h) + 20px);
}
.narrative .aside h4 { font-family: var(--ff-display); font-size: 1.1rem; margin-bottom: 12px; }
.narrative .aside ul { list-style: none; padding: 0; margin: 0; }
.narrative .aside li { padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: 0.95rem; display: flex; justify-content: space-between; gap: 14px; }
.narrative .aside li:last-child { border-bottom: 0; }
.narrative .aside li span { color: var(--text-muted); }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 0; }
.tag {
  font-size: 0.84rem;
  background: var(--chalk-dim);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 100px;
}

@media (max-width: 860px) {
  .narrative { grid-template-columns: 1fr; gap: 28px; }
  .narrative .aside { position: static; }
}
