/* blog-v2.css, Blog (blog index) + Notatka (single post).
 Editorial "Reportaż" vocabulary, reuses sn-r2-* tokens from
 single-portfolio-v2.css. Defines:
 - sn-bl-* : blog index (Blog)
 - sn-bp-* : single blog post (Notatka) body typography
*/

/* ═══════════════════════════════════════════════════════════════════
 COMMON, main background, hero card placeholder
 ═══════════════════════════════════════════════════════════════════ */

.sn-bl-main,
.sn-bp-main {
 background: var(--bone-100);
 color: var(--fg-on-light-1);
 --r2-rule: rgba(20, 17, 13, 0.12);
}

/* ═══════════════════════════════════════════════════════════════════
 BLOG INDEX (Blog)
 ═══════════════════════════════════════════════════════════════════ */

/* ─── Hero masthead card (right column, placeholder for newspaper feel) ── */
.sn-bl-hero-card {
 position: relative;
 align-self: stretch;
 display: flex;
 flex-direction: column;
 gap: clamp(14px, 1.6vw, 22px);
 padding: clamp(36px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
 background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: var(--radius-tight);
 overflow: hidden;
}
.sn-bl-hero-card-rule {
 height: 2px;
 background: var(--brass-500);
 opacity: 0.85;
}
.sn-bl-hero-card-rule-thin {
 height: 1px;
 background: rgba(255, 255, 255, 0.14);
 opacity: 1;
}
.sn-bl-hero-card-top {
 display: flex;
 justify-content: space-between;
 align-items: baseline;
 font-family: var(--font-body);
 font-size: var(--fs-mini);
 font-weight: 600;
 letter-spacing: var(--ls-eyebrow);
 text-transform: uppercase;
}
.sn-bl-hero-card-edition { color: var(--brass-400); }
.sn-bl-hero-card-date { color: var(--fg-on-dark-3); }
.sn-bl-hero-card-title {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 6px;
 padding: clamp(8px, 1vw, 14px) 0;
}
.sn-bl-hero-card-title-lg {
 font-family: var(--font-display);
 font-weight: 900;
 font-size: clamp(48px, 6.5vw, 96px);
 line-height: 0.95;
 letter-spacing: -0.03em;
 color: var(--fg-on-dark-1);
}
.sn-bl-hero-card-title-lg em { font-style: italic; color: var(--brass-400); }
.sn-bl-hero-card-title-sm {
 font-family: var(--font-heading);
 font-style: italic;
 font-weight: 400;
 font-size: clamp(14px, 1.3vw, 18px);
 letter-spacing: 0.02em;
 color: var(--fg-on-dark-3);
}
.sn-bl-hero-card-strap {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 gap: 8px 12px;
 font-family: var(--font-body);
 font-size: var(--fs-mini);
 font-weight: 600;
 letter-spacing: var(--ls-cta);
 text-transform: uppercase;
 color: var(--fg-on-dark-2);
}
.sn-bl-hero-card-strap-sep { color: var(--brass-500); }
.sn-bl-hero-card-feature {
 display: flex;
 flex-direction: column;
 gap: 10px;
 padding-top: clamp(8px, 1vw, 14px);
 margin-top: auto;
}
.sn-bl-hero-card-feature-eye {
 font-family: var(--font-body);
 font-size: var(--fs-nano);
 font-weight: 700;
 letter-spacing: var(--ls-loose);
 text-transform: uppercase;
 color: var(--brass-400);
}
.sn-bl-hero-card-feature-h {
 font-family: var(--font-display);
 font-weight: 700;
 font-size: clamp(18px, 1.8vw, 24px);
 line-height: 1.2;
 letter-spacing: -0.01em;
 color: var(--fg-on-dark-1);
 text-wrap: balance;
}
.sn-bl-hero-card-feature-meta {
 font-family: var(--font-body);
 font-size: 13px;
 color: var(--fg-on-dark-3);
 letter-spacing: 0.01em;
}
.sn-bl-hero-card-stamp {
 position: absolute;
 top: clamp(28px, 3vw, 42px);
 right: clamp(28px, 3vw, 42px);
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 2px;
 width: 64px;
 height: 64px;
 border: 1.5px solid var(--brass-400);
 border-radius: 50%;
 justify-content: center;
 color: var(--brass-400);
 transform: rotate(8deg);
}
.sn-bl-hero-card-stamp-no {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 900;
 font-size: 22px;
 line-height: 1;
 letter-spacing: -0.01em;
}
.sn-bl-hero-card-stamp-lbl {
 font-family: var(--font-body);
 font-size: 8px;
 font-weight: 700;
 letter-spacing: var(--ls-eyebrow);
 text-transform: uppercase;
}

/* ─── Featured article card (chapter 01) ───────────────────────────── */
.sn-bl-polecany {
 padding: clamp(72px, 8vw, 112px) 0 clamp(56px, 6vw, 88px);
}
.sn-bl-pol-card {
 display: grid;
 grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
 gap: clamp(32px, 4vw, 56px);
 align-items: start;
 margin-top: clamp(40px, 5vw, 64px);
}
.sn-bl-pol-photo {
 position: relative;
 display: block;
 aspect-ratio: 4 / 5;
 overflow: hidden;
 background: var(--ink-800);
 border: 1px solid rgba(20, 17, 13, 0.08);
}
.sn-bl-pol-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 600ms var(--ease-out, cubic-bezier(0.22, 0.61, 0.36, 1));
}
.sn-bl-pol-photo:hover img { transform: scale(1.025); }
.sn-bl-pol-photo-stamp {
 position: absolute;
 top: clamp(20px, 2vw, 28px);
 left: clamp(20px, 2vw, 28px);
 display: flex;
 flex-direction: column;
 gap: 6px;
 padding: 14px 18px;
 background: rgba(14, 14, 12, 0.86);
 border-left: 2px solid var(--brass-500);
 color: var(--fg-on-dark-1);
}
.sn-bl-pol-photo-stamp-no {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 900;
 font-size: 18px;
 letter-spacing: -0.01em;
 color: var(--brass-400);
}
.sn-bl-pol-photo-stamp-lbl {
 font-family: var(--font-body);
 font-size: var(--fs-mini);
 font-weight: 600;
 letter-spacing: var(--ls-cta);
 text-transform: uppercase;
 color: var(--fg-on-dark-2);
}
.sn-bl-pol-body {
 display: flex;
 flex-direction: column;
 gap: clamp(20px, 2.4vw, 32px);
 padding-top: clamp(8px, 1.5vw, 20px);
}
.sn-bl-pol-meta {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 0 12px;
 font-family: var(--font-body);
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--fg-on-light-3);
}
.sn-bl-pol-meta-cat { color: var(--brass-600); }
.sn-bl-pol-meta-sep { opacity: 0.5; }
.sn-bl-pol-h {
 font-family: var(--font-display);
 font-weight: 900;
 font-size: clamp(34px, 4.2vw, 56px);
 line-height: 1.04;
 letter-spacing: -0.025em;
 color: var(--fg-on-light-1);
 margin: 0;
 text-wrap: pretty;
}
.sn-bl-pol-h a { color: inherit; text-decoration: none; transition: color 220ms; }
.sn-bl-pol-h a:hover { color: var(--brass-600); }
.sn-bl-pol-h em { font-style: italic; color: var(--brass-600); font-weight: 900; }
.sn-bl-pol-sub {
 font-family: var(--font-heading);
 font-weight: 400;
 font-size: clamp(17px, 1.5vw, 20px);
 line-height: 1.5;
 color: var(--fg-on-light-2);
 margin: 0;
 text-wrap: pretty;
}
.sn-bl-pol-lede {
 font-family: var(--font-body);
 font-size: 15px;
 line-height: 1.65;
 color: var(--fg-on-light-2);
 margin: 0;
 text-wrap: pretty;
}
.sn-bl-pol-foot {
 display: flex;
 justify-content: space-between;
 align-items: flex-end;
 gap: 24px;
 padding-top: clamp(16px, 2vw, 24px);
 border-top: 1px solid var(--r2-rule);
}
.sn-bl-pol-byline {
 display: flex;
 flex-direction: column;
 gap: 2px;
}
.sn-bl-pol-byline-lbl {
 font-family: var(--font-body);
 font-size: var(--fs-nano);
 font-weight: 700;
 letter-spacing: var(--ls-loose);
 text-transform: uppercase;
 color: var(--fg-on-light-3);
 margin-bottom: 4px;
}
.sn-bl-pol-byline-name {
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: 15px;
 color: var(--fg-on-light-1);
}
.sn-bl-pol-byline-role {
 font-family: var(--font-body);
 font-size: 12px;
 color: var(--fg-on-light-3);
 letter-spacing: 0.01em;
}
.sn-bl-pol-cta {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 font-family: var(--font-body);
 font-size: 12px;
 font-weight: 700;
 letter-spacing: var(--ls-cta);
 text-transform: uppercase;
 color: var(--fg-on-light-1);
 text-decoration: none;
 padding: 12px 0;
 transition: color 220ms, gap 220ms;
}
.sn-bl-pol-cta:hover { color: var(--brass-600); gap: 14px; }
.sn-bl-pol-cta svg { width: 14px; height: 14px; }

