/* =============================================================
   newsletter.css — Path of Breathing · Newsletter signup
   The site-wide "by email" subscribe UI, relocated here from the
   letters index (css/letters.css) when the subscription became a
   standalone page. Requires shared.css + module.css loaded first.
   ============================================================= */

/* The subscribe block sits as the page's own content (under the
   hero), not as a quiet close, so it carries no large top margin. */
.newsletter-subscribe {
  padding: 8px 0 0;
}
.newsletter-subscribe-heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.newsletter-subscribe-copy {
  font-family: var(--read);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 16.5px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 18px;
}
.newsletter-subscribe-rss {
  font-family: var(--read);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
.newsletter-subscribe-rss a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}
.newsletter-subscribe-rss a:hover { color: var(--text); }
