/* ============================================================
   MARKETING PAGES — /for/* + /vs/* — aligned to brand v3 (2026-04-28)
   The renderer in custom-route.php emits .mk-* classes; this stylesheet
   maps them to the v3 design language defined in DESIGN-SYSTEM.md.
   ============================================================ */

/* No body cream flip — homepage is white, inner pages are white */
body.inner-page { background: var(--white); color: var(--ink); }
body.inner-page main { display: block; --font-logo: var(--font-h); }
.marketing-main { padding: 0; counter-reset: feas-sec; }

.mk-inner { max-width: 1080px; margin: 0 auto; padding: 0 2rem; } /* July canon: homepage --wrap */
@media (max-width: 720px) { .mk-inner { padding: 0 20px; } }

/* ===== EYEBROWS ===== */
.mk-eyebrow {
  /* July canon: homepage .eyebrow — smaller, wider-tracked, AA-contrast grey */
  font-family: var(--font-m); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500); margin: 0 0 1.1rem;
}
.mk-eyebrow-red { color: var(--grey-500); }

/* Section H2s on /for/ + /vs/ pages — homepage sec-h language */
.mk-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

/* ===== STRIPPED MASTHEAD ===== */
.mk-masthead { display: none; }

/* ===== HERO ===== */
.mk-hero {
  position: relative; background: var(--white);
  padding: 80px 0 100px; isolation: isolate; overflow: hidden;
}
.mk-hero::before {
  content: ''; position: absolute; inset: -40px;
  background-image:
    linear-gradient(to right, rgba(15,17,21,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,17,21,0.06) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none; z-index: -1;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 25% 50%, black 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 25% 50%, black 0%, transparent 75%);
}
.mk-hero::after {
  content: ''; position: absolute; top: 35%; left: 8%;
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  z-index: -1;
  animation: mkHeroDot 2.6s ease-in-out infinite;
}
@keyframes mkHeroDot {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); box-shadow: 0 0 0 6px rgba(200,41,46,0.15); }
}
.mk-hero .mk-inner { position: relative; z-index: 1; }

.mk-h1 {
  font-family: var(--font-h);
  /* July canon (DESIGN.md): 900 @ 3.5rem, matching the homepage's weight language */
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 1rem;
  max-width: 800px;
}
.mk-h1 em {
  /* No italic in headings (DESIGN-SYSTEM anti-pattern §15.3) — markup keeps
     the <em> for emphasis semantics, rendering stays roman ink. */
  font-family: var(--font-h);
  font-style: normal;
  font-weight: 900;
  color: var(--ink);
  background: none;
}
.mk-h1 em::after { display: none; }

.mk-subhead {
  font-family: var(--font-h);
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--grey-700);
  max-width: 600px;
  margin: 0 0 1.25rem;
  border: 0; padding: 0;
}

.mk-cta-row { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; margin-top: 1.5rem; }

.mk-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.01em; border-radius: 0;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.mk-btn-primary { background: var(--ink); color: var(--white); border: 1px solid var(--ink); }
.mk-btn-primary:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.mk-btn-large { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
.mk-btn-text {
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.01em; text-transform: none;
  color: var(--grey-500);
  border-bottom: 1px solid var(--grey-300);
  text-decoration: none; padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}
.mk-btn-text:hover { color: var(--ink); border-color: var(--ink); }

/* ===== SECTIONS — alternating white / cream ===== */
.mk-personas, .mk-pain, .mk-solution, .mk-workflow, .mk-faq,
.mk-compare, .mk-when, .mk-closing {
  padding: 110px 0; background: var(--white); position: relative;
  counter-increment: feas-sec; border-bottom: 0;
}
.mk-pain, .mk-solution, .mk-workflow, .mk-when {
  border-top: 1px solid var(--grey-200);
}
.mk-personas { background: var(--white); }
.mk-solution, .mk-faq, .mk-when { background: var(--ground); }
.mk-personas::before, .mk-pain::before, .mk-solution::before,
.mk-workflow::before, .mk-faq::before, .mk-compare::before,
.mk-when::before, .mk-closing::before { display: none; }

.mk-personas::after, .mk-pain::after, .mk-solution::after,
.mk-workflow::after, .mk-faq::after, .mk-compare::after,
.mk-when::after, .mk-closing::after {
  content: '\00a7  ' counter(feas-sec, decimal-leading-zero);
  position: absolute; top: 32px; right: 32px;
  font-family: var(--font-m); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-400); opacity: 0.6;
}

