/* Duluth MN Real Estate Guide — additive prose spacing.
   guide.css is the design system and stays byte-identical to the prototype.
   This file only spaces markdown-generated prose (lists, sub-headings) inside
   the neighborhood detail body. Selectors are direct-child scoped so they can
   never reach an existing component such as .pc ul in the pros/cons grid. */

.detail-main > section > ul,
.detail-main > section > ol {
  color: var(--ink-soft);
  margin: 0 0 0.9rem;
  padding-left: 1.3rem;
  max-width: 66ch;
}

.detail-main > section > li,
.detail-main > section > ul > li,
.detail-main > section > ol > li {
  margin-bottom: 0.35rem;
}

.detail-main > section > h3 {
  font-size: var(--step-0);
  margin: 1.4rem 0 0.5rem;
}
