/* ======================================================================
   letterbatch — Guides (the blog)
   Rebuilt from measurements of wisprflow.ai/blog and one /post page, taken
   2026-08-25 at 1512 / 991 / 767 / 390 in a real browser. THEIR structure,
   spacing and proportions; OUR paper, colour and type (site.css tokens).
   Every number below is measured, not chosen — where one looks odd, that is
   why. Single copy of every rule: nothing here is duplicated the way site.css
   is, so edit in one place.

   Type mapping (owner rulings): their EB Garamond -> Source Serif 4, weight
   400 as on the live homepage; their tight letter-spacing kept (-.03em, the
   page title -.05em) but NOT their line-height .95: Source Serif 4 has
   taller ascenders and longer descenders than Garamond, and at .95 stacked
   lines collide ("upload" into "where"). Display leading here is 1.08 —
   owner call 2026-08-25 after seeing the article title crash.
   Colour mapping: their cream ground -> white wove; their dark-green featured
   card -> bottle green; their lavender fills -> soft blue; their #E4E4D0
   related band -> paper-warm. No purple, no cobalt in visible roles.
   ====================================================================== */

/* ---- shared rhythm --------------------------------------------------- */
:root { --gd-hover: #F3F3F3; }

.gd-page   { padding: 0 var(--gutter); }
.gd-wrap   { max-width: var(--container); margin: 0 auto; }
.gd-narrow { max-width: 768px; margin: 0 auto; }

/* Their spacer stack: huge 96 + small 16 above every first block. */
.gd-hero    { padding-top: 112px; }
.gd-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 75px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.05em;
  text-align: center;
  color: var(--ink);
}

/* ---- featured stack (816 x 432, centred, side cards at .9) ----------- */
.gd-stack {
  position: relative;
  height: 432px;
  margin-top: 48px;
}
.gd-ft {
  position: absolute;
  top: 50%; left: 50%;
  width: 816px; height: 432px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--paper-warm);
  transform: translate(-50%, -50%);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .5s;
  cursor: pointer;
  text-decoration: none;
}
/* Surfaces carry the homepage's own materials, not flat fills. Blue = the
   .lb-band treatment (two radial washes + multiply grain at .20); warm = the
   .lb-sheet treatment (washes + the same grain at .12). Green stays FLAT —
   owner ruling 2026-07-31, same as the homepage's green blocks. Same
   turbulence tile as site.css so the grain is identical, not similar. */
.gd-ft--green { color: var(--paper); background: var(--bottle-green); }
.gd-ft--blue {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, .28), transparent 38%),
    radial-gradient(circle at 82% 84%, rgba(74, 111, 132, .08), transparent 44%),
    var(--soft-blue);
}
.gd-ft--warm {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .34), transparent 38%),
    radial-gradient(circle at 84% 82%, rgba(112, 88, 55, .045), transparent 46%),
    var(--paper-warm);
}
.gd-ft--blue, .gd-ft--warm, .gd-related { overflow: hidden; }
.gd-ft--blue::before, .gd-ft--warm::before, .gd-related::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23b)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}
.gd-ft--blue::before { opacity: .20; }
.gd-ft--warm::before, .gd-related::before { opacity: .12; }
.gd-ft > * { position: relative; z-index: 1; }
/* measured: current 816x432 at centre; next/previous 734x389 (= .9) with
   their centres 260px either side, vertically centred */
.gd-ft.is-current  { z-index: 3; transform: translate(-50%, -50%); cursor: default; }
.gd-ft.is-next     { z-index: 2; transform: translate(calc(-50% + 260px), -50%) scale(.9); }
.gd-ft.is-previous { z-index: 1; transform: translate(calc(-50% - 260px), -50%) scale(.9); }
.gd-ft.is-hidden   { z-index: 0; opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(.8); }

.gd-ft__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 12px;
  text-align: center;
}
.gd-ft__tags { display: flex; justify-content: center; gap: 4px; }
.gd-ft h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.gd-ft__media {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .55);
  box-shadow: inset 0 0 0 1px rgba(26, 26, 26, .06);
}
.gd-ft--green .gd-ft__media { background: rgba(255, 255, 255, .12); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); }
/* Cover art is vector sticker art on a transparent ground, so it is CONTAINED
   with breathing room rather than cropped to the pane. A photographic cover
   would want `object-fit: cover` — add a class for that when one exists. */
.gd-ft__media img { display: block; width: 100%; height: 100%; object-fit: contain; padding: 8%; box-sizing: border-box; }