.mk-personas .mk-eyebrow + *,
.mk-pain .mk-eyebrow + *,
.mk-solution .mk-eyebrow + *,
.mk-workflow .mk-eyebrow + *,
.mk-faq .mk-eyebrow + *,
.mk-compare .mk-eyebrow + *,
.mk-when .mk-eyebrow + *,
.mk-closing .mk-eyebrow + * {
  font-family: var(--font-h);
  /* July canon: homepage sec-h language */
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--ink);
  max-width: 760px;
  margin: 0 0 1rem;
}

/* ===== /for/ INDEX persona cards ===== */
.mk-persona-grid {
  display: grid; grid-template-columns: 1fr;
  border: 1px solid var(--grey-200); margin-top: 1rem;
}
.mk-persona-card {
  display: grid; grid-template-columns: 80px 1.7fr 1.4fr auto;
  gap: 2rem; padding: 1.75rem 2rem;
  border-top: 1px solid var(--grey-200);
  align-items: center; text-decoration: none; color: inherit;
  transition: background 0.2s;
}
.mk-persona-card:first-child { border-top: 0; }
/* Hover feedback: background tint + CTA colour — no padding nudge (layout-thrash). */
.mk-persona-card:hover { background: var(--ground); }
.mk-persona-card:hover .mk-persona-cta { color: var(--ink); }
@media (max-width: 900px) { .mk-persona-card { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem; } }
.mk-persona-card .mk-eyebrow { margin: 0; color: var(--grey-500); }
.mk-persona-title {
  font-family: var(--font-h);
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.3;
  color: var(--ink); margin: 0;
}
.mk-persona-lede {
  font-family: var(--font-h);
  font-size: 0.92rem; color: var(--grey-700);
  line-height: 1.6; margin: 0; max-width: 520px;
}
.mk-persona-cta {
  font-family: var(--font-m); font-size: 0.65rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-500); white-space: nowrap;
  transition: color 0.2s;
}

/* ===== PAIN — numbered steps ===== */
.mk-steps { list-style: none; padding: 0; margin: 1rem 0 0; }
.mk-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 2rem;
  padding: 1.75rem 0; border-top: 1px solid var(--grey-200);
}
.mk-step:first-child { border-top: 1px solid var(--grey-200); }
.mk-step:last-child { border-bottom: 1px solid var(--grey-200); }
@media (max-width: 720px) { .mk-step { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 0; } }
.mk-step-num {
  font-family: var(--font-m); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-500);
  padding-top: 0.25rem;
}
.mk-step-num::before { content: 'P. '; }
.mk-step-body { max-width: 760px; }
.mk-step-title {
  font-family: var(--font-h); font-style: normal;
  font-size: 1.05rem; font-weight: 600; letter-spacing: -0.015em;
  line-height: 1.35; color: var(--ink); margin: 0 0 0.5rem;
}
.mk-step-text {
  font-family: var(--font-h);
  margin: 0; color: var(--grey-700);
  font-size: 0.92rem; line-height: 1.7;
}

/* ===== SOLUTION feature grid ===== */
.mk-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--grey-200);
  background: var(--white); margin-top: 1rem;
}
.mk-feature {
  background: var(--white); padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  position: relative;
}
.mk-feature::before {
  content: '+'; position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-m); color: var(--grey-300);
  font-weight: 500; font-size: 0.95rem;
}
.mk-feature-title {
  font-family: var(--font-h); font-weight: 600;
  margin: 0 0 0.5rem; color: var(--ink);
  font-size: 1rem; letter-spacing: -0.015em;
  padding-right: 1.5rem; line-height: 1.35;
}
.mk-feature-text {
  font-family: var(--font-h); margin: 0;
  color: var(--grey-700); font-size: 0.88rem; line-height: 1.65;
}

