/* =========================================================================
   REAL LAND OFFER — newsprint keepsakes
   The full newspaper skin was reverted (2026-07-10); the pre-newspaper
   design in styles.css is the live design. Two touches from that
   experiment were kept by request, both scoped to body.np:
     1. the drop cap on the "However you got here" welcome note
     2. the short byline rule under each Real Simple step title
   TO REMOVE THEM TOO: delete the `np` class from <body> in index.html.
   ========================================================================= */

/* drop cap on the welcome note */
body.np .people__welcome p::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.3em; line-height: 0.8;
  float: left; padding: 7px 10px 0 0;
  color: var(--forest-800);
}

/* short rule under each step's byline title */
body.np .step__title { position: relative; padding-bottom: 14px; margin-bottom: 12px; }
body.np .step__title::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 54px; height: 1px; background: rgba(30, 45, 34, 0.30);
}
