/* Property Inspect — Blog landing + article shared styles */

/* ─────────────────────────────────────────────────────────
   Shared primitives
   ───────────────────────────────────────────────────────── */
.bl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-100);
}
.bl-kicker.on-dark { color: #7FD48E; }
.bl-kicker .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-100);
  box-shadow: 0 0 0 4px rgba(30,122,43,0.14);
}
.bl-kicker.on-dark .dot {
  background: #7FD48E;
  box-shadow: 0 0 0 4px rgba(127,212,142,0.18);
}

.bl-section-head { max-width: 760px; margin-bottom: 40px; }
.bl-section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.022em;
  line-height: 1.12;
  margin: 14px 0 10px;
}
.bl-section-head p {
  font-size: 16.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 640px;
}
.bl-section-head.row {
  max-width: none;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.bl-section-head.row h2 { margin-bottom: 0; }

.bl-see-all {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: #fff;
  transition: all var(--motion-base) var(--ease-standard);
}
.bl-see-all:hover {
  border-color: var(--green-100);
  color: var(--green-100);
  transform: translateX(2px);
}
.bl-see-all svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.25; }

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
.bl-hero {
  padding: 104px 0 72px;
  background: linear-gradient(180deg, #FDFDFE, var(--off-white-60));
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.bl-hero::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(30,122,43,0.09), transparent 60%);
  pointer-events: none;
}
.bl-hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.bl-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 20px 0 18px;
}
.bl-hero p.lead {
  font-size: 20px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 12px;
}
.bl-hero p.sup {
  font-size: 15px;
  color: var(--color-text-subtle);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
}
.bl-hero-search {
  margin-top: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.bl-hero-search input {
  width: 100%;
  padding: 16px 60px 16px 50px;     /* room for left spyglass + right submit */
  font-size: 15px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(10,20,40,0.04);
  font-family: inherit;
  transition: all var(--motion-base) var(--ease-standard);
}
.bl-hero-search input:focus {
  outline: none;
  border-color: var(--green-100);
  box-shadow: 0 0 0 4px rgba(30,122,43,0.12);
}
/* Decorative left-side spyglass — scoped to its class so the submit
 * button's arrow icon doesn't pick up the same absolute positioning. */
.bl-hero-search .bl-search-icon {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  stroke: var(--color-text-subtle);
  fill: none;
  stroke-width: 2;
  pointer-events: none;
}
/* Right-side submit button — visible green pill with an arrow icon.
 * Replaces the previous visually-hidden submit so users can click to
 * submit, not just press Enter. */
.bl-hero-search-submit {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  background: var(--green-100);
  color: #fff;
  border: 0;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--motion-base) var(--ease-standard),
              transform var(--motion-base) var(--ease-standard);
}
.bl-hero-search-submit:hover { background: #1E7A2B; }
.bl-hero-search-submit:focus-visible {
  outline: 2px solid var(--green-100);
  outline-offset: 3px;
}
.bl-hero-search-submit svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--motion-base) var(--ease-standard);
}
.bl-hero-search-submit:hover svg { transform: translateX(2px); }

/* ─────────────────────────────────────────────────────────
   FEATURED
   ───────────────────────────────────────────────────────── */
.bl-featured { padding: 88px 0 56px; }
.bl-featured-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.bl-ft-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--motion-base) var(--ease-standard);
  position: relative;
}
.bl-ft-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}
.bl-ft-card .thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--off-white-60);
}
.bl-ft-card .thumb .thumb-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-ft-card .thumb .cat {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--color-border-subtle);
  border-radius: 999px;
  color: var(--color-text);
  backdrop-filter: blur(6px);
}
.bl-ft-card .body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bl-ft-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.012em;
}
.bl-ft-card.hero h3 { font-size: 28px; line-height: 1.15; }
.bl-ft-card p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}
.bl-ft-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-text-subtle);
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-subtle);
}
.bl-ft-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.bl-ft-meta .cta {
  margin-left: auto;
  color: var(--color-text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bl-ft-card:hover .bl-ft-meta .cta { color: var(--green-100); }

.bl-ft-card.hero {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.bl-ft-card.hero .thumb { aspect-ratio: 16/10; }

/* ─────────────────────────────────────────────────────────
   TOPIC FILTERS
   ───────────────────────────────────────────────────────── */
.bl-topics { padding: 56px 0 24px; }
.bl-topic-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(10,20,40,0.04);
}
.bl-topic-pill {
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--motion-base) var(--ease-standard);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bl-topic-pill:hover {
  color: var(--color-text);
  background: var(--off-white-60);
}
.bl-topic-pill.on {
  color: #fff;
  background: var(--anthracite-100);
}
.bl-topic-pill .count {
  font-size: 11px;
  opacity: 0.55;
  font-weight: 500;
}
.bl-topic-pill.on .count { opacity: 0.7; }

/* ─────────────────────────────────────────────────────────
   LATEST ARTICLES
   ───────────────────────────────────────────────────────── */
.bl-latest { padding: 40px 0 96px; }
.bl-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bl-art-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--motion-base) var(--ease-standard);
}
.bl-art-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}
.bl-art-card.hidden { display: none; }
.bl-art-card .thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--off-white-60);
}
.bl-art-card .thumb > img,
.bl-art-card .thumb > .bl-art-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bl-art-card .thumb .cat {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--color-border-subtle);
  border-radius: 999px;
  color: var(--color-text);
}
.bl-art-card .body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.bl-art-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.bl-art-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}
.bl-art-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--color-text-subtle);
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-subtle);
}
.bl-art-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* Latest-articles pager — replaces the old "Load more" button.
 * JS-rendered: the empty <nav> in the template is populated on view
 * apply, with prev/next navigators flanking page-number buttons.
 * Renders nothing when there's only one page of eligible cards. */