/* ===== WORKFLOW before/after ===== */
.mk-workflow-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--grey-200); margin-top: 1rem;
}
@media (max-width: 720px) { .mk-workflow-grid { grid-template-columns: 1fr; } }
.mk-workflow-col { background: var(--white); padding: 1.875rem 2rem; }
.mk-workflow-col + .mk-workflow-col { border-left: 1px solid var(--grey-200); background: var(--ground); }
@media (max-width: 720px) { .mk-workflow-col + .mk-workflow-col { border-left: 0; border-top: 1px solid var(--grey-200); } }
.mk-workflow-label {
  font-family: var(--font-m); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey-500); margin: 0 0 0.625rem;
}
.mk-workflow-time {
  font-family: var(--font-h); font-style: normal;
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.025em;
  color: var(--ink); margin: 0 0 1.25rem; line-height: 1;
}
.mk-workflow-steps {
  margin: 0; padding: 0; list-style: none;
  font-family: var(--font-h); font-size: 0.88rem; line-height: 1.6;
  color: var(--grey-700); counter-reset: wf;
}
.mk-workflow-steps li {
  margin: 0; padding: 0.5rem 0 0.5rem 1.875rem;
  border-top: 1px dashed var(--grey-200);
  position: relative; counter-increment: wf;
}
.mk-workflow-steps li:first-child { border-top: 0; }
.mk-workflow-steps li::before {
  content: counter(wf, decimal-leading-zero);
  position: absolute; left: 0; top: 0.55rem;
  font-family: var(--font-m); font-size: 0.62rem;
  letter-spacing: 0.12em; color: var(--grey-500);
}

/* ===== FAQ ===== */
.mk-faq-list { display: grid; gap: 0; counter-reset: fnct; margin-top: 1rem; }
.mk-faq-q {
  counter-increment: fnct;
  border-top: 1px solid var(--grey-200);
  padding: 1.75rem 0 0.5rem 80px;
  position: relative;
  font-family: var(--font-h); font-style: normal; font-weight: 600;
  color: var(--ink); font-size: 1.05rem;
  letter-spacing: -0.015em; line-height: 1.4; margin: 0;
}
.mk-faq-q::before {
  content: 'F. ' counter(fnct, decimal-leading-zero);
  position: absolute; left: 0; top: 1.875rem;
  font-family: var(--font-m); font-style: normal;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey-500);
}
.mk-faq-q:first-child { border-top: 1px solid var(--grey-200); }
.mk-faq-a {
  margin: 0 0 1.5rem 80px;
  font-family: var(--font-h); color: var(--grey-700);
  font-size: 0.92rem; line-height: 1.7; max-width: 760px;
}
.mk-faq-list dd:last-of-type {
  border-bottom: 1px solid var(--grey-200);
  padding-bottom: 1.75rem; margin-bottom: 0;
}
@media (max-width: 720px) {
  .mk-faq-q { padding-left: 0; padding-top: 3.25rem; }
  .mk-faq-q::before { top: 1.5rem; left: 0; }
  .mk-faq-a { margin-left: 0; }
}

/* ===== COMPARE TABLE (vs/* pages) ===== */
.mk-compare-prompt {
  font-family: var(--font-h); font-style: normal;
  font-size: 1.05rem; color: var(--grey-700);
  margin: 0 0 2.5rem; padding: 0;
  border: 0; max-width: 720px; line-height: 1.7;
}
.mk-compare-table { width: 100%; border-collapse: collapse; font-family: var(--font-m); font-size: 0.8rem; margin-top: 1rem; }
.mk-compare-table thead th {
  font-family: var(--font-m); text-transform: uppercase;
  font-size: 0.65rem; letter-spacing: 0.16em; text-align: left;
  padding: 1rem 0.875rem; border-bottom: 1px solid var(--ink);
  background: transparent; color: var(--grey-500);
  font-weight: 500; vertical-align: bottom;
}
.mk-compare-table .mk-compare-feas { color: var(--ink); padding-left: 0.875rem; }
.mk-compare-table tbody tr { border-bottom: 1px solid var(--grey-200); }
.mk-compare-cat {
  font-family: var(--font-h); font-weight: 500;
  color: var(--ink); padding: 0.875rem 0.875rem 0.875rem 0;
  vertical-align: top; width: 28%; font-size: 0.95rem;
  text-align: left; letter-spacing: -0.015em;
}
.mk-compare-alt-cell, .mk-compare-feas-cell {
  font-family: var(--font-m); padding: 0.875rem;
  color: var(--grey-700); vertical-align: top; line-height: 1.6;
  font-size: 0.85rem;
}
.mk-compare-feas-cell { background: transparent; color: var(--ink); }
.mk-compare-feas-cell::before { content: '\25cf  '; color: var(--ink); margin-right: 4px; font-size: 0.7em; }
.mk-compare-alt-cell::before { content: '\2014  '; color: var(--grey-300); margin-right: 4px; }

