/* ================================================================
   Mishpacha — Article Single Page  (single.php)
   ================================================================ */

/* Local aliases mapped to global tokens (tokens.css) */
#single-article {
  --sa-red:      var(--red);
  --sa-red-dark: var(--red-dark);
  --sa-red-deep: #520003;
  --sa-ink:      var(--ink);
  --sa-gm:       #737373;
  --sa-g1:       #5C5C5C;
  --sa-g2:       #A8A8A8;
  --sa-g3:       var(--divider);
  --sa-g4:       #EDEDED;
  --sa-cream:    var(--cream, #FBF7F3);
  --sa-serif:    var(--font-serif, 'Playfair Display', Georgia, serif);
  --sa-body:     var(--font-body, 'EB Garamond', Georgia, serif);
  --sa-sans:     var(--font-sans, 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif);
  --sa-w:        1440px;
  --sa-content:  900px;

  font-family: var(--sa-sans);
  font-size: 14px;
  color: var(--sa-ink);
  background: var(--paper);
}
#single-article *, #single-article *::before, #single-article *::after { box-sizing: border-box; }
#single-article a   { color: inherit; text-decoration: none; }
#single-article img { display: block; max-width: 100%; }
#single-article button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* ── Wrap ── */
.sa-wrap { max-width: var(--sa-w); margin: 0 auto; padding: 0 38px; }

/* ── Reading progress bar ── */
.sa-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--sa-red); width: 0%; z-index: 500;
  transition: width .1s linear; pointer-events: none;
}

/* ── Eyebrow ── */
.sa-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sa-red); display: inline-flex; align-items: center; gap: 10px;
}
.sa-eyebrow::before { content: ""; display: block; width: 24px; height: 1px; background: var(--sa-red); }

/* ── Article Header ── */
.sa-header { padding: 32px 0 28px; border-bottom: 1px solid var(--sa-g3); }
.sa-col-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap;
}
.sa-col-link {
  font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
}
#single-article .sa-col-link { color: var(--sa-red); }
.sa-col-link::before { content: ""; display: block; width: 30px; height: 2px; background: var(--sa-red); }
.sa-col-issue { font-size: 18px; color: var(--sa-gm); font-style: italic; }

.sa-h {
  font-family: var(--sa-serif); font-size: clamp(28px, 4vw, 50px);
  font-weight: 600; line-height: 1.1; letter-spacing: -.01em; color: var(--sa-ink);
  margin-bottom: 14px;
}
.sa-deck {
  font-family: var(--sa-body); font-size: clamp(17px, 1.8vw, 21px); font-weight: 400;
  color: var(--sa-ink); line-height: 1.5;
  margin-bottom: 22px;
}
.sa-meta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.sa-author { display: flex; align-items: center; gap: 15px; min-width: 0; }
.sa-author-av {
  width: 55px; height: 55px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--sa-cream), var(--sa-g3));
}
.sa-author-av img { width: 100%; height: 100%; object-fit: cover; }
.sa-author-av-fb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sa-serif); font-weight: 600; font-size: 20px; color: var(--sa-red);
}
.sa-author-name { font-size: 18px; font-weight: 600; color: var(--sa-ink); display: block; margin-bottom: 2px; }
.sa-author-meta { font-size: 15px; color: var(--sa-gm); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.sa-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sa-g3); display: inline-block; }

/* ── Share buttons ── */
.sa-share { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.sa-share-lbl { font-size: 12px; font-weight: 500; color: var(--sa-gm); margin-right: 4px; }
#single-article .sa-share-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--sa-g3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sa-g1); transition: border-color .15s, background .15s, color .15s;
  flex-shrink: 0;
}
#single-article .sa-share-btn:hover {
  border-color: var(--sa-ink); background: var(--sa-ink); color: #fff;
}

/* ── Hero Image ── */
.sa-hero { margin: 0; }
.sa-hero-inner { max-width: var(--sa-w); margin: 0 auto; padding: 24px 38px 0; }
.sa-hero-img {
  border-radius: 12px; overflow: hidden; background: var(--sa-g4);
  display: flex; justify-content: center; align-items: center;
  max-height: 80vh;
}
.sa-hero-img img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto; height: auto;
  object-fit: contain;
}
.sa-hero-cap { padding: 8px 4px 0; font-size: 11px; color: var(--sa-gm); font-style: italic; }