.bl-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 40px auto 0;
}
.bl-pagination .bl-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--motion-base) var(--ease-standard);
}
.bl-pagination .bl-page:hover:not(:disabled):not(.is-active) {
  border-color: var(--green-100);
  color: var(--green-100);
}
.bl-pagination .bl-page.is-active {
  background: var(--anthracite-100);
  border-color: var(--anthracite-100);
  color: #fff;
  cursor: default;
}
.bl-pagination .bl-page:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.bl-pagination .bl-page-ellipsis {
  background: transparent;
  border: none;
  color: var(--color-text-subtle);
  cursor: default;
  pointer-events: none;
}
.bl-pagination .bl-page-prev,
.bl-pagination .bl-page-next {
  font-size: 18px;
  line-height: 1;
}

.bl-empty {
  padding: 56px 32px;
  text-align: center;
  border: 1px dashed var(--color-border);
  border-radius: 16px;
  color: var(--color-text-muted);
  grid-column: 1 / -1;
}
.bl-empty strong { display: block; font-family: var(--font-display); font-size: 17px; color: var(--color-text); margin-bottom: 6px; }

/* ─────────────────────────────────────────────────────────
   MOST READ
   ───────────────────────────────────────────────────────── */
.bl-popular {
  padding: 96px 0;
  background: var(--off-white-60);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.bl-pop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bl-pop-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--motion-base) var(--ease-standard);
  position: relative;
  min-height: 240px;
}
.bl-pop-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-100);
}
.bl-pop-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-100);
  opacity: 0.85;
}
.bl-pop-card .cat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}
.bl-pop-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.bl-pop-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex: 1;
}
.bl-pop-card .cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.bl-pop-card:hover .cta { color: var(--green-100); }

/* ─────────────────────────────────────────────────────────
   HELP + SAMPLE REPORTS (shared two-col)
   ───────────────────────────────────────────────────────── */
