/* =========================================================================
   HOUSE FORMAT v1 (Aug 2026): scannable blocks inside posts.
   "The short version" (.tldr) opens the essay with three numbered takeaways;
   "What to do on Monday" (.monday) closes it with concrete steps. Both are
   token-driven so daylight and midnight themes work unchanged.
   Lives in blog/ (not styles.css) so the auto-publish pipeline never touches
   the sitewide stylesheet.
   ========================================================================= */
.tldr, .monday {
  margin: 32px 0; padding: 24px 26px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
}
.monday { border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; }
.box__label {
  display: block; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase;
  font-weight: 650; color: var(--accent); margin: 0 0 14px;
}
.tldr ol, .monday ol { margin: 0; padding-left: 20px; color: var(--ink-soft); }
.tldr li, .monday li { margin-bottom: 12px; font-size: 16.5px; line-height: 1.55; }
.tldr li:last-child, .monday li:last-child { margin-bottom: 0; }
.tldr b, .monday b { color: var(--ink); font-weight: 600; }
.post-sign { font-weight: 650; color: var(--ink); letter-spacing: -0.01em; }
.post-cta .signup { margin-top: 4px; }
.post-cta__fine { margin: 16px 0 0; font-size: 13.5px; color: var(--ink-mute); }