/* ── Body + Sidebar layout ── */
.sa-body-wrap {
  max-width: var(--sa-w); margin: 0 auto; padding: 44px 38px 60px;
  display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start;
}

/* ── Article Text ── */
.sa-art-text {
  font-family: var(--sa-body); font-size: 22px; line-height: 1.6;
  color: var(--sa-ink); max-width: var(--sa-content);
}
.sa-art-text p { margin-bottom: 1.4em; }

/* Legacy inline font-size on opening spans (migrated content sometimes wraps
   the first paragraph in <span style="font-size: 1rem">) — force inherit so
   it doesn't shrink below the body size. */
.sa-art-text span[style*="font-size"] { font-size: inherit !important; }

/* Legacy drop-cap (content is authored as <span id="first-letter">T</span>) */
.sa-art-text #first-letter {
  float: left;
  font-family: var(--sa-serif) !important;
  font-size: 3.8em !important;
  /* line-height 0.82 makes the floated line-box match the cap-height — the
     glyph's visible top then aligns with the body's first line top. */
  line-height: .82 !important;
  font-weight: 700 !important;
  color: var(--sa-red) !important;
  margin: 0 .1em 0 0;
  padding: 0;
}
.sa-art-text h2 {
  font-family: var(--sa-serif); font-size: 24px; font-weight: 700;
  line-height: 1.2; margin: 2.2em 0 .7em;
}
.sa-art-text h3 {
  font-family: var(--sa-serif); font-size: 20px; font-weight: 600;
  line-height: 1.3; margin: 1.8em 0 .6em;
}
.sa-art-text strong { font-weight: 700; }
.sa-art-text em { font-style: italic; }
.sa-art-text a { color: var(--sa-red); text-decoration: underline; text-underline-offset: 2px; }
.sa-art-text ul, .sa-art-text ol { margin: 1em 0 1.4em 1.4em; }
.sa-art-text li { margin-bottom: .4em; }
.sa-art-text blockquote {
  margin: 1.8em 0; padding: 16px 20px; border-left: 3px solid var(--sa-red);
  font-style: italic; color: var(--sa-g1);
}
#single-article .sa-dc {
  font-family: var(--sa-serif); font-size: 4em; font-weight: 700; line-height: .82;
  float: left; margin: .06em .12em 0 0; color: var(--sa-red) !important;
}

/* Pull quote */
.sa-pullquote {
  margin: 2.2em 0; padding: 22px 26px 18px;
  border-left: 3px solid var(--sa-red); background: var(--sa-cream);
  border-radius: 0 8px 8px 0; font-family: var(--sa-sans);
}
.sa-pq-text {
  font-family: var(--sa-serif); font-size: 19px; font-style: italic; font-weight: 600;
  line-height: 1.4; color: var(--sa-ink); margin-bottom: 10px;
}
.sa-pq-cite { font-size: 12px; color: var(--sa-gm); }

/* Stat callout */
.sa-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--sa-g3); border: 1px solid var(--sa-g3);
  border-radius: 10px; overflow: hidden; margin: 2em 0; font-family: var(--sa-sans);
}
.sa-stat-row > div { background: var(--sa-cream); padding: 20px 16px; text-align: center; }
.sa-stat-n { font-size: 28px; font-weight: 700; color: var(--sa-red); line-height: 1; margin-bottom: 4px; font-family: var(--sa-serif); }
.sa-stat-l { font-size: 11px; color: var(--sa-gm); letter-spacing: .04em; }

/* Paywall */
.sa-paywall-zone { position: relative; margin-top: 8px; font-family: var(--sa-body); font-size: 22px; line-height: 1.6; color: var(--sa-ink); }
.sa-paywall-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 240px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 75%);
  pointer-events: none;
}
.sa-paywall {
  background: linear-gradient(135deg, var(--sa-ink) 0%, #3a1a1c 100%);
  border-radius: 14px; padding: 40px 32px; text-align: center;
  color: #fff; margin: 16px 0 40px; font-family: var(--sa-sans);
  position: relative; overflow: hidden;
}
.sa-paywall::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(500px 200px at 50% -50%, rgba(222,28,34,.4), transparent 60%);
}