@media (max-width: 720px) {
  .mk-compare-table, .mk-compare-table tbody, .mk-compare-table tr,
  .mk-compare-table th, .mk-compare-table td { display: block; width: 100%; }
  .mk-compare-table thead { display: none; }
  .mk-compare-table tbody tr { padding: 1rem 0; border-top: 1px solid var(--ink); border-bottom: 0; }
  .mk-compare-cat { padding: 0 0 0.5rem; font-size: 0.95rem; }
  .mk-compare-alt-cell, .mk-compare-feas-cell { padding: 0.4rem 0; width: 100%; }
}

/* ===== WHEN TO USE EACH ===== */
.mk-when-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--grey-200); background: var(--white); margin-top: 1rem;
}
@media (max-width: 720px) { .mk-when-grid { grid-template-columns: 1fr; } }
.mk-when-col { background: var(--white); padding: 1.875rem 2rem; }
.mk-when-col + .mk-when-col { border-left: 1px solid var(--grey-200); background: var(--ground); }
@media (max-width: 720px) { .mk-when-col + .mk-when-col { border-left: 0; border-top: 1px solid var(--grey-200); } }
.mk-when-feas { background: var(--ground) !important; }
.mk-when-feas .mk-when-label, .mk-when-feas .mk-when-list { color: var(--ink); }
.mk-when-feas .mk-when-list li::before { color: var(--grey-400); }
.mk-when-label {
  font-family: var(--font-m); text-transform: uppercase;
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em;
  margin: 0 0 0.875rem; color: var(--grey-500);
}
.mk-when-list {
  margin: 0; padding: 0; list-style: none;
  color: var(--grey-700); font-family: var(--font-h);
  font-size: 0.88rem; line-height: 1.6;
}
.mk-when-list li {
  margin: 0; padding: 0.5rem 0 0.5rem 1.25rem;
  position: relative; border-top: 1px dashed var(--grey-200);
}
.mk-when-list li:first-child { border-top: 0; }
.mk-when-list li::before {
  content: '+'; position: absolute; left: 0; top: 0.5rem;
  font-family: var(--font-m); font-weight: 500; color: var(--grey-400);
}

/* ===== CLOSING NOTES ===== */
.mk-closing-steps { margin: 1rem 0 0; padding: 0; list-style: none; counter-reset: closing; }
.mk-closing-steps li {
  counter-increment: closing;
  padding: 1.5rem 0 1.5rem 80px;
  border-top: 1px solid var(--grey-200);
  font-family: var(--font-h); font-style: normal;
  font-size: 0.95rem; letter-spacing: 0;
  line-height: 1.7; color: var(--grey-700);
  position: relative; max-width: 920px;
}
.mk-closing-steps li:first-child { border-top: 1px solid var(--grey-200); }
.mk-closing-steps li:last-child { border-bottom: 1px solid var(--grey-200); margin-bottom: 0; }
.mk-closing-steps li::before {
  content: 'C. ' counter(closing, decimal-leading-zero);
  position: absolute; left: 0; top: 1.5rem;
  font-family: var(--font-m); font-style: normal;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey-500);
}
.mk-closing-steps li strong { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) {
  .mk-closing-steps li { padding-left: 0; padding-top: 3rem; }
  .mk-closing-steps li::before { top: 1.5rem; }
}

/* ===== FINAL CTA — plain section, no card, no rotated stamp ===== */
.mk-final-cta {
  position: relative;
  padding: 110px 0 130px;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--grey-200);
  text-align: left;
  overflow: visible;
  counter-increment: feas-sec;
}
.mk-final-cta::before { display: none; }
.mk-final-cta::after {
  content: '\00a7  ' counter(feas-sec, decimal-leading-zero);
  position: absolute; top: 32px; right: 32px;
  font-family: var(--font-m); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-400); opacity: 0.6;
}
.mk-final-cta .mk-inner {
  position: relative; z-index: 1; max-width: 960px;
  display: block; padding: 0 2rem;
}