/* ─── Archive (chapter 02) ─────────────────────────────────────────── */
.sn-bl-archive {
 padding: clamp(64px, 8vw, 112px) 0 clamp(80px, 9vw, 120px);
 border-top: 1px solid var(--r2-rule);
}
.sn-bl-arch-head {
 display: grid;
 grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
 gap: clamp(32px, 4vw, 64px);
 align-items: end;
 margin-bottom: clamp(36px, 4vw, 56px);
}
.sn-bl-arch-h {
 font-family: var(--font-display);
 font-weight: 900;
 font-size: clamp(36px, 4.5vw, 60px);
 line-height: 1.02;
 letter-spacing: -0.025em;
 color: var(--fg-on-light-1);
 margin: 0;
 text-wrap: balance;
}
.sn-bl-arch-h em { font-style: italic; color: var(--brass-600); font-weight: 900; }
.sn-bl-arch-lede {
 font-family: var(--font-body);
 font-size: 16px;
 line-height: 1.6;
 color: var(--fg-on-light-2);
 margin: 0;
 max-width: 46ch;
 text-wrap: pretty;
}

/* Filter rail, borrow exact look from sn-rl2-filters in realizacje-v2.css.
 Re-declare in case load order changes. */
.sn-bl-filters {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 10px;
 padding-bottom: clamp(28px, 3vw, 40px);
 margin-bottom: clamp(36px, 4vw, 56px);
 border-bottom: 1px solid var(--r2-rule);
}
.sn-bl-filter-lbl {
 font-family: var(--font-body);
 font-size: var(--fs-nano);
 font-weight: 700;
 letter-spacing: var(--ls-loose);
 text-transform: uppercase;
 color: var(--fg-on-light-3);
 margin-right: 8px;
}
/* .sn-rl2-chip already styled in realizacje-v2.css; the file is loaded
 alongside this one so we get its look for free. */