/* Print-only variant — editorial flag for content reserved for the print
   edition. Same shape as the regular paywall but a cream-on-ink palette so
   readers immediately see it's a different status, not a "register to read"
   prompt. */
.sa-paywall--print {
  background: linear-gradient(135deg, #1b0f0f 0%, var(--sa-ink) 100%);
}
.sa-paywall--print::before {
  background: radial-gradient(500px 200px at 50% -50%, rgba(251,247,243,.18), transparent 60%);
}
.sa-paywall--print .sa-paywall-icon { background: var(--sa-cream, #FBF7F3); color: var(--sa-ink); }
.sa-paywall--print .sa-paywall-icon svg { stroke: var(--sa-ink); }
#single-article .sa-paywall--print .sa-pw-cta-1 { background: var(--sa-cream, #FBF7F3); color: var(--sa-ink); }
#single-article .sa-paywall--print .sa-pw-cta-1:hover { background: #fff; }
.sa-paywall-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sa-red);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative;
}
.sa-paywall h3 {
  font-family: var(--sa-serif); font-size: 30px; font-weight: 600;
  margin-bottom: 10px; line-height: 1.15; letter-spacing: -.01em;
}
.sa-paywall > p { font-size: 14px; color: rgba(255,255,255,.65); max-width: 440px; margin: 0 auto 24px; line-height: 1.6; }
.sa-pw-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
#single-article .sa-pw-cta-1 {
  background: var(--sa-red); color: #fff; font-weight: 600; font-size: 14px;
  padding: 12px 24px; border-radius: var(--radius-btn); transition: background .15s, transform .15s; display: inline-block;
}
#single-article .sa-pw-cta-1:hover { background: var(--sa-red-dark); transform: translateY(-1px); }
#single-article .sa-pw-cta-2 {
  background: rgba(255,255,255,.1); color: #fff; font-weight: 500; font-size: 14px;
  padding: 12px 24px; border-radius: var(--radius-btn); border: 1px solid rgba(255,255,255,.2);
  transition: background .15s; display: inline-block;
}
#single-article .sa-pw-cta-2:hover { background: rgba(255,255,255,.18); }
.sa-pw-login { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 28px; }
#single-article .sa-pw-login a { color: var(--sa-red); font-weight: 600; }
.sa-pw-perks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
}
/* Placeholder line that reserves the perks block while paid subscription
   tiers aren't live yet — single-line italic copy in muted white. */
.sa-pw-perks--placeholder {
  display: block;
  font-style: italic;
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
}
.sa-pp-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,.7); text-transform: uppercase;
  letter-spacing: .08em; font-weight: 600;
}
.sa-pp-item svg { color: var(--sa-red); }
.sa-pw-print {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px; color: rgba(255,255,255,.65);
}
#single-article .sa-pw-print a { color: var(--sa-red); font-weight: 600; }
#single-article .sa-pw-print a:hover { text-decoration: underline; }

/* Tags */
.sa-tags {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--sa-g3); border-bottom: 1px solid var(--sa-g3);
  margin-bottom: 24px; font-family: var(--sa-sans);
}
.sa-tag-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sa-gm); margin-right: 4px; }
#single-article .sa-tag {
  font-size: 12px; font-weight: 500; color: var(--sa-ink);
  background: var(--sa-g4); border-radius: 999px; padding: 5px 12px;
  transition: background .15s, color .15s;
}
#single-article .sa-tag:hover { background: var(--sa-ink); color: #fff; }

/* Bottom share */
.sa-bot-share {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 32px; margin-bottom: 28px; padding: 20px 24px;
  background: var(--sa-cream); border-radius: 10px; flex-wrap: wrap;
  font-family: var(--sa-sans);
}
.sa-bot-share-l { font-family: var(--sa-serif); font-size: 18px; font-weight: 600; color: var(--sa-ink); font-style: italic; }

