/* decision.css
 * Shared stylesheet for /decision/, /decision/recommended-list, and /good-news/.
 * Pure CSS. Pulls all colors/type/spacing from design-tokens.css (linked
 * directly by the standalone /decision/ pages). This file extends that system
 * with page-level components (hero, callout, section block, form, church-match
 * card, etc.).
 *
 * Local tokens (extending the platform tokens):
 */
:root {
  --decision-measure: 38rem;       /* comfortable reading column */
  --decision-measure-wide: 56rem;
  --decision-gold-line: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold) 75%, transparent);
}

/* ─── Container helpers ─── */
.container--reading {
  max-width: 720px;
}
.container--narrow {
  max-width: 640px;
}

/* ─── Cross-page system: reverent button ─── */
.btn-reverent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--blue-900);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .005em;
  padding: 16px 32px;
  border: 1px solid var(--blue-900);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  min-height: 52px;
  line-height: 1.2;
}
.btn-reverent:hover {
  background: var(--blue-800);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.btn-reverent:active { transform: translateY(1px); }
.btn-reverent--block { display: flex; width: 100%; }
.btn-reverent--ghost {
  background: transparent;
  color: var(--blue-900);
  border-color: var(--blue-900);
}
.btn-reverent--ghost:hover { background: var(--blue-50); color: var(--blue-900); }
.btn-reverent--gold {
  background: var(--gold);
  border-color: var(--gold);
}
.btn-reverent--gold:hover { background: #a07840; border-color: #a07840; }
.btn-reverent .arrow { transition: transform .15s; }
.btn-reverent:hover .arrow { transform: translateX(3px); }
.btn-reverent[disabled],
.btn-reverent[aria-disabled="true"] {
  opacity: .65;
  cursor: progress;
  pointer-events: none;
}

/* ─── Cross-page: calm callout (banded soft container) ─── */
.callout {
  background: var(--gold-lt);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  position: relative;
  border: 1px solid rgba(184, 146, 74, 0.18);
}
.callout--center { text-align: center; }
.callout__eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}
.callout__title {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue-900);
  margin: 0 0 8px;
}
.callout__body {
  color: var(--text-700);
  margin: 0 0 18px;
  max-width: 44ch;
}
.callout--center .callout__body { margin-left: auto; margin-right: auto; }
.callout--quiet {
  background: var(--blue-50);
  border-color: rgba(38, 114, 184, 0.14);
}
.callout--quiet .callout__eyebrow { color: var(--blue-700); }

/* ─── Cross-page: page hero ─── */
.page-hero {
  padding: 56px 0 32px;
  text-align: center;
}
.page-hero__eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.page-hero__eyebrow::before,
.page-hero__eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
}
.page-hero h1 {
  font-family: 'Lora', Georgia, serif;
  color: var(--blue-900);
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 500;
  margin: 18px auto 12px;
  max-width: 18ch;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--blue-700);
}
.page-hero__sub {
  font-size: 1.1rem;
  color: var(--text-700);
  max-width: 36em;
  margin: 0 auto;
  line-height: 1.55;
}
.page-hero--quiet h1 { font-weight: 500; }

/* ─── Section block (shared scaffolding) ─── */
.section-block {
  margin: 0 0 36px;
}
.section-block__head {
  margin: 0 0 18px;
}
.section-block__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 74, 0.4);
  background: #fff;
  margin-right: 10px;
  vertical-align: middle;
}
.section-block__eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-500);
  margin: 0 0 6px;
}
.section-block h2 {
  font-family: 'Lora', Georgia, serif;
  color: var(--blue-900);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.2;
}
.section-block__sub {
  color: var(--text-500);
  font-size: .95rem;
  margin: 0;
}

/* ─── Form chrome (decision.html) ─── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  margin: 0 0 24px;
  box-shadow: var(--shadow-sm);
}
.form-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 22px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--border);
}
.form-card__num {
  flex: 0 0 auto;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 74, 0.4);
  background: var(--gold-lt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-card__title {
  flex: 1;
}
.form-card__title h2 {
  font-family: 'Lora', Georgia, serif;
  color: var(--blue-900);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 4px 0 4px;
  line-height: 1.2;
}
.form-card__title p {
  margin: 0;
  color: var(--text-500);
  font-size: .95rem;
}

.field {
  margin: 0 0 18px;
}
.field:last-child { margin-bottom: 0; }
.field__label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-900);
  margin: 0 0 6px;
  letter-spacing: .005em;
}
.field__label .req { color: #b6463a; margin-left: 2px; }
.field__help {
  display: block;
  color: var(--text-500);
  font-size: .85rem;
  margin: 6px 0 0;
}
.field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field__row--3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
@media (max-width: 600px) {
  .field__row, .field__row--3 { grid-template-columns: 1fr; }
}

.input,
.textarea,
.select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font: inherit;
  color: var(--text-900);
  transition: border-color .15s, box-shadow .15s;
  min-height: 46px;
}
.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(38, 114, 184, .14);
}
.textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* "Today" inline button on the date field */
.date-with-today {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.date-with-today .input { flex: 1; }
.date-with-today .btn-today {
  padding: 8px 18px;
  min-height: auto;
  font-size: .92rem;
}

/* Radio / checkbox tiles */
.choice-grid {
  display: grid;
  gap: 8px;
}
.choice-grid--cols2 { grid-template-columns: 1fr 1fr; }
.choice-grid--cols3 { grid-template-columns: repeat(3, 1fr); }
.choice-grid--cols4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) {
  .choice-grid--cols3, .choice-grid--cols4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .choice-grid--cols2, .choice-grid--cols3, .choice-grid--cols4 { grid-template-columns: 1fr; }
}