.bl-twoup {
  padding: 96px 0;
}
.bl-twoup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bl-cta-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.bl-cta-card.dark {
  background: var(--gradient-deep, linear-gradient(180deg, #0E3B2E 0%, #071A12 100%));
  color: #fff;
  border-color: transparent;
}
.bl-cta-card.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 320px at 100% 0%, rgba(97,206,112,0.15), transparent 58%);
  pointer-events: none;
}
.bl-cta-card > * { position: relative; z-index: 1; }
.bl-cta-card .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--green-20);
  color: #1E7A2B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-cta-card.dark .ic {
  background: rgba(127,212,142,0.18);
  color: #7FD48E;
}
.bl-cta-card .ic svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.bl-cta-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.018em;
  line-height: 1.15;
}
.bl-cta-card.dark h3 { color: #fff; }
.bl-cta-card p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}
.bl-cta-card.dark p { color: rgba(255,255,255,0.78); }
.bl-cta-card .btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* ─────────────────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────────────────── */
.bl-final {
  padding: 104px 0;
  background: var(--anthracite-100);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bl-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 85% 50%, rgba(97,206,112,0.14), transparent 58%),
    radial-gradient(ellipse 600px 400px at 15% 100%, rgba(97,206,112,0.06), transparent 55%);
  pointer-events: none;
}
.bl-final .container-wide { position: relative; z-index: 1; }
.bl-final h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 720px;
  margin: 14px auto 16px;
}
.bl-final p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}
.bl-final .btns {
  display: inline-flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────
   Thumbnail art (SVG-based — no stock images)
   ───────────────────────────────────────────────────────── */
.bl-art-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-art-bg.compliance { background: linear-gradient(135deg, #EEF5F1 0%, #D7E8DE 100%); }
.bl-art-bg.inspections { background: linear-gradient(135deg, #E9EEF5 0%, #CFDAEA 100%); }
.bl-art-bg.ai { background: linear-gradient(135deg, #F1ECF6 0%, #DDCFEE 100%); }
.bl-art-bg.housing { background: linear-gradient(135deg, #F5EFE6 0%, #E8D6B8 100%); }
.bl-art-bg.facility { background: linear-gradient(135deg, #E6F1F2 0%, #BFDDE0 100%); }
.bl-art-bg.hospitality { background: linear-gradient(135deg, #F6E8EC 0%, #E6BFCB 100%); }
.bl-art-bg.survey { background: linear-gradient(135deg, #F2EFE8 0%, #DACFB8 100%); }
.bl-art-bg.property { background: linear-gradient(135deg, #EEF3EE 0%, #C9DFC9 100%); }
.bl-art-bg.reports { background: linear-gradient(135deg, #F0F0F4 0%, #CCCCDB 100%); }
.bl-art-bg.updates { background: linear-gradient(135deg, #FAEFE2 0%, #F2D1AC 100%); }
.bl-art-bg svg {
  width: 64%;
  height: 64%;
  stroke: var(--anthracite-80);
  fill: none;
  stroke-width: 1.1;
  opacity: 0.52;
}
.bl-art-bg.dark-glyph svg { stroke: var(--anthracite-100); opacity: 0.42; }

/* ─────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────── */
@media (max-width: 1120px) {
  .bl-featured-grid { grid-template-columns: 1fr 1fr; }
  .bl-ft-card.hero { grid-column: 1 / -1; grid-row: auto; }
  .bl-article-grid, .bl-pop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .bl-hero { padding: 72px 0 48px; }
  .bl-hero h1 { font-size: 40px; }
  .bl-hero p.lead { font-size: 17px; }
  .bl-featured-grid, .bl-article-grid, .bl-pop-grid, .bl-twoup-grid { grid-template-columns: 1fr; }
  .bl-final h2 { font-size: 30px; }
  .bl-section-head h2 { font-size: 28px; }
  .bl-section-head.row { flex-direction: column; align-items: flex-start; }
  .bl-topic-bar { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .bl-topic-pill { flex-shrink: 0; }
}

/* ═════════════════════════════════════════════════════════
   ARTICLE PAGE
   ═════════════════════════════════════════════════════════ */

/* ─── Article header ─── */
.ba-header {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, #FDFDFE, #F5F5F2);
  border-bottom: 1px solid var(--color-border);
}
.ba-crumb {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ba-crumb a { color: var(--color-text-subtle); }
.ba-crumb a:hover { color: var(--green-100); }
.ba-crumb .sep { opacity: 0.4; }
.ba-header .container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}
.ba-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-100);
  background: var(--green-20);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.ba-header h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 780px;
  margin-bottom: 22px;
}
.ba-standfirst {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 720px;
  margin-bottom: 28px;
}
/* "Download playbook" + "Continue reading" buttons — sit between the
 * standfirst paragraph and the meta strip. Inline-flex on phones too;
 * .btn shrink-fitting from the global mobile rule keeps both buttons
 * inside the viewport at iPhone widths. */
.ba-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.ba-actions .btn { display: inline-flex; align-items: center; }
@media (max-width: 540px) {
  .ba-actions { gap: 10px; }
  .ba-actions .btn { flex: 1 1 0; min-width: 0; padding-left: 14px; padding-right: 14px; }
}
/* Anchor scroll-target offset so #ba-content lands below the sticky
 * header instead of being tucked under it. */
#ba-content { scroll-margin-top: 96px; }
.ba-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-subtle);
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}
.ba-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.ba-meta .author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-weight: 600;
}
.ba-meta .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E7A2B, #0E3B2E);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-meta .share {
  margin-left: auto;
  display: flex;
  gap: 6px;
}
.ba-meta .share button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--motion-base) var(--ease-standard);
  color: var(--color-text-muted);
}
.ba-meta .share button:hover {
  border-color: var(--green-100);
  color: var(--green-100);
}
.ba-meta .share svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── Cover art ─── */
.ba-cover {
  max-width: 1100px;
  margin: -4px auto 0;
  padding: 0 32px;
}
.ba-cover-inner {
  aspect-ratio: 16/7;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #EEF5F1 0%, #D7E8DE 100%);
  margin-top: -20px;
  z-index: 2;
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 60px rgba(10,20,40,0.08);
}

/* ─── Body layout: content + sidebar ─── */
.ba-body-section {
  padding: 64px 0 96px;
}
.ba-body-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 72px;
  align-items: start;
}

/* ─── Prose ─── */
.ba-prose {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 720px;
}
.ba-prose > * + * { margin-top: 22px; }
.ba-prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin-top: 48px;
  margin-bottom: 4px;
  scroll-margin-top: 100px;
}
.ba-prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  margin-top: 32px;
  margin-bottom: 2px;
  scroll-margin-top: 100px;
}
.ba-prose p { font-size: 17px; line-height: 1.7; color: var(--color-text); }
.ba-prose a {
  color: var(--green-100);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(30,122,43,0.3);
  text-underline-offset: 3px;
}
.ba-prose a:hover { text-decoration-color: var(--green-100); }
.ba-prose ul, .ba-prose ol {
  padding-left: 24px;
  font-size: 17px;
  line-height: 1.65;
}
.ba-prose ul li, .ba-prose ol li { margin-top: 8px; }
.ba-prose ul li::marker { color: var(--green-100); }
.ba-prose strong { font-weight: 600; color: var(--color-text); }
.ba-prose blockquote {
  margin: 32px 0;
  padding: 20px 28px;
  border-left: 3px solid var(--green-100);
  background: var(--off-white-60);
  border-radius: 0 12px 12px 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--color-text);
  font-style: normal;
}
.ba-prose blockquote p { font-size: 17.5px; }

/* Callout boxes: definition, key-fact */
.ba-callout {
  margin: 32px 0;
  padding: 22px 26px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.ba-callout .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-20);
  color: #1E7A2B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-callout .ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.ba-callout .lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-100);
  display: block;
  margin-bottom: 4px;
}
.ba-callout p { margin: 0; font-size: 15.5px; line-height: 1.55; }

/* Inline conversion modules */
.ba-module {
  margin: 40px 0;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.ba-module::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green-100);
}
.ba-module .ic {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-20);
  color: #1E7A2B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-module .ic svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.ba-module .txt { flex: 1; }
.ba-module .txt .lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-100);
  display: block;
  margin-bottom: 4px;
}
.ba-module .txt p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.ba-module .arrow {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--green-100);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--green-20);
  border: 1px solid rgba(30,122,43,0.15);
  transition: all var(--motion-base) var(--ease-standard);
  white-space: nowrap;
}
.ba-module .arrow:hover {
  background: var(--green-100);
  color: #fff;
  border-color: var(--green-100);
}
.ba-module .arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.25; }

/* Key takeaways */
.ba-takeaways {
  margin: 56px 0 0;
  padding: 32px 36px;
  background: linear-gradient(180deg, var(--off-white-60), #fff);
  border: 1px solid var(--color-border);
  border-radius: 18px;
}
.ba-takeaways h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  line-height: 1.2;
}
.ba-takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ba-takeaways li {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
}
.ba-takeaways li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-20);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231E7A2B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── Sidebar (TOC + share + soft CTA) ─── */
.ba-sidebar {
  position: sticky;
  top: 100px;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ba-toc {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
}
.ba-toc .lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  display: block;
  margin-bottom: 14px;
}
.ba-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: toc;
}
.ba-toc li {
  counter-increment: toc;
}
.ba-toc a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--color-text-muted);
  padding: 8px 10px;
  border-radius: 8px;
  transition: all var(--motion-base) var(--ease-standard);
  border-left: 2px solid transparent;
}
.ba-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--color-text-subtle);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  padding-top: 1px;
}
.ba-toc a:hover {
  color: var(--color-text);
  background: var(--off-white-60);
}
.ba-toc a.active {
  color: var(--green-100);
  background: var(--green-20);
  font-weight: 600;
  border-left-color: var(--green-100);
}