/* Grid */
.sn-bl-grid {
 list-style: none;
 margin: 0;
 padding: 0;
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: clamp(36px, 4vw, 56px) clamp(24px, 3vw, 40px);
}
.sn-bl-card {
 display: flex;
 flex-direction: column;
 gap: clamp(16px, 1.8vw, 24px);
}
.sn-bl-card-photo {
 position: relative;
 display: block;
 aspect-ratio: 4 / 3;
 overflow: hidden;
 background: var(--ink-800);
 border: 1px solid rgba(20, 17, 13, 0.08);
}
.sn-bl-card-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 600ms var(--ease-out, cubic-bezier(0.22, 0.61, 0.36, 1));
}
.sn-bl-card-photo:hover img { transform: scale(1.03); }
.sn-bl-card-no {
 position: absolute;
 top: 14px;
 left: 14px;
 padding: 5px 10px;
 background: rgba(14, 14, 12, 0.84);
 border-left: 2px solid var(--brass-500);
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 900;
 font-size: 13px;
 letter-spacing: -0.01em;
 color: var(--brass-400);
}
.sn-bl-card-body {
 display: flex;
 flex-direction: column;
 gap: 10px;
 flex: 1 1 auto;
}
.sn-bl-card-meta {
 display: flex;
 align-items: center;
 gap: 8px;
 font-family: var(--font-body);
 font-size: var(--fs-mini);
 font-weight: 600;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--fg-on-light-3);
}
.sn-bl-card-cat { color: var(--brass-600); }
.sn-bl-card-sep { opacity: 0.5; }
.sn-bl-card-h {
 font-family: var(--font-display);
 font-weight: 800;
 font-size: clamp(18px, 1.8vw, 22px);
 line-height: 1.18;
 letter-spacing: -0.015em;
 color: var(--fg-on-light-1);
 margin: 0;
 text-wrap: pretty;
}
.sn-bl-card-h a { color: inherit; text-decoration: none; transition: color 220ms; }
.sn-bl-card-h a:hover { color: var(--brass-600); }
.sn-bl-card-excerpt {
 font-family: var(--font-body);
 font-size: 14px;
 line-height: 1.55;
 color: var(--fg-on-light-2);
 margin: 0;
 text-wrap: pretty;
}
.sn-bl-card-foot {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 12px;
 margin-top: auto;
 padding-top: 14px;
 border-top: 1px solid var(--r2-rule);
 font-family: var(--font-body);
 font-size: 12px;
 color: var(--fg-on-light-3);
 letter-spacing: 0.04em;
}
.sn-bl-card-arrow {
 display: inline-flex;
 width: 28px;
 height: 28px;
 align-items: center;
 justify-content: center;
 color: var(--fg-on-light-2);
 transition: color 220ms, transform 220ms;
}
.sn-bl-card-photo + .sn-bl-card-body .sn-bl-card-h a:hover,
.sn-bl-card:hover .sn-bl-card-arrow {
 color: var(--brass-600);
}
.sn-bl-card-arrow svg { width: 16px; height: 16px; }