/* pagination pills: 117 x 5, radius 16, gap 16, 48 below the stack */
.gd-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding: 0;
  list-style: none;
}
.gd-dots li { display: flex; }
.gd-dots button {
  display: block;
  width: 117px; height: 5px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--paper-warm);
  cursor: pointer;
  transition: background-color .25s;
}
.gd-dots button[aria-current="true"] { background: var(--bottle-green); }

/* ---- tags (12/18, +.08em, 6x8, radius 2) ---------------------------- */
.gd-tag {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(26, 26, 26, .10);
  white-space: nowrap;
}
.gd-tag--light { color: rgba(26, 26, 26, .5); background: rgba(26, 26, 26, .05); }
.gd-ft--green .gd-tag { color: var(--paper); background: rgba(255, 255, 255, .3); }
.gd-ft--green .gd-tag--light { color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .12); }

/* ---- meta row (32 tall: 32px avatar, 12px text) ---------------------- */
.gd-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 18px;
}
.gd-meta__who { display: flex; align-items: center; gap: 8px; }
.gd-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: var(--paper);
  background: var(--bottle-green);
}
.gd-ft--green .gd-avatar { color: var(--bottle-green); background: var(--paper); }
.gd-meta__name { font-weight: 500; color: rgba(26, 26, 26, .7); white-space: nowrap; }
.gd-meta__date { white-space: nowrap; }
.gd-meta__dot, .gd-meta__date { font-weight: 400; color: rgba(26, 26, 26, .5); }
.gd-ft--green .gd-meta__name { color: rgba(255, 255, 255, .7); }
.gd-ft--green .gd-meta__dot, .gd-ft--green .gd-meta__date { color: rgba(255, 255, 255, .5); }

/* ---- category filter (pills, gap 4, centred; 96+24 above) ----------- */
.gd-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;                 /* reference is 4, but its scaled active pill eats it; owner wants air */
  margin: 120px 0 0;
  padding: 0;
  list-style: none;
}
.gd-filters button {
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .25s;
}
.gd-filters button:hover { background: var(--paper-warm); }
/* The reference's active pill is a size bigger (47 tall vs 41). Ours is NOT:
   the fill alone marks the selection, every pill stays the same height, and
   the row stays level (owner ruling 2026-08-25 — the bigger pill read as
   misaligned). Deliberate departure from the measured reference. */
.gd-filters button[aria-pressed="true"] { background: var(--soft-blue); }

/* ---- card grid (3 x 413, gap 0; the 16px card padding IS the gutter) - */
.gd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}
.gd-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .25s;
}
/* Every card and row lifts on hover, linked or not — the unlinked ones are
   placeholders for posts that are coming, and the surface should behave the
   same before and after. Tint is a step lighter than paper-warm (owner call
   2026-08-25: #ECECEC read too heavy as a hover). */
.gd-card:hover { background: var(--gd-hover); }
.gd-card[hidden], .gd-grid > li[hidden], .gd-list > li[hidden] { display: none; }
.gd-card__media {
  aspect-ratio: 381 / 212;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-warm);
  box-shadow: inset 0 0 0 1px rgba(26, 26, 26, .06);
}
.gd-card__media img { display: block; width: 100%; height: 100%; object-fit: contain; padding: 6% 10%; box-sizing: border-box; }
.gd-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 12px;
  text-align: center;
}
/* title well: 80 tall, title centred inside it, so rows align across cards */
.gd-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.03em;
  text-wrap: balance;
}

/* ---- the list (rows 87 tall: 28 pad, 26px title) --------------------- */
.gd-list { margin: 80px 0 0; padding: 0; list-style: none; }
.gd-row {
  display: block;
  padding: 0 24px;
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .25s;
}
.gd-row:hover { background: var(--gd-hover); }
.gd-row[hidden] { display: none; }
.gd-row__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26, 26, 26, .10);
}
.gd-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.03em;
}
.gd-row__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex: none;
  width: 270px;
}
.gd-row__date { font-family: var(--sans); font-size: 12px; line-height: 18px; color: rgba(26, 26, 26, .5); }

.gd-more { padding-top: 48px; text-align: center; }
.gd-more[hidden] { display: none; }
.gd-more .lb-btn { cursor: pointer; }

/* 128 between the list and the closing block */
.gd-index-end { padding-bottom: 128px; }