.ba-related-soft {
  padding: 22px 24px;
  background: var(--anthracite-100);
  color: #fff;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.ba-related-soft::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 200px at 100% 0%, rgba(97,206,112,0.18), transparent 58%);
  pointer-events: none;
}
.ba-related-soft > * { position: relative; z-index: 1; }
.ba-related-soft .lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7FD48E;
  display: block;
  margin-bottom: 10px;
}
.ba-related-soft h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 12px;
}
.ba-related-soft p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin-bottom: 16px;
}
.ba-related-soft .btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: #7FD48E;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(127,212,142,0.1);
  border: 1px solid rgba(127,212,142,0.2);
  transition: all var(--motion-base) var(--ease-standard);
}
.ba-related-soft .btn-line:hover {
  background: rgba(127,212,142,0.2);
  border-color: rgba(127,212,142,0.35);
}
.ba-related-soft .btn-line svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.25; }

/* ─── Related resources ─── */
.ba-related {
  padding: 80px 0;
  background: var(--off-white-60);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.ba-related h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 32px;
}

/* ─── Playbook-specific prose patterns ─── */

/* Audience chips */
.ba-audience {
  margin: 28px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ba-audience .chip {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  color: var(--color-text);
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
}

/* Before / after comparison */
.ba-compare {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ba-compare .col {
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: #fff;
}
.ba-compare .col.bad {
  background: #FBF3F2;
  border-color: #EBD3CF;
}
.ba-compare .col.good {
  background: #EFF7F1;
  border-color: #CFE4D4;
}
.ba-compare .hd {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--color-text);
}
.ba-compare .hd .mk {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.ba-compare .bad .mk { background: #C4453A; color: #fff; }
.ba-compare .good .mk { background: var(--green-100); color: #fff; }
.ba-compare ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ba-compare li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: var(--color-text);
}
.ba-compare li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 2px;
  background: var(--color-text-subtle);
  border-radius: 1px;
}
.ba-compare .good li::before { background: var(--green-100); }

/* 3-part decision cards */
.ba-decision {
  margin: 24px 0;
  padding: 24px 26px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
}
.ba-decision h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.012em;
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.ba-decision h4 .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--green-100);
  background: rgba(30,122,43,0.08);
  padding: 3px 10px;
  border-radius: 6px;
}
.ba-decision dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 20px;
  margin: 0;
}
.ba-decision dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  padding-top: 2px;
}
.ba-decision dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-text);
}
.ba-decision dd ul {
  margin: 6px 0 0;
  padding-left: 18px;
}
.ba-decision dd ul li { margin-top: 3px; }