/* Author bio */
.sa-author-bio {
  display: grid; grid-template-columns: 96px 1fr; gap: 24px; align-items: start;
  padding: 32px; border-radius: 14px;
  background: #fff; margin-bottom: 20px; font-family: var(--sa-sans);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px -12px rgba(0,0,0,.10);
}
.sa-ab-av {
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  background: var(--sa-g4); border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--sa-g3);
}
.sa-ab-av img { width: 100%; height: 100%; object-fit: cover; }
.sa-ab-av-fb {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--sa-serif); font-weight: 600; font-size: 28px; color: var(--sa-red);
}
.sa-ab-eye { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sa-gm); margin-bottom: 8px; }
.sa-ab-name { font-family: var(--sa-serif); font-size: 24px; font-weight: 600; color: var(--sa-ink); margin-bottom: 4px; letter-spacing: -.01em; }
.sa-ab-role { font-size: 13px; color: var(--sa-gm); margin-bottom: 14px; }
.sa-ab-text { font-size: 14px; line-height: 1.65; color: var(--sa-g1); margin-bottom: 14px; max-width: 540px; }
#single-article .sa-ab-link { font-size: 13px; font-weight: 600; color: var(--sa-red); display: inline-flex; align-items: center; gap: 6px; }
#single-article .sa-ab-link::after { content: "→"; transition: transform .2s; }
#single-article .sa-ab-link:hover::after { transform: translateX(3px); }

/* Podcast tie-in */
.sa-pod-tie {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 18px; align-items: center;
  background: var(--sa-ink); color: #fff; border-radius: 14px; padding: 20px 24px;
  margin-top: 24px; position: relative; overflow: hidden; font-family: var(--sa-sans);
}
.sa-pod-tie::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px 150px at 100% 50%, rgba(222,28,34,.18), transparent 60%);
}
.sa-pod-tie-img {
  width: 80px; height: 80px; border-radius: 8px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--sa-red-deep), var(--sa-red));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--sa-serif); font-weight: 600; font-style: italic; font-size: 36px;
}
.sa-pod-tie-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sa-pod-tie-eye {
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sa-red); display: flex; align-items: center; gap: 6px; margin-bottom: 6px;
}
.sa-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sa-red); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(222,28,34,.7);
  animation: sa-pulse-anim 2s infinite; display: inline-block;
}
@keyframes sa-pulse-anim {
  0%   { box-shadow: 0 0 0 0 rgba(222,28,34,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(222,28,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(222,28,34,0); }
}
.sa-pod-tie-title { font-family: var(--sa-serif); font-size: 18px; font-weight: 600; line-height: 1.25; margin-bottom: 4px; }
.sa-pod-tie-sub { font-size: 12px; color: rgba(255,255,255,.5); }
#single-article .sa-pod-tie-btn {
  flex-shrink: 0; background: var(--sa-red); color: #fff; font-size: 13px; font-weight: 600;
  padding: 11px 18px; border-radius: var(--radius-btn); display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s, transform .15s; white-space: nowrap; font-family: var(--sa-sans);
  position: relative;
}
#single-article .sa-pod-tie-btn:hover { background: var(--sa-red-dark); transform: translateY(-1px); }

/* Sidebar variant of podcast tie-in (compact card) */
.sa-sb-pod { color: #fff; }
.sa-sb-pod .sa-pod-eye {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sa-red); display: flex; align-items: center; gap: 7px; margin-bottom: 14px;
}
.sa-sb-pod .sa-pod-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.sa-sb-pod .sa-pod-img {
  width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sa-serif); font-weight: 700; font-size: 22px; color: rgba(255,255,255,.7);
}
.sa-sb-pod .sa-pod-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-sb-pod .sa-pod-body { min-width: 0; flex: 1; }
.sa-sb-pod .sa-pod-title { font-family: var(--sa-serif); font-size: 16px; font-weight: 600; line-height: 1.3; color: #fff; margin-bottom: 4px; }
.sa-sb-pod .sa-pod-sub { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.4; }
#single-article .sa-sb-pod .sa-pod-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--sa-red); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  padding: 11px 16px; border-radius: var(--radius-btn);
  transition: background .15s;
  font-family: var(--sa-sans);
}
#single-article .sa-sb-pod .sa-pod-btn:hover { background: var(--sa-red-dark); color: #fff; }