.mk-final-h2 {
  font-family: var(--font-h);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--ink);
  max-width: 560px;
}
.mk-final-h2 em {
  /* No italic in headings (DESIGN-SYSTEM §15.3) — roman, weight carries emphasis */
  font-family: var(--font-h);
  font-style: normal;
  font-weight: 900;
  color: var(--ink);
}
.mk-final-text {
  font-family: var(--font-h);
  color: var(--grey-700);
  margin: 0 0 1.5rem;
  font-size: 0.95rem; line-height: 1.7;
  max-width: 440px;
}
.mk-final-cta .mk-btn-primary { background: var(--ink); border-color: var(--ink); }
.mk-final-cta .mk-btn-primary:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* Hide the rotated red stamp from the renderer */
.mk-final-stamp { display: none; }

/* ===== Marketing footer (5-col dark) inherits from base.css .feasibly-footer ===== */

/* ============ PERSONA ENVELOPE CARD ============
   Added 2026-07-31. The six /for/* pages described the response and never showed one —
   zero illustration across all of them. This renders a REAL answer for the accuracy
   golden-set parcel, so it is verified by check:claims rather than being a mockup.
   Deliberately shows the confidence MIX: one Verified row among VPP defaults is a more
   honest and more persuasive demonstration than seven green ticks. */
body .env-card {
  margin: 2rem 0 0; padding: 0; border: 1px solid var(--ink); background: var(--white);
}
body .env-head {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; align-items: baseline;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--grey-200); background: var(--ground);
}
body .env-addr { font-family: var(--font-h); font-weight: 700; color: var(--ink); font-size: 0.98rem; }
body .env-zone { font-family: var(--font-m); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--grey-500); }
body .env-grid { margin: 0; padding: 0; }
body .env-row {
  display: grid; grid-template-columns: 10rem 6rem 1fr auto; gap: 0.75rem;
  align-items: baseline; padding: 0.7rem 1.25rem; border-bottom: 1px solid var(--grey-200);
}
body .env-row:last-child { border-bottom: 0; }
body .env-row dt { font-size: 0.88rem; color: var(--grey-700); margin: 0; }
body .env-row dd { margin: 0; }
body .env-v { font-family: var(--font-h); font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
body .env-c { font-family: var(--font-m); font-size: 0.66rem; color: var(--grey-500); }
body .env-b {
  font-family: var(--font-m); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey-500); border: 1px solid currentColor;
  padding: 0.15rem 0.4rem; white-space: nowrap;
}
body .env-b.ok { color: var(--tier-verified); }
body .env-b.warn { color: var(--tier-extract-ink); }
body .env-foot {
  margin: 0; padding: 0.9rem 1.25rem; font-size: 0.8rem; line-height: 1.6;
  color: var(--grey-700); background: var(--ground); border-top: 1px solid var(--grey-200);
}
@media (max-width: 720px) {
  body .env-row { grid-template-columns: 1fr auto; row-gap: 0.25rem; }
  body .env-row .env-c { grid-column: 1 / -1; }
  body .env-row .env-b { grid-column: 2; grid-row: 1; }
}

/* ── Hero art (2026-08-04) — editorial-cartographic artwork on the hero's right.
   Persona + vs pages only; the homepage stays deliberately type-led. Art is
   exactly 800×1000 (width/height attrs true → zero CLS) and hidden under 960px:
   the 390px pass stays lean and the copy keeps first position. ── */
.mk-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}
.mk-hero-copy { min-width: 0; } /* grid child: long headlines must wrap, not blow the track */
.mk-hero-art {
  margin: 0;
  border: 2px solid var(--ink);
  background: var(--white);
}
.mk-hero-art img { display: block; width: 100%; height: auto; }
.mk-hero-art figcaption {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--grey-500);
  border-top: 2px solid var(--ink);
  padding: 8px 12px;
  background: var(--ground);
}
@media (max-width: 959px) {
  .mk-hero-grid { display: block; margin-top: 0; }
  .mk-hero-art { display: none; }
}