.choice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  font-size: .96rem;
  line-height: 1.4;
}
.choice:hover { border-color: var(--blue-600); background: var(--blue-50); }
.choice input { margin-top: 3px; flex: 0 0 auto; accent-color: var(--blue-700); width: 18px; height: 18px; }
.choice input:checked ~ .choice__body .choice__title { color: var(--blue-900); }
.choice:has(input:checked) {
  border-color: var(--blue-700);
  background: var(--blue-50);
  box-shadow: 0 0 0 1px var(--blue-700) inset;
}
.choice__body { flex: 1; }
.choice__title {
  display: block;
  font-weight: 600;
  color: var(--text-900);
}
.choice__sub {
  display: block;
  color: var(--text-500);
  font-size: .85rem;
  margin-top: 2px;
}
.choice__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-500);
  font-size: .72rem;
  font-weight: 600;
  cursor: help;
}
.choice--consent {
  background: var(--blue-50);
  border-color: rgba(38,114,184,.18);
  padding: 16px 18px;
}

/* Pinned-org card */
.pinned-org {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 0 0 24px;
  overflow: hidden;
}
.pinned-org__img {
  flex: 0 0 132px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 132 132'%3E%3Crect width='132' height='132' fill='%23ddeaf7'/%3E%3Cpath d='M66 30 L66 70 M50 50 L82 50 M40 110 L40 70 L66 50 L92 70 L92 110 Z' stroke='%231a4a7a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.pinned-org__img--photo {
  background-image: var(--photo-url);
}
.pinned-org__body { flex: 1; min-width: 0; padding: 4px 0; }
.pinned-org__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-lt);
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0 0 8px;
}
.pinned-org__pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.pinned-org__name {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  color: var(--blue-900);
  margin: 0 0 4px;
}
.pinned-org__loc { color: var(--text-500); margin: 0 0 10px; font-size: .95rem; }
.pinned-org__welcome { color: var(--text-700); margin: 0; font-style: italic; font-size: .95rem; }
@media (max-width: 540px) {
  .pinned-org { flex-direction: column; gap: 14px; }
  .pinned-org__img { flex: 0 0 auto; height: 160px; width: 100%; }
}

/* Error summary */
.error-summary {
  background: #fdf2f1;
  border-left: 3px solid #c75348;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 0 0 24px;
  color: #6f2823;
}
.error-summary h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #6f2823;
  margin: 0 0 6px;
}
.error-summary ul { margin: 0; padding-left: 20px; font-size: .92rem; }
.error-summary li { margin: 0; }
.field--has-error .input,
.field--has-error .select,
.field--has-error .textarea {
  border-color: #c75348;
  box-shadow: 0 0 0 3px rgba(199, 83, 72, .12);
}
.field__error {
  color: #c75348;
  font-size: .85rem;
  margin: 6px 0 0;
}

/* Trust microcopy */
.trust-line {
  text-align: center;
  color: var(--text-500);
  font-size: .85rem;
  margin: 10px auto 0;
  max-width: 36em;
  line-height: 1.5;
}
.trust-line--scripture {
  margin-top: 6px;
  font-style: italic;
  font-family: 'Lora', serif;
  color: var(--blue-700);
}
.trust-line--scripture .ref {
  color: var(--gold);
  letter-spacing: .12em;
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  margin-left: 6px;
}

/* ─── Church-match cards ─── */
.match-list {
  display: grid;
  gap: 22px;
  margin: 0 0 36px;
}
.match-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.match-card:hover { box-shadow: var(--shadow); }
.match-card--pinned {
  border-color: rgba(184, 146, 74, 0.55);
  box-shadow: 0 0 0 1px rgba(184, 146, 74, 0.35), var(--shadow-sm);
}
.match-card__pin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-lt);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.match-card__pin .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.match-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 4px;
}
.match-card__name {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--blue-900);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.match-card__rank {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--text-300);
  font-size: 1.05rem;
}
.match-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--text-500);
  font-size: .95rem;
  margin: 0 0 16px;
}
.match-card__meta .sep { color: var(--text-300); }
.match-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  list-style: none;
  padding: 0;
}
.chip {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-800);
  font-size: .82rem;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(38, 114, 184, 0.15);
}
.match-card__why {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-700);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin: 0 0 22px;
}
.match-card__why p { margin: 0 0 1em; }
.match-card__why p:last-child { margin: 0; }
.match-card__why::before {
  content: 'Why this church';
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.match-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text-500);
  flex-wrap: wrap;
}
.match-card__learn {
  font-weight: 600;
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.match-card__learn:hover { text-decoration: underline; }
.match-card__learn:hover .arrow { transform: translateX(3px); }
.match-card__learn .arrow { transition: transform .15s; }

/* ─── Good-news typography & layout ─── */
.gospel-intro {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-700);
  text-align: center;
  max-width: 36em;
  margin: 0 auto 8px;
}