/* ---- article --------------------------------------------------------- */
.gd-article { padding-top: 112px; }
.gd-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink);
}
.gd-crumbs a { color: inherit; text-decoration: none; }
.gd-crumbs a:hover { text-decoration: underline; }
.gd-crumbs li + li::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  margin: 0 12px 1px 4px;
  border-right: 1.5px solid var(--ink);
  border-top: 1.5px solid var(--ink);
  transform: rotate(45deg);
}
.gd-article h1 {
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.05em;
  text-wrap: pretty;
  color: var(--ink);
}
.gd-dek {
  max-width: 640px;
  margin: 24px 0 0;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(26, 26, 26, .74);
}
.gd-article .gd-meta { margin-top: 48px; }
.gd-meta__right { display: flex; align-items: center; gap: 8px; }
.gd-share { display: flex; gap: 8px; }
.gd-share a, .gd-share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--paper-warm);
  color: var(--ink);
  cursor: pointer;
  transition: background-color .25s;
}
.gd-share a:hover, .gd-share button:hover { background: var(--soft-blue); }
.gd-share svg { width: 16px; height: 16px; }
.gd-share button { position: relative; }
.gd-share button.is-copied { background: var(--bottle-green); color: var(--paper); }
.gd-share button.is-copied::before {          /* the check mark, drawn in CSS */
  content: "";
  position: absolute;
  width: 5px; height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
}
.gd-share button.is-copied svg { visibility: hidden; }
.gd-share button.is-copied::after {           /* "Copied" label above the button */
  content: "Copied";
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--paper);
  background: var(--bottle-green);
}

/* body: 16/24, paragraphs 16 apart; 64+16 above, 64+16 below to the foot meta */
.gd-body { margin-top: 80px; font-family: var(--sans); font-size: 16px; line-height: 24px; color: var(--ink); }
.gd-body p { margin: 0 0 16px; }
.gd-body p:last-child { margin-bottom: 0; }
.gd-body strong { font-weight: 700; }
.gd-body h2 {
  margin: 48px 0 16px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.03em;
}
.gd-body h3 { margin: 32px 0 12px; font-family: var(--sans); font-size: 18px; line-height: 1.3; font-weight: 600; }
/* Lists: hanging markers. The list block steps in 24px from the paragraph
   edge; each marker sits in its own 32px gutter, right-aligned, in bottle
   green, so the text of every item lines up on one edge and wrapped lines
   do not tuck under the number. Browser default numbering is not used. */
.gd-body ul, .gd-body ol { margin: 0 0 16px; padding-left: 24px; list-style: none; }
.gd-body ol { counter-reset: gd-item; }
.gd-body li { position: relative; margin: 0 0 10px; padding-left: 32px; }
.gd-body ol li::before {
  counter-increment: gd-item;
  content: counter(gd-item) ".";
  position: absolute;
  left: 0; top: 0;
  width: 22px;
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--bottle-green);
}
.gd-body ul li::before {
  content: "";
  position: absolute;
  left: 8px; top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bottle-green);
}
.gd-body a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.gd-body figure { margin: 48px 0; }
.gd-body figure img, .gd-body .gd-figure__ph { display: block; width: 100%; border-radius: 16px; }
.gd-body .gd-figure__ph { aspect-ratio: 16 / 9; background: var(--paper-warm); box-shadow: inset 0 0 0 1px rgba(26, 26, 26, .06); }
.gd-body figcaption {
  margin-top: 16px;
  padding-left: 10px;
  border-left: 2px solid var(--soft-blue);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}
.gd-body .gd-cta { margin-top: 24px; }
.gd-body .gd-cta .lb-btn { margin: 0; text-decoration: none; }
.gd-body blockquote {
  margin: 32px 0;
  padding: 0 0 0 20px;
  border-left: 2px solid var(--bottle-green);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}
.gd-article .gd-meta--foot { margin: 80px 0 0; }
.gd-article-end { padding-bottom: 112px; }

/* related: their #E4E4D0 band, radius 80, 96+16 inside top and bottom */
.gd-related {
  position: relative;
  z-index: 1;
  border-radius: 80px;
  padding: 112px var(--gutter);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .34), transparent 38%),
    radial-gradient(circle at 84% 82%, rgba(112, 88, 55, .045), transparent 46%),
    var(--paper-warm);
}
.gd-related > * { position: relative; z-index: 1; }
.gd-related h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.03em;
  text-align: center;
  text-wrap: balance;
  color: var(--ink);
}
.gd-related h2 em { font-style: italic; }
.gd-related .gd-grid { margin-top: 80px; }
.gd-related .gd-card:hover { background: rgba(255, 255, 255, .55); }
.gd-related .gd-card__media { background: rgba(255, 255, 255, .6); }