/* Workflow timeline */
.ba-workflow {
  margin: 28px 0;
  padding: 26px 28px;
  background: var(--off-white-60);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}
.ba-workflow .hd {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 16px;
}
.ba-workflow ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: wf;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ba-workflow li {
  counter-increment: wf;
  position: relative;
  padding: 10px 0 10px 48px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-text);
  border-left: 2px solid var(--color-border);
  margin-left: 14px;
}
.ba-workflow li::before {
  content: counter(wf);
  position: absolute;
  left: -14px; top: 10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--green-100);
  color: var(--green-100);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-workflow li:first-child { border-left-color: transparent; }
.ba-workflow li:last-child { border-left-color: transparent; }
.ba-workflow .ft {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* AI callout (distinct from ba-callout) */
.ba-ai {
  margin: 32px 0;
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0E2E17 0%, #173C22 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.ba-ai .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(127,212,142,0.18);
  color: #7FD48E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-ai .ic svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.ba-ai .lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7FD48E;
  display: block;
  margin-bottom: 6px;
}
.ba-ai h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: -0.01em;
}
.ba-ai ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ba-ai li {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  padding-left: 18px;
  position: relative;
}
.ba-ai li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: #7FD48E;
  border-radius: 1px;
}

/* Mid-page CTA band (inside prose) */
.ba-cta-band {
  margin: 48px 0;
  padding: 36px 40px;
  background: var(--green-100);
  color: #fff;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.ba-cta-band::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
  pointer-events: none;
}
.ba-cta-band .lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B9E6C4;
  margin-bottom: 10px;
  display: block;
}
.ba-cta-band h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #fff;
}
.ba-cta-band p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 20px;
  max-width: 560px;
}
.ba-cta-band .btns { display: flex; gap: 10px; flex-wrap: wrap; }
.ba-cta-band .btn-accent-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green-100);
  padding: 11px 20px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform var(--motion-base) var(--ease-standard);
}
.ba-cta-band .btn-accent-light:hover { transform: translateY(-1px); }
.ba-cta-band .btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.35);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
}
.ba-cta-band .btn-ghost-light:hover { background: rgba(255,255,255,0.12); }

/* Responsive for article page ─── */
@media (max-width: 1000px) {
  .ba-body-grid { grid-template-columns: 1fr; gap: 48px; }
  .ba-sidebar { position: static; }
  .ba-cover { padding: 0 20px; }
  .ba-body-grid { padding: 0 20px; }
}
@media (max-width: 640px) {
  .ba-header h1 { font-size: 32px; }
  .ba-standfirst { font-size: 16.5px; }
  .ba-cover-inner { aspect-ratio: 4/3; margin-top: -32px; }
  .ba-prose h2 { font-size: 24px; }
  .ba-module { flex-direction: column; align-items: flex-start; text-align: left; }
  .ba-module .arrow { align-self: stretch; justify-content: center; }
  .ba-compare { grid-template-columns: 1fr; }
  .ba-decision dl { grid-template-columns: 1fr; gap: 4px; }
  .ba-decision dt { padding-top: 10px; }
  .ba-cta-band { padding: 28px 24px; }
  .ba-cta-band h3 { font-size: 22px; }
  .ba-ai { grid-template-columns: 1fr; }
}