/* ── Sidebar ── */
.sa-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sa-sb-card {
  background: #fff; border-radius: 12px;
  padding: 22px; font-family: var(--sa-sans);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px -12px rgba(0,0,0,.10);
}
.sa-sb-card--cream { background: var(--sa-cream); border-color: transparent; }
.sa-sb-card--ink   { background: var(--sa-ink); border-color: transparent; color: #fff; }
.sa-sb-h {
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sa-gm); margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.sa-sb-h::before { content: ""; display: block; width: 18px; height: 1px; background: var(--sa-red); flex-shrink: 0; }
.sa-sb-card--ink .sa-sb-h { color: rgba(255,255,255,.55); }

/* Issue stamp */
.sa-issue-stamp { display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: center; }
.sa-issue-cover {
  width: 64px; aspect-ratio: 3/4; border-radius: 5px; overflow: hidden;
  background: var(--sa-g4); box-shadow: 0 8px 20px -8px rgba(0,0,0,.2);
}
.sa-issue-cover img { width: 100%; height: 100%; object-fit: cover; }
.sa-issue-name { font-family: var(--sa-serif); font-size: 17px; font-weight: 600; line-height: 1.2; color: var(--sa-ink); margin-bottom: 3px; }
.sa-issue-date { font-size: 12px; color: var(--sa-gm); margin-bottom: 8px; }
#single-article .sa-issue-link { font-size: 12px; font-weight: 600; color: var(--sa-red); }
#single-article .sa-issue-link:hover { text-decoration: underline; }

/* Sidebar related article */
.sa-ra {
  display: grid; grid-template-columns: 80px 1fr; gap: 14px; align-items: start;
  padding: 14px 8px; margin: 0 -8px; border-bottom: 1px solid var(--sa-g3);
  border-radius: 6px; transition: background .15s;
}
.sa-ra:first-of-type { padding-top: 8px; }
.sa-ra:last-child { border-bottom: 0; padding-bottom: 0; }
.sa-ra:hover { background: var(--sa-cream); }
.sa-ra-img {
  aspect-ratio: 1; border-radius: 6px; overflow: hidden;
  background: var(--sa-g4);
}
.sa-ra-img img { width: 100%; height: 100%; object-fit: cover; }
.sa-ra-eye { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sa-red); margin-bottom: 4px; }
.sa-ra-title { font-size: 14px; font-weight: 600; color: var(--sa-ink); line-height: 1.3; margin-bottom: 3px; transition: color .15s; }
.sa-ra:hover .sa-ra-title { color: var(--sa-red); }
.sa-ra-by { font-size: 11px; color: var(--sa-gm); }

/* Newsletter card */
.sa-sbn { padding: 28px 24px; }
.sa-sbn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--sa-red);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sa-sbn-h {
  font-size: 24px; font-weight: 600; font-family: var(--sa-serif);
  color: #fff; line-height: 1.15; letter-spacing: -.01em; margin: 0 0 8px;
}
.sa-sbn-p {
  font-family: var(--sa-body); font-size: 15px; color: rgba(255,255,255,.65);
  line-height: 1.5; margin: 0 0 18px;
}
.sa-sbn-form { display: flex; flex-direction: column; gap: 8px; }
.sa-sbn-form input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-btn); padding: 11px 13px; font-size: 13px; color: #fff;
  font-family: var(--sa-sans); outline: none; width: 100%;
  transition: border-color .15s, background .15s;
}
.sa-sbn-form input::placeholder { color: rgba(255,255,255,.4); }
.sa-sbn-form input:focus { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.12); }
#single-article .sa-sbn-form button {
  background: var(--sa-red); color: #fff; font-weight: 600; font-size: 13px;
  padding: 11px; border-radius: var(--radius-btn); transition: background .15s;
  font-family: var(--sa-serif); letter-spacing: .01em; width: 100%;
}
#single-article .sa-sbn-form button:hover { background: var(--sa-red-dark); }