/* ---- responsive (measured at 991, 767, 390) -------------------------- */
@media (max-width: 991px) {
  .gd-hero, .gd-article { padding-top: 96px; }          /* huge 80 + small 16 */
  .gd-hero h1 { font-size: 64px; }
  .gd-ft { width: 720px; }                               /* 338 + 12 + 338 + 32 */
  .gd-ft.is-next     { transform: translate(calc(-50% + 122px), -50%) scale(.9); }
  .gd-ft.is-previous { transform: translate(calc(-50% - 122px), -50%) scale(.9); }
  .gd-grid { grid-template-columns: repeat(2, 1fr); }
  .gd-related { padding: 96px var(--gutter); }
}
@media (max-width: 767px) {
  .gd-page { padding: 0 20px; }
  .gd-hero, .gd-article { padding-top: 72px; }          /* huge 56 + small 16 */
  .gd-hero h1 { font-size: 40px; }
  /* featured card stacks: content then image, 654 wide, 639 tall */
  .gd-stack { height: 639px; }
  .gd-ft { width: min(654px, calc(100vw - 112px)); height: 639px; grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .gd-ft h2 { font-size: 32px; }
  .gd-ft__content { gap: 32px; }
  .gd-ft.is-next     { transform: translate(calc(-50% + 56px), -50%) scale(.9); }
  .gd-ft.is-previous { transform: translate(calc(-50% - 56px), -50%) scale(.9); }
  .gd-filters { margin-top: 84px; }
  .gd-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
  .gd-card__title { padding: 16px 0; min-height: 0; }
  .gd-list { margin-top: 48px; }
  .gd-row { padding: 0; }
  .gd-row__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .gd-row h3 { font-size: 24px; }
  .gd-row__right { width: 100%; }
  .gd-article h1 { font-size: 40px; }
  .gd-body { margin-top: 48px; }
  .gd-related { border-radius: 40px; padding: 72px 20px; }
  .gd-related h2 { font-size: 40px; }
  .gd-related .gd-grid { margin-top: 48px; }
  .gd-index-end { padding-bottom: 96px; }
}
@media (max-width: 479px) {
  .gd-stack { height: 475px; }
  .gd-ft { width: calc(100vw - 75px); height: 444px; }
  .gd-ft__content { padding: 12px 0; }
  .gd-ft.is-next     { transform: translate(calc(-50% + 36px), -50%) scale(.9); }
  .gd-ft.is-previous { transform: translate(calc(-50% - 36px), -50%) scale(.9); }
  .gd-card { padding: 16px 0; }
  .gd-article .gd-meta { flex-wrap: wrap; gap: 20px; }
  .gd-ft .gd-meta { flex-wrap: wrap; justify-content: center; gap: 8px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .gd-ft, .gd-dots button, .gd-filters button, .gd-card, .gd-row { transition: none; }
}

/* ======================================================================
   /subscribe — the blog's subscription page.
   Reuses .lb-request's two-column layout from site.css so it is a sibling of
   /request, not a new kind of page. Everything below is either the small extras
   this page adds, or a re-skin of the markup MailerLite injects.
   ====================================================================== */
.lb-subscribe__art {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
  margin: 32px 0 0;
}
.lb-subscribe__box { padding: 40px 38px 34px; }
.lb-subscribe__box .lb-modal__title { margin-top: 0; }
.lb-subscribe__box .lb-modal__fine { margin-top: 18px; text-align: left; }
.lb-subscribe__box .lb-modal__fine a { color: inherit; }
.gd-sub__form { margin-top: 20px; }

@media (max-width: 800px) {
  .lb-subscribe__art { margin: 28px auto 0; max-width: 190px; }
}
@media (max-width: 479px) {
  .lb-subscribe__box { padding: 30px 22px 24px; }
}

/* ---- re-skin of MailerLite's injected markup ------------------------
   Their wrappers bring their own card, borders, fonts and a black button; strip
   those so the field and button match the invitation form on /request.
   Scoped to .gd-sub__form, which exists only on /subscribe. */
.gd-sub__form .ml-form-embedContainer,
.gd-sub__form .ml-form-align-center,
.gd-sub__form .ml-form-embedWrapper,
.gd-sub__form .ml-form-embedBody,
.gd-sub__form .ml-form-formContent,
.gd-sub__form .ml-form-fieldRow,
.gd-sub__form .ml-field-group {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  font-family: var(--sans);
  color: var(--ink-warm);
}
/* Their own heading and blurb would duplicate the page's. */
.gd-sub__form .ml-form-embedContent { display: none; }
.gd-sub__form .ml-form-fieldRow { margin-bottom: 12px; }
.gd-sub__form .ml-form-recaptcha { margin: 0 0 14px; }
.gd-sub__form iframe { max-width: 100%; }
.gd-sub__form .ml-form-embedSubmit button.loading { display: none; }
.gd-sub__form .ml-validate-error,
.gd-sub__form label.ml-error {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: #7d1a32;
}
.gd-sub__form .ml-form-successContent h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--ink-warm);
}
.gd-sub__form .ml-form-successContent p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-70);
}