/* ─── Standard post template (bp-*) ─── */
.bp-header { padding: 120px 0 32px; }
.bp-header .container-narrow { max-width: 780px; margin: 0 auto; padding: 0 32px; }
.bp-crumb { font-family: var(--font-body); font-size: 13px; color: var(--color-text-subtle); margin-bottom: 20px; }
.bp-crumb a { color: var(--color-text-subtle); text-decoration: none; border-bottom: 1px solid transparent; }
.bp-crumb a:hover { color: var(--green-100); border-color: var(--green-100); }
.bp-crumb .sep { margin: 0 8px; opacity: 0.5; }
.bp-cat { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-100); padding: 6px 12px; background: rgba(30,122,43,0.08); border-radius: 999px; margin-bottom: 16px; }
.bp-header h1 { font-family: var(--font-display); font-weight: 600; font-size: 44px; line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 20px; color: var(--color-text); }
.bp-standfirst { font-size: 19px; line-height: 1.55; color: var(--color-text-muted); margin: 0 0 28px; font-weight: 400; }
.bp-byline { display: flex; align-items: center; gap: 14px; padding: 20px 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.bp-byline .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--anthracite-100), var(--anthracite-80)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.03em; flex-shrink: 0; }
.bp-byline .who { flex: 1; }
.bp-byline .who .name { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--color-text); }
.bp-byline .who .role { font-size: 13px; color: var(--color-text-subtle); }
.bp-byline .meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--color-text-subtle); }
.bp-byline .meta .dot { width: 3px; height: 3px; background: var(--color-text-subtle); border-radius: 50%; opacity: 0.5; }

/* Featured image placeholder — sits between header and body */
.bp-feature {
  max-width: 1100px;
  margin: 32px auto 0;
  padding: 0 32px;
}
.bp-feature-inner {
  aspect-ratio: 16 / 8;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #F1F4F0 0%, #E7EDE8 100%);
  border: 1px dashed #C6D1C9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bp-feature-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(30,122,43,0.04) 18px 19px);
  pointer-events: none;
}
/* When a real featured image is present, show it full-width at its natural aspect ratio. */
.bp-feature-inner.has-image { aspect-ratio: auto; background: none; border: none; padding: 0; }
.bp-feature-inner.has-image::before { display: none; }
.bp-feature-img { display: block; width: 100%; height: auto; border-radius: 20px; }
.bp-feature-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--color-text-subtle);
  font-family: var(--font-display);
}
.bp-feature-ph svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  opacity: 0.55;
}
.bp-feature-ph .ph-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.bp-feature-ph .ph-hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-subtle);
  opacity: 0.75;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 640px) {
  .bp-feature { padding: 0 20px; margin-top: 20px; }
  .bp-feature-inner { aspect-ratio: 4/3; border-radius: 14px; }
  .bp-feature-ph svg { width: 36px; height: 36px; }
}

/* Body layout: content + share rail */
.bp-body { padding: 48px 0 72px; }
.bp-body-grid { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 60px 1fr; gap: 48px; align-items: start; }
.bp-share-rail { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 10px; }
.bp-share-rail .lbl { font-family: var(--font-display); font-weight: 600; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-subtle); writing-mode: vertical-rl; transform: rotate(180deg); margin-bottom: 10px; align-self: center; }
.bp-share-rail a,
.bp-share-rail button { width: 40px; height: 40px; padding: 0; border-radius: 50%; border: 1px solid var(--color-border); background: #fff; color: var(--color-text-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; text-decoration: none; transition: all var(--motion-base) var(--ease-standard); }
.bp-share-rail a:hover,
.bp-share-rail button:hover { background: var(--green-100); color: #fff; border-color: var(--green-100); transform: translateY(-1px); }
.bp-share-rail a svg,
.bp-share-rail button svg { width: 16px; height: 16px; stroke: currentColor; fill: currentColor; }
.bp-share-rail .readtime { margin-top: 16px; font-family: var(--font-display); font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-subtle); writing-mode: vertical-rl; transform: rotate(180deg); align-self: center; }

/* Prose column: same as ba-prose but cleaner, content-agnostic */
.bp-content { max-width: 740px; font-family: var(--font-body); font-size: 17.5px; line-height: 1.7; color: var(--color-text); }
.bp-content > *:first-child { margin-top: 0; }
.bp-content > p, .bp-content > ul, .bp-content > ol { margin: 0 0 22px; }
.bp-content > p:last-child, .bp-content > ul:last-child, .bp-content > ol:last-child { margin-bottom: 0; }
.bp-content p, .bp-content ul, .bp-content ol { font-size: 17.5px; line-height: 1.7; }
.bp-content h2, .bp-content h3, .bp-content h4 { font-family: var(--font-display); letter-spacing: -0.015em; }
.bp-content h2 { font-weight: 600; font-size: 28px; line-height: 1.2; margin: 48px 0 16px; }
.bp-content h3 { font-weight: 600; font-size: 21px; line-height: 1.3; margin: 36px 0 12px; }
.bp-content h4 { font-weight: 600; font-size: 17px; margin: 28px 0 8px; }
.bp-content img { max-width: 100%; height: auto; border-radius: 14px; margin: 36px 0; display: block; box-shadow: 0 12px 28px rgba(10,20,40,0.08); }
.bp-content blockquote { margin: 36px 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--green-100); font-family: var(--font-display); font-weight: 500; font-size: 20px; line-height: 1.45; letter-spacing: -0.01em; color: var(--color-text); font-style: normal; }
.bp-content blockquote p { margin: 0; }
.bp-content blockquote cite { display: block; margin-top: 12px; font-family: var(--font-body); font-style: normal; font-size: 14px; color: var(--color-text-subtle); font-weight: 400; letter-spacing: 0; }
.bp-content a { color: var(--green-text); text-decoration: underline; text-decoration-color: rgba(30,122,43,0.35); text-underline-offset: 3px; }
.bp-content ul, .bp-content ol { padding-left: 24px; }
.bp-content ul li, .bp-content ol li { margin-top: 6px; }
.bp-content ul li::marker { color: var(--green-100); }
.bp-content strong { font-weight: 600; }