/* ── Prev / Next ── */
.sa-art-nav {
  max-width: var(--sa-w); margin: 28px auto 0; padding: 0 38px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  font-family: var(--sa-sans);
}
.sa-art-nav-a {
  display: flex; flex-direction: column; gap: 8px; padding: 22px 24px;
  border-radius: 12px; background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px -12px rgba(0,0,0,.10);
  transition: transform .15s, box-shadow .15s;
}
.sa-art-nav-a:hover { transform: translateY(-2px); box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 18px 40px -16px rgba(0,0,0,.16); }
.sa-art-nav-next { text-align: right; }
.sa-art-nav-dir { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sa-red); }
.sa-art-nav-title { font-family: var(--sa-serif); font-size: 18px; font-weight: 600; line-height: 1.25; color: var(--sa-ink); }

/* ── More from Mishpacha ── */
.sa-more-sec { padding: 88px 0; margin-top: 88px; background: var(--sa-cream); }

/* Shared section-head pattern (mirrors .hp-sec-head from homepage.css) */
#single-article .hp-sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
#single-article .hp-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sa-sans); font-size: 13px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sa-red);
}
#single-article .hp-eyebrow::before {
  content: ""; display: block; width: 28px; height: 1px; background: var(--sa-red);
}
#single-article .hp-sec-title {
  margin: 12px 0 0; font-family: var(--sa-serif); font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.05; letter-spacing: -.015em;
  color: var(--sa-ink); max-width: 680px;
}
#single-article .hp-sec-sub {
  margin: 12px 0 0; font-family: var(--sa-body); font-size: 19px;
  line-height: 1.45; color: rgba(29,5,6,0.72); max-width: 600px;
}
.sa-more-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sa-mg-card {
  display: flex; flex-direction: column; border-radius: 10px; overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px -12px rgba(0,0,0,.10);
  transition: transform .2s, box-shadow .2s;
}
.sa-mg-card:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 18px 40px -16px rgba(0,0,0,.16); }
.sa-mg-img { aspect-ratio: 3/2; overflow: hidden; background: var(--sa-g4); }
.sa-mg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.sa-mg-card:hover .sa-mg-img img { transform: scale(1.06); }
.sa-mg-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.sa-mg-eye { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sa-red); margin-bottom: 8px; font-family: var(--sa-sans); }
.sa-mg-title { font-size: 18px; font-weight: 600; font-family: var(--sa-serif); color: var(--sa-ink); line-height: 1.25; margin-bottom: 8px; letter-spacing: -.01em; flex: 1; transition: color .15s; }
.sa-mg-card:hover .sa-mg-title { color: var(--sa-red); }
.sa-mg-by { font-size: 11px; color: var(--sa-gm); font-family: var(--sa-sans); }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .sa-body-wrap { grid-template-columns: 1fr 280px; gap: 40px; }
  .sa-more-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .sa-body-wrap { grid-template-columns: 1fr; gap: 0; }
  .sa-sidebar { position: static; margin-top: 40px; }
  .sa-art-text { max-width: 100%; }
  .sa-h, .sa-deck { max-width: 100%; }
  .sa-hero-img { border-radius: 8px; }
}
@media (max-width: 640px) {
  .sa-wrap,
  .sa-hero-inner,
  .sa-hero-cap,
  .sa-body-wrap,
  .sa-art-nav { padding-left: 20px; padding-right: 20px; }
  .sa-h { font-size: 30px; }
  .sa-deck { font-size: 19px; line-height: 1.5; }
  .sa-art-text { font-size: 20px; line-height: 1.65; }
  #single-article .sa-dc { font-size: 3.2em; }
  .sa-more-grid { grid-template-columns: 1fr; }
  .sa-stat-row { grid-template-columns: 1fr; }
  .sa-author-bio { flex-direction: column; }
  .sa-meta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sa-paywall { padding: 28px 20px; }
  .sa-pw-row { flex-direction: column; }
  .sa-pod-tie { grid-template-columns: 60px 1fr; gap: 14px; }
  .sa-pod-tie-img { width: 60px; height: 60px; font-size: 24px; }
  #single-article .sa-pod-tie-btn { grid-column: 1 / -1; justify-content: center; }
  .sa-art-nav-a { max-width: 100%; }
}