.sn-bl-archive-foot {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 align-items: center;
 gap: 18px;
 margin-top: clamp(40px, 5vw, 64px);
 padding-top: clamp(24px, 3vw, 40px);
 border-top: 1px solid var(--r2-rule);
}
.sn-bl-archive-foot-text {
 font-family: var(--font-body);
 font-size: 13px;
 color: var(--fg-on-light-3);
 letter-spacing: 0.02em;
}
.sn-bl-archive-foot-cta { color: var(--fg-on-light-1); }
.sn-bl-archive-foot-cta:hover { color: var(--brass-600); }
.sn-bl-archive-foot-cta svg { transform: rotate(-90deg); }

/* ─── Newsletter form (variant of sn-r2-cta) ───────────────────────── */
.sn-bl-newsletter { background: var(--ink-1000); }
.sn-bl-news-form {
 display: flex;
 flex-direction: column;
 gap: 10px;
 min-width: min(360px, 100%);
}
.sn-bl-news-label {
 font-family: var(--font-body);
 font-size: var(--fs-nano);
 font-weight: 700;
 letter-spacing: var(--ls-loose);
 text-transform: uppercase;
 color: var(--brass-400);
}
.sn-bl-news-row {
 display: flex;
 gap: 8px;
 background: rgba(255, 255, 255, 0.06);
 border: 1px solid rgba(255, 255, 255, 0.12);
 border-radius: 4px;
 padding: 4px;
}
.sn-bl-news-input {
 flex: 1 1 auto;
 background: transparent;
 border: 0;
 padding: 12px 14px;
 font-family: var(--font-body);
 font-size: 15px;
 color: var(--fg-on-dark-1);
 outline: none;
}
.sn-bl-news-input::placeholder { color: var(--fg-on-dark-3); }
.sn-bl-news-input:focus + .sn-bl-news-btn,
.sn-bl-news-row:focus-within { border-color: var(--brass-500); }
.sn-bl-news-btn {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 padding: 12px 18px;
 font-size: 12px;
 white-space: nowrap;
}
.sn-bl-news-btn svg { width: 11px; height: 11px; }
.sn-bl-news-foot {
 font-family: var(--font-body);
 font-size: 12px;
 color: var(--fg-on-dark-3);
}
.sn-bl-news-foot a { color: var(--brass-400); text-decoration: underline; }
.sn-bl-news-foot a:hover { color: var(--brass-300); }

