/* Base reset shared by all SCHONgang pages (from the .dc helmet blocks). */
body {
  margin: 0;
  background: #F3EEE2;
  color: #2a2620;
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: #cfe0e3; }

/* ============================================================================
   Article body — styles the HTML rendered from a post's Markdown (.post-body).
   Mirrors the hand-built article design so Markdown posts match the prototype.
   ========================================================================== */
.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) 24px 0;
  font-family: 'Newsreader', Georgia, serif;
}
.post-body p {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.78;
  color: #3a352c;
}
.post-body h2 {
  margin: 30px 0 14px;
  font-family: 'Newsreader', serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.2;
  color: #2B3824;
}
.post-body ul {
  margin: 0 0 28px;
  padding-left: 22px;
  font-size: 19px;
  line-height: 1.7;
  color: #3a352c;
}
.post-body ul li { margin-bottom: 8px; }

/* Ordered lists render as the numbered-step circle badges. */
.post-body ol {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.post-body ol > li {
  position: relative;
  counter-increment: step;
  padding-left: 46px;
  margin-bottom: 18px;
  font-size: 19px;
  line-height: 1.7;
  color: #3a352c;
  min-height: 32px;
}
.post-body ol > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e4ebdd;
  color: #3c5230;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pull-quote — a normal Markdown blockquote. */
.post-body blockquote {
  margin: 8px 0 30px;
  padding: 6px 0 6px 24px;
  border-left: 4px solid #497E88;
}
.post-body blockquote p {
  margin: 0;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 27px);
  line-height: 1.4;
  color: #2B3824;
}

/* Tip callout — <div class="tip"><b>Tipp aus der Praxis</b> …</div> */
.post-body .tip {
  margin: 0 0 30px;
  background: #dde9eb;
  border-radius: 16px;
  padding: 22px 24px;
  font-family: 'Newsreader', serif;
  font-size: 17.5px;
  line-height: 1.65;
  color: #27545e;
}
.post-body .tip b {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2f6470;
  margin-bottom: 8px;
}

.post-body a { color: #497E88; }
.post-body a:hover { color: #3c6b74; }
.post-body code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .86em;
  background: #ece5d6;
  color: #5a5040;
  padding: 2px 6px;
  border-radius: 5px;
}

/* Inline images inside a post body (referenced as /media/<slug>/<file>). */
.post-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 0 22px;
}