/* ---- beating MailerLite's ID-scoped !important ----------------------
   Their stylesheet targets `#mlb2-<generated-id>.ml-form-embedContainer …
   button { background-color:#000 !important }`. Two competing !important
   declarations are settled by specificity, and their id changes per form, so no
   class selector can win. The page carries two ids of ours (#lb-sub-doc on the
   body, #lb-sub-form on the wrapper); two ids outrank their one whatever they
   append later. These ids exist on /subscribe and nowhere else. */
#lb-sub-doc #lb-sub-form input[type="email"],
#lb-sub-doc #lb-sub-form input[type="text"] {
  width: 100% !important;
  height: auto !important;
  padding: 11px 13px !important;
  border: 1.5px solid rgba(30, 27, 23, .28) !important;
  border-radius: 9px !important;
  background-color: #F7F7F7 !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;      /* 16px stops iOS zooming the page on focus */
  line-height: 1.35 !important;
  color: var(--ink-warm) !important;
  box-shadow: none !important;
}
#lb-sub-doc #lb-sub-form input[type="email"]:focus,
#lb-sub-doc #lb-sub-form input[type="text"]:focus {
  outline: 2px solid var(--icon) !important;
  outline-offset: 1px !important;
  border-color: transparent !important;
}
#lb-sub-doc #lb-sub-form button[type="submit"],
#lb-sub-doc #lb-sub-form .ml-form-embedSubmit button {
  width: 100% !important;
  height: auto !important;
  padding: 16px 24px !important;
  border: 2px solid var(--ink) !important;
  border-radius: 8px !important;
  background-color: var(--soft-blue) !important;
  background-image: none !important;
  font-family: var(--sans) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  color: var(--ink) !important;
  box-shadow: none !important;
  cursor: pointer;
}
#lb-sub-doc #lb-sub-form button[type="submit"]:hover,
#lb-sub-doc #lb-sub-form .ml-form-embedSubmit button:hover {
  background-color: #CFE2EC !important;
}
#lb-sub-doc #lb-sub-form button[type="submit"]:focus-visible,
#lb-sub-doc #lb-sub-form .ml-form-embedSubmit button:focus-visible {
  outline: 2px solid var(--icon) !important;
  outline-offset: 3px !important;
}
#lb-sub-doc #lb-sub-form .ml-form-embedContainer,
#lb-sub-doc #lb-sub-form .ml-form-embedWrapper,
#lb-sub-doc #lb-sub-form .ml-form-embedBody,
#lb-sub-doc #lb-sub-form .ml-form-successBody {
  background-color: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

/* The blog's one pointer to /subscribe. A link, not a form: the page keeps its
   strict CSP and nothing interrupts the reading flow. */
.gd-subscribe-cta { margin: 56px 0 0; text-align: center; }

/* ======================================================================
   /subscribe/confirmed — first-party double opt-in success page.
   MailerLite redirects here only after its subscriber-specific confirmation
   link succeeds. The page uses the site's existing paper, navigation, button,
   type and footer rather than introducing a second visual system.
   ====================================================================== */
.lb-confirmed-doc {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.lb-confirmed {
  flex: 1;
  padding: 96px var(--gutter) 120px;
  text-align: center;
}
.lb-confirmed__inner {
  width: min(620px, 100%);
  margin: 0 auto;
}
.lb-confirmed__art {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto 36px;
}
.lb-confirmed__eyebrow {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #143B32;
}
.lb-confirmed h1 {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 68px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.045em;
  color: var(--ink);
}
.lb-confirmed__body {
  max-width: 44ch;
  margin: 32px auto 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-70);
}
.lb-confirmed__cta { margin: 36px 0 0; }
.lb-confirmed__fine {
  max-width: 46ch;
  margin: 28px auto 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-70);
}
.lb-confirmed__fine a { color: inherit; }
.lb-confirmed-doc .lb-footer { flex: none; }

@media (max-width: 800px) {
  .lb-confirmed { padding: 64px 20px 88px; }
  .lb-confirmed__art { max-width: 200px; }
  .lb-confirmed__body { font-size: 17px; }
}