/* ═══════════════════════════════════════════════════════════════════
 BLOG POST (Notatka)
 ═══════════════════════════════════════════════════════════════════ */

/* Hero ladder, 2 cols are enough for byline (Autor/Stanowisko/Czas/Data) */
.sn-bp-hero-ladder { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

/* ─── Lede (Chapter 01), overrides sn-r2-zapytanie width for blog readability ── */
.sn-bp-lede .sn-r2-zapytanie-h {
 max-width: 22ch;
}
.sn-bp-toc {
 margin: 0;
 padding: 0;
 list-style: none;
 counter-reset: bp-toc;
 display: flex;
 flex-direction: column;
 gap: 8px;
}
.sn-bp-toc li {
 counter-increment: bp-toc;
 font-family: var(--font-body);
 font-size: 13px;
 line-height: 1.5;
 color: var(--fg-on-light-2);
 padding-left: 28px;
 position: relative;
}
.sn-bp-toc li::before {
 content: "0" counter(bp-toc);
 position: absolute;
 left: 0;
 top: 1px;
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 700;
 font-size: 12px;
 letter-spacing: -0.01em;
 color: var(--brass-500);
}
.sn-bp-toc a {
 color: var(--fg-on-light-2);
 text-decoration: none;
 transition: color 220ms;
}
.sn-bp-toc a:hover { color: var(--brass-600); }

/* ─── Body, multi-section editorial typography ──────────────────── */
.sn-bp-body {
 padding: clamp(48px, 6vw, 88px) 0 clamp(48px, 6vw, 88px);
 background: var(--bone-100);
}
.sn-bp-section + .sn-bp-section {
 margin-top: clamp(72px, 8vw, 120px);
 padding-top: clamp(56px, 6vw, 88px);
 border-top: 1px solid var(--r2-rule);
}
.sn-bp-section .sn-r2-chap-head { margin-bottom: clamp(24px, 3vw, 36px); }

/* Reading column, narrower, dense, optical-readability-first */
.sn-bp-prose {
 max-width: 68ch;
 font-family: var(--font-body);
 font-size: 17px;
 line-height: 1.72;
 color: var(--fg-on-light-1);
}
.sn-bp-prose p {
 margin: 0 0 1.1em;
 text-wrap: pretty;
}
.sn-bp-prose p:last-child { margin-bottom: 0; }
.sn-bp-prose em { color: var(--brass-700); font-style: italic; }
.sn-bp-prose strong { color: var(--fg-on-light-1); font-weight: 600; }
.sn-bp-prose a { color: var(--brass-600); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.sn-bp-prose a:hover { color: var(--brass-700); }

.sn-bp-h2 {
 font-family: var(--font-display);
 font-weight: 900;
 font-size: clamp(28px, 3vw, 40px);
 line-height: 1.1;
 letter-spacing: -0.02em;
 color: var(--fg-on-light-1);
 margin: 0 0 0.7em;
 text-wrap: balance;
}
.sn-bp-h2 em { font-style: italic; color: var(--brass-600); font-weight: 900; }

.sn-bp-h3 {
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: clamp(18px, 1.7vw, 22px);
 line-height: 1.3;
 letter-spacing: -0.01em;
 color: var(--fg-on-light-1);
 margin: 1.8em 0 0.6em;
}

/* Callout block, for "in practice" notes */
.sn-bp-callout {
 position: relative;
 margin: 1.6em 0 1.2em !important;
 padding: 20px 24px 20px 28px;
 background: rgba(176, 144, 88, 0.06);
 border-left: 2px solid var(--brass-500);
 font-family: var(--font-heading);
 font-size: 16px !important;
 line-height: 1.55 !important;
 color: var(--fg-on-light-2);
}
.sn-bp-callout-lbl {
 display: block;
 font-family: var(--font-body);
 font-size: var(--fs-nano);
 font-weight: 700;
 letter-spacing: var(--ls-loose);
 text-transform: uppercase;
 color: var(--brass-600);
 margin-bottom: 8px;
}

/* Lists */
.sn-bp-list,
.sn-bp-list-numbered {
 margin: 0 0 1.4em;
 padding: 0;
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 14px;
}
.sn-bp-list li,
.sn-bp-list-numbered li {
 position: relative;
 padding-left: 36px;
 line-height: 1.65;
 text-wrap: pretty;
}
.sn-bp-list li::before {
 content: "";
 position: absolute;
 left: 4px;
 top: 13px;
 width: 14px;
 height: 1px;
 background: var(--brass-500);
}
.sn-bp-list-numbered { counter-reset: bp-list; }
.sn-bp-list-numbered li {
 counter-increment: bp-list;
}
.sn-bp-list-numbered li::before {
 content: counter(bp-list, decimal-leading-zero);
 position: absolute;
 left: 0;
 top: 2px;
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 900;
 font-size: 16px;
 letter-spacing: -0.01em;
 color: var(--brass-500);
}

/* Definition list, for tolerances table */
.sn-bp-deflist {
 margin: 1.4em 0;
 padding: 0;
 display: flex;
 flex-direction: column;
 border-top: 1px solid var(--r2-rule);
}
.sn-bp-deflist-row {
 display: grid;
 grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
 gap: 24px;
 padding: 16px 0;
 border-bottom: 1px solid var(--r2-rule);
 align-items: baseline;
}
.sn-bp-deflist dt {
 font-family: var(--font-heading);
 font-weight: 600;
 font-size: 14px;
 letter-spacing: 0.01em;
 color: var(--fg-on-light-1);
}
.sn-bp-deflist dd {
 font-family: var(--font-body);
 font-size: 15px;
 line-height: 1.55;
 color: var(--fg-on-light-2);
 margin: 0;
 text-wrap: pretty;
}

/* Figure, full-width inside section, captioned */
.sn-bp-figure {
 margin: 2em 0;
 display: flex;
 flex-direction: column;
 gap: 14px;
}
.sn-bp-figure-photo {
 width: 100%;
 aspect-ratio: 16 / 9;
 overflow: hidden;
 background: var(--ink-800);
 border: 1px solid rgba(20, 17, 13, 0.08);
}
.sn-bp-figure-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.sn-bp-figure-cap {
 display: flex;
 gap: 12px;
 padding-left: 14px;
 border-left: 2px solid var(--brass-500);
 font-family: var(--font-body);
 font-size: 13px;
 line-height: 1.5;
 color: var(--fg-on-light-3);
}
.sn-bp-figure-cap .sn-r2-fig-no { color: var(--brass-600); font-weight: 600; letter-spacing: 0.04em; flex-shrink: 0; }
.sn-bp-figure-cap .sn-r2-fig-text { color: var(--fg-on-light-2); text-wrap: pretty; }

/* ─── Author bio card ─────────────────────────────────────────────── */
.sn-bp-author {
 padding: clamp(56px, 6vw, 88px) 0;
 background: var(--bone-100);
 border-top: 1px solid var(--r2-rule);
}
.sn-bp-author-card {
 display: grid;
 grid-template-columns: auto minmax(0, 1fr);
 gap: clamp(24px, 3vw, 40px);
 margin-top: clamp(28px, 3vw, 40px);
 padding: clamp(28px, 3vw, 40px);
 background: #fff;
 border: 1px solid var(--r2-rule);
 border-left: 3px solid var(--brass-500);
}
.sn-bp-author-avatar {
 width: clamp(64px, 7vw, 96px);
 height: clamp(64px, 7vw, 96px);
 border-radius: 50%;
 background: var(--ink-900);
 color: var(--brass-400);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}
.sn-bp-author-initial {
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 900;
 font-size: clamp(28px, 3vw, 40px);
 letter-spacing: -0.02em;
}
.sn-bp-author-body { display: flex; flex-direction: column; gap: 8px; }
.sn-bp-author-name {
 font-family: var(--font-display);
 font-weight: 900;
 font-size: clamp(22px, 2.4vw, 30px);
 line-height: 1.1;
 letter-spacing: -0.02em;
 color: var(--fg-on-light-1);
 margin: 0;
}
.sn-bp-author-role {
 font-family: var(--font-body);
 font-size: 13px;
 font-weight: 600;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--brass-600);
 margin: 0;
}
.sn-bp-author-bio {
 font-family: var(--font-body);
 font-size: 15px;
 line-height: 1.6;
 color: var(--fg-on-light-2);
 margin: 4px 0 0;
 max-width: 60ch;
 text-wrap: pretty;
}
.sn-bp-author-links {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
 margin-top: 6px;
}
.sn-bp-author-link {
 font-family: var(--font-body);
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--brass-600);
 text-decoration: none;
 border-bottom: 1px solid var(--brass-500);
 padding-bottom: 2px;
 transition: color 220ms, border-color 220ms;
}
.sn-bp-author-link:hover { color: var(--brass-700); border-color: var(--brass-700); }