.gospel-rule {
  height: 1px;
  width: 80px;
  margin: 36px auto;
  background: var(--decision-gold-line);
  border: 0;
}

.gospel-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 0 auto 56px;
  max-width: 880px;
}
@media (min-width: 820px) {
  .gospel-section {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
  }
  .gospel-section--reverse { direction: rtl; }
  .gospel-section--reverse > * { direction: ltr; }
}
.gospel-section__media {
  position: relative;
}
.gospel-section__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: block;
}
@media (min-width: 820px) {
  .gospel-section__media { position: sticky; top: 24px; }
}
.gospel-section__num {
  font-family: 'Lora', serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gospel-section__num::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.gospel-section h2 {
  font-family: 'Lora', Georgia, serif;
  color: var(--blue-900);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 18px;
  line-height: 1.18;
}
.gospel-section__body {
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--text-700);
}
.gospel-section__body p { margin: 0 0 1.1em; }
.gospel-section__body strong {
  color: var(--blue-900);
  font-weight: 600;
}
.gospel-section__body em { font-style: italic; color: var(--text-700); }

/* Scripture reference treatment — inline parenthetical, gold + small */
.scripture-ref {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 0.92em;
  color: var(--gold);
  white-space: nowrap;
}
.scripture-ref::before { content: '\2009'; }

/* Block scripture / prayer */
.scripture-block {
  margin: 22px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--gold);
  background: var(--gold-lt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--blue-900);
}
.scripture-block p { margin: 0 0 .6em; }
.scripture-block p:last-child { margin: 0; }
.scripture-block cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ─── Page-specific: thank-you hero (recommended-list) ─── */
.thanks-hero {
  text-align: center;
  padding: 64px 20px 36px;
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, var(--blue-50) 0%, transparent 60%),
    var(--bg);
}
.thanks-hero__mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  box-shadow: 0 0 0 6px rgba(184, 146, 74, .12);
}
.thanks-hero h1 {
  font-family: 'Lora', Georgia, serif;
  color: var(--blue-900);
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.thanks-hero h1 em {
  font-style: italic;
  color: var(--blue-700);
}
.thanks-hero__sub {
  font-size: 1.1rem;
  color: var(--text-700);
  max-width: 32em;
  margin: 0 auto 14px;
  line-height: 1.55;
}
.thanks-hero__verse {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--blue-700);
  font-size: 1rem;
  margin-top: 24px;
}
.thanks-hero__verse cite {
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: .12em;
  font-size: .78rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 8px;
  font-weight: 600;
}

/* Section dividers */
.section-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 44px 0 24px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-500);
}
.section-rule::before,
.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Closing CTA block (used on good-news + recommended-list) */
.closing-block {
  background: var(--blue-900);
  color: rgba(255,255,255,.88);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  margin: 56px auto;
  position: relative;
  overflow: hidden;
}
.closing-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(184, 146, 74, .14) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(38, 114, 184, .25) 0%, transparent 40%);
  pointer-events: none;
}
.closing-block > * { position: relative; }
.closing-block__eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.closing-block h2 {
  font-family: 'Lora', Georgia, serif;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.closing-block p {
  color: rgba(255,255,255,.78);
  max-width: 38em;
  margin: 0 auto 1.1em;
  line-height: 1.7;
}
.closing-block .btn-reverent {
  background: var(--gold);
  border-color: var(--gold);
  margin-top: 12px;
}
.closing-block .btn-reverent:hover { background: #cfa257; border-color: #cfa257; }
.closing-block__tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  color: rgba(255,255,255,.85);
  margin-top: 28px;
  font-size: 1.05rem;
}
.closing-block__not-ready {
  color: rgba(255,255,255,.7);
  margin-top: 28px;
  font-size: .96rem;
}

/* Secondary affordance row */
.secondary-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin: 28px 0 0;
  text-align: center;
}
.secondary-cta-row a {
  font-size: .92rem;
  color: var(--text-500);
  font-weight: 500;
  text-decoration: none;
}
.secondary-cta-row a:hover { color: var(--blue-900); text-decoration: underline; }

/* Print-optimised for /good-news/ */
@media print {
  .site-nav-new, .site-footer-new, .closing-block .btn-reverent { display: none; }
  body { background: #fff; }
  .gospel-section { page-break-inside: avoid; }
  .gospel-section__media { position: static; }
}
