/* ==========================================================================
   Jarpet & Japes — plain prose pages (terms, privacy).
   Requires base.css.
   ========================================================================== */

.prose {
  padding-block: clamp(2rem, 4vw, 3.5rem) var(--step);
}

.prose__inner { max-width: 44rem; }

.prose__updated {
  margin: 1rem 0 clamp(2rem, 4vw, 3rem);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* The plain-language box. This is the one place on the site that is not
   speaking in character, so it is styled to look like an interruption. */
.callout {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--indigo-900);
  color: var(--cotton-100);
  border-left: 4px solid var(--copper);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
}
.callout strong { color: var(--cotton-50); }

.prose h2 {
  margin: clamp(2.25rem, 4vw, 3rem) 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  letter-spacing: -0.015em;
}
.prose h2:first-of-type { margin-top: 0; }

.prose p {
  margin-bottom: 1.1em;
  color: var(--ink-soft);
  line-height: 1.75;
}

.prose a {
  color: var(--indigo-700);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.prose a:hover { color: var(--copper); }

.prose-list {
  margin: 0 0 1.4em;
  padding: 0;
  list-style: none;
}
.prose-list li {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 1.6rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.prose-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--copper);
}