/* ─── Related (3-up) ──────────────────────────────────────────────── */
.sn-bp-related {
 padding: clamp(64px, 8vw, 112px) 0;
 background: var(--bone-100);
 border-top: 1px solid var(--r2-rule);
}
.sn-bp-rel-h {
 font-family: var(--font-display);
 font-weight: 900;
 font-size: clamp(36px, 4.2vw, 56px);
 line-height: 1.02;
 letter-spacing: -0.025em;
 color: var(--fg-on-light-1);
 margin: clamp(24px, 3vw, 36px) 0 clamp(40px, 5vw, 64px);
}
.sn-bp-rel-h em { font-style: italic; color: var(--brass-600); font-weight: 900; }
.sn-bp-rel-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: clamp(24px, 3vw, 40px);
}
.sn-bp-rel-card {
 display: flex;
 flex-direction: column;
 gap: 18px;
 text-decoration: none;
 color: inherit;
 background: #fff;
 border: 1px solid var(--r2-rule);
 padding-bottom: 24px;
 transition: border-color 220ms;
}
.sn-bp-rel-card:hover { border-color: var(--brass-500); }
.sn-bp-rel-photo {
 position: relative;
 aspect-ratio: 4 / 3;
 overflow: hidden;
 background: var(--ink-800);
}
.sn-bp-rel-photo img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 600ms var(--ease-out, cubic-bezier(0.22, 0.61, 0.36, 1));
}
.sn-bp-rel-card:hover .sn-bp-rel-photo img { transform: scale(1.03); }
.sn-bp-rel-no {
 position: absolute;
 top: 12px;
 left: 12px;
 padding: 4px 10px;
 background: rgba(14, 14, 12, 0.84);
 border-left: 2px solid var(--brass-500);
 font-family: var(--font-display);
 font-style: italic;
 font-weight: 900;
 font-size: 12px;
 color: var(--brass-400);
}
.sn-bp-rel-meta {
 display: flex;
 flex-direction: column;
 gap: 8px;
 padding: 0 22px;
}
.sn-bp-rel-cat {
 font-family: var(--font-body);
 font-size: var(--fs-mini);
 font-weight: 600;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--brass-600);
}
.sn-bp-rel-name {
 font-family: var(--font-display);
 font-weight: 800;
 font-size: 19px;
 line-height: 1.2;
 letter-spacing: -0.015em;
 color: var(--fg-on-light-1);
 text-wrap: pretty;
}
.sn-bp-rel-excerpt {
 font-family: var(--font-body);
 font-size: 13px;
 line-height: 1.55;
 color: var(--fg-on-light-3);
 text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════════════════
 RESPONSIVE
 ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
 .sn-bl-pol-card,
 .sn-bl-arch-head { grid-template-columns: 1fr; gap: 24px; }
 .sn-bl-grid,
 .sn-bp-rel-grid { grid-template-columns: repeat(2, 1fr); }
 .sn-bp-deflist-row { grid-template-columns: 1fr; gap: 4px; }
 .sn-bp-author-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
 .sn-bl-grid,
 .sn-bp-rel-grid { grid-template-columns: 1fr; }
 .sn-bl-pol-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
 .sn-bp-prose { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
   G9: the_content() bare elements -> editorial look (post body authored
   as normal HTML/Gutenberg renders inside .sn-bp-prose). Mirrors the
   class-based .sn-bp-h2/.sn-bp-h3/lists so authors need no special markup.
   ═══════════════════════════════════════════════════════════════════ */
.sn-bp-prose > h2 {
 font-family: var(--font-display);
 font-weight: 900;
 font-size: clamp(28px, 3vw, 40px);
 line-height: 1.1;
 letter-spacing: -0.02em;
 color: var(--fg-on-light-1);
 margin: 1.4em 0 0.6em;
 scroll-margin-top: 96px;
 text-wrap: balance;
}
.sn-bp-prose > h2:first-child { margin-top: 0; }
.sn-bp-prose > h2 em { font-style: italic; color: var(--brass-600); }
.sn-bp-prose > h3 {
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: clamp(18px, 1.7vw, 22px);
 line-height: 1.3;
 letter-spacing: -0.01em;
 color: var(--fg-on-light-1);
 margin: 1.6em 0 0.5em;
 scroll-margin-top: 96px;
}
.sn-bp-prose ul,
.sn-bp-prose ol {
 margin: 0 0 1.3em;
 padding-left: 1.4em;
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.sn-bp-prose li { line-height: 1.65; text-wrap: pretty; }
.sn-bp-prose ul li::marker { color: var(--brass-500); }
.sn-bp-prose ol li::marker { color: var(--brass-600); font-family: var(--font-display); font-style: italic; font-weight: 700; }
.sn-bp-prose blockquote {
 margin: 1.6em 0;
 padding: 16px 24px;
 border-left: 2px solid var(--brass-500);
 background: rgba(176, 144, 88, 0.06);
 font-family: var(--font-heading);
 font-style: italic;
 color: var(--fg-on-light-2);
}
.sn-bp-prose table {
 width: 100%;
 border-collapse: collapse;
 margin: 1.6em 0;
 font-size: 15px;
}
.sn-bp-prose thead th {
 text-align: left;
 font-family: var(--font-body);
 font-size: var(--fs-mini);
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--brass-600);
 padding: 12px 14px;
 border-bottom: 2px solid var(--brass-500);
}
.sn-bp-prose tbody td {
 padding: 12px 14px;
 border-bottom: 1px solid var(--r2-rule);
 vertical-align: top;
 line-height: 1.5;
 color: var(--fg-on-light-2);
}
.sn-bp-prose tbody tr:hover td { background: rgba(176, 144, 88, 0.04); }
.sn-bp-prose tbody td:first-child { font-family: var(--font-heading); font-weight: 600; color: var(--fg-on-light-1); }

/* ─── FAQ block (sn-bp-faq) + AEO answer-first ─────────────────────── */
.sn-bp-faq { padding: clamp(48px, 6vw, 80px) 0; background: var(--bone-100); border-top: 1px solid var(--r2-rule); }
.sn-bp-faq-h {
 font-family: var(--font-display);
 font-weight: 900;
 font-size: clamp(28px, 3.4vw, 44px);
 line-height: 1.05;
 letter-spacing: -0.02em;
 color: var(--fg-on-light-1);
 margin: clamp(20px, 2.4vw, 32px) 0 clamp(28px, 3vw, 40px);
}
.sn-bp-faq-h em { font-style: italic; color: var(--brass-600); }
.sn-bp-faq-list { max-width: 78ch; display: flex; flex-direction: column; border-top: 1px solid var(--r2-rule); }
.sn-bp-faq-item { border-bottom: 1px solid var(--r2-rule); padding: 20px 0; }
.sn-bp-faq-q {
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: clamp(17px, 1.6vw, 21px);
 line-height: 1.3;
 color: var(--fg-on-light-1);
 margin: 0 0 8px;
}
.sn-bp-faq-a {
 font-family: var(--font-body);
 font-size: 16px;
 line-height: 1.65;
 color: var(--fg-on-light-2);
 margin: 0;
 text-wrap: pretty;
}
.sn-bp-faq-a a { color: var(--brass-600); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Newsletter ok/notice message ─────────────────────────────────── */
.sn-bl-news-msg {
 font-family: var(--font-body);
 font-size: 14px;
 color: var(--brass-300);
 padding: 6px 2px;
}

/* ─── Empty / low archive state (honest, no fake counts) ───────────── */
.sn-bl-empty {
 padding: 40px 0;
 font-family: var(--font-heading);
 font-style: italic;
 font-size: 18px;
 color: var(--fg-on-light-3);
}