/* Key takeaways — sits inside prose, applies to every post */
.bp-takeaways { margin: 48px 0; padding: 28px 32px; background: linear-gradient(135deg, #EEF5F1 0%, #F8FBF9 100%); border: 1px solid #D7E8DE; border-radius: 16px; }
.bp-takeaways .lbl { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-100); margin-bottom: 14px; }
.bp-takeaways .lbl svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.bp-takeaways h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0 0 14px; letter-spacing: -0.01em; }
.bp-takeaways ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15.5px; line-height: 1.55; }
.bp-takeaways li { padding-left: 28px; position: relative; }
.bp-takeaways li::before { content: ''; position: absolute; left: 0; top: 7px; width: 16px; height: 9px; border-left: 2px solid var(--green-100); border-bottom: 2px solid var(--green-100); transform: rotate(-45deg); }

/* Inline CTA module — consistent across posts */
.bp-cta-inline { margin: 48px 0; padding: 28px 32px; background: var(--anthracite-100); color: #fff; border-radius: 16px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; position: relative; overflow: hidden; }
.bp-cta-inline::before { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(127,212,142,0.18), transparent 70%); pointer-events: none; }
.bp-cta-inline .lbl { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #7FD48E; margin-bottom: 8px; display: block; }
.bp-cta-inline h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: #fff; margin: 0 0 6px; letter-spacing: -0.012em; }
.bp-cta-inline p { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,0.72); margin: 0; max-width: 440px; }
.bp-cta-inline .btn-light { display: inline-flex; align-items: center; gap: 8px; background: var(--green-100); color: #fff; padding: 12px 22px; border-radius: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; text-decoration: none; white-space: nowrap; transition: transform var(--motion-base) var(--ease-standard); }
.bp-cta-inline .btn-light:hover { transform: translateY(-1px); }
.bp-cta-inline .btn-light svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.25; }

/* Tags row */
.bp-tags { margin: 48px 0 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.bp-tags .lbl { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-subtle); margin-right: 6px; }
.bp-tags a { font-size: 13px; color: var(--color-text); padding: 6px 12px; border: 1px solid var(--color-border); border-radius: 999px; text-decoration: none; background: #fff; transition: all var(--motion-base) var(--ease-standard); }
.bp-tags a:hover { border-color: var(--green-100); color: var(--green-100); }

/* Author bio card */
.bp-author { margin: 56px 0 0; padding: 32px; background: var(--off-white-60); border: 1px solid var(--color-border); border-radius: 18px; display: grid; grid-template-columns: 72px 1fr auto; gap: 22px; align-items: start; }
.bp-author .avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--anthracite-100), var(--anthracite-80)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 22px; }
.bp-author .info .lbl { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-subtle); display: block; margin-bottom: 6px; }
.bp-author .info .name { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--color-text); margin: 0 0 4px; letter-spacing: -0.01em; }
.bp-author .info .role { font-size: 14px; color: var(--color-text-subtle); margin: 0 0 10px; }
.bp-author .info p { font-size: 14.5px; line-height: 1.55; color: var(--color-text-muted); margin: 0; max-width: 520px; }
.bp-author .follow { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.bp-author .follow a { width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-text-muted); text-decoration: none; transition: all var(--motion-base) var(--ease-standard); }
.bp-author .follow a:hover { color: var(--green-100); border-color: var(--green-100); }
.bp-author .follow a svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }

/* Newsletter inline strip */
.bp-newsletter { margin: 80px 0 0; padding: 48px; background: linear-gradient(135deg, #EEF5F1 0%, #E5F0EA 100%); border-radius: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.bp-newsletter .lbl { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-100); margin-bottom: 12px; }
.bp-newsletter .lbl .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-100); box-shadow: 0 0 0 4px rgba(30,122,43,0.14); }
.bp-newsletter h3 { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin: 0 0 10px; letter-spacing: -0.015em; line-height: 1.2; }
.bp-newsletter p { font-size: 15px; line-height: 1.55; color: var(--color-text-muted); margin: 0; }
.bp-newsletter form { display: flex; flex-direction: column; gap: 12px; }
.bp-newsletter .row { display: flex; gap: 8px; background: #fff; border: 1px solid #CFE4D4; border-radius: 12px; padding: 6px; }
.bp-newsletter input { flex: 1; border: 0; background: transparent; padding: 10px 14px; font-family: var(--font-body); font-size: 15px; color: var(--color-text); outline: none; }
.bp-newsletter input::placeholder { color: var(--color-text-subtle); }
.bp-newsletter button { background: var(--green-100); color: #fff; border: 0; padding: 11px 22px; border-radius: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; cursor: pointer; transition: transform var(--motion-base) var(--ease-standard); }
.bp-newsletter button:hover { transform: translateY(-1px); }
.bp-newsletter .fine { font-size: 12px; color: var(--color-text-subtle); margin: 0; }

/* Next / Prev nav */
.bp-prevnext { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.bp-prevnext a { padding: 28px 0; font-family: var(--font-display); text-decoration: none; color: var(--color-text); transition: background var(--motion-base) var(--ease-standard); }
.bp-prevnext a:hover { background: var(--off-white-60); }
.bp-prevnext a.prev { padding-left: 4px; border-right: 1px solid var(--color-border); padding-right: 28px; }
.bp-prevnext a.next { padding-left: 28px; padding-right: 4px; text-align: right; }
.bp-prevnext .dir { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-subtle); margin-bottom: 8px; }
.bp-prevnext a.next .dir { justify-content: flex-end; }
.bp-prevnext .dir svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.25; }
.bp-prevnext .ttl { font-weight: 600; font-size: 17px; line-height: 1.3; letter-spacing: -0.012em; }
.bp-prevnext a:hover .ttl { color: var(--green-100); }
.bp-prevnext a.prev.disabled, .bp-prevnext a.next.disabled { opacity: 0.4; pointer-events: none; }

/* Responsive */
@media (max-width: 900px) {
  .bp-body-grid { grid-template-columns: 1fr; gap: 0; padding: 0 24px; }
  .bp-share-rail { position: static; flex-direction: row; margin-bottom: 24px; align-items: center; }
  .bp-share-rail .lbl, .bp-share-rail .readtime { writing-mode: horizontal-tb; transform: none; margin: 0; }
  .bp-newsletter { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .bp-cta-inline { grid-template-columns: 1fr; }
  .bp-author { grid-template-columns: 64px 1fr; }
  .bp-author .follow { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; }
  .bp-prevnext { grid-template-columns: 1fr; }
  .bp-prevnext a.prev { border-right: 0; border-bottom: 1px solid var(--color-border); padding-right: 0; }
  .bp-prevnext a.next { padding-left: 0; text-align: left; }
  .bp-prevnext a.next .dir { justify-content: flex-start; }
  .bp-header h1 { font-size: 32px; }
  .bp-header { padding: 96px 0 24px; }
}

/* Responsive for article page ─── */
@media (max-width: 1000px) {
  .ba-body-grid { grid-template-columns: 1fr; gap: 48px; }
  .ba-sidebar { position: static; }
  .ba-cover { padding: 0 20px; }
  .ba-body-grid { padding: 0 20px; }
}
@media (max-width: 640px) {
  .ba-header h1 { font-size: 32px; }
  .ba-standfirst { font-size: 16.5px; }
  .ba-cover-inner { aspect-ratio: 4/3; margin-top: -32px; }
  .ba-prose h2 { font-size: 24px; }
  .ba-module { flex-direction: column; align-items: flex-start; text-align: left; }
  .ba-module .arrow { align-self: stretch; justify-content: center; }
  .ba-compare { grid-template-columns: 1fr; }
  .ba-decision dl { grid-template-columns: 1fr; gap: 4px; }
  .ba-decision dt { padding-top: 10px; }
  .ba-cta-band { padding: 28px 24px; }
  .ba-cta-band h3 { font-size: 22px; }
  .ba-ai { grid-template-columns: 1fr; }
}
