/*
 * Retreat landing — shared green punctuation "mark" utility
 * (S2 fix round 1, finding #9)
 *
 * The green period/ellipsis signature motif (decision-log, figma-analysis
 * §Signature motifs: "green period on every lowercase heading") was
 * previously reimplemented per-section: `.retreat-hero__mark` (hero.css),
 * `.retreat-how__mark` (how-it-works.css), `.retreat-proof__mark`
 * (dev/style-proof.css) — three identical `color: var(--color-success)`
 * rules. This file gives S2 (hero) a shared class instead of its own.
 *
 * SCOPE OF THIS CHANGE (original, S2 fix round 1): only
 * patterns/retreat-hero.php's mark span was switched to `.retreat-mark`
 * here. S3's `.retreat-how__mark` and F1's `.retreat-proof__mark` were
 * deliberately left alone at the time — out of that fix round's lane.
 *
 * Hygiene pass (post-Wave-B): the other two consolidated onto this same
 * class. patterns/retreat-how-it-works.php and patterns/retreat-style-proof.php
 * both swap in `.retreat-mark`; the per-section `.retreat-how__mark` /
 * `.retreat-proof__mark` rules are removed from how-it-works.css and
 * dev/style-proof.css respectively (both were byte-identical
 * `color: var(--color-success)` — computed green verified unchanged before
 * and after the swap).
 */

.retreat-mark {
  color: var(--color-success);
}
