/* ==========================================================================
   Problem Framing page — scoped under .page-problem-framing
   Reuses design-system tokens; adds the two-column hero + prose helpers.
   ========================================================================== */

/* -------------------------------------------------------------- Hero ----- */
.page-problem-framing .pf-hero { padding-bottom: 64px; }

.page-problem-framing .pf-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.page-problem-framing .pf-hero-text .accent { margin-bottom: 0.9em; }
.page-problem-framing .pf-hero-text .hero-title { margin-bottom: 0; }

.page-problem-framing .pf-hero-media { display: flex; justify-content: flex-end; }
.page-problem-framing .pf-hero-img { width: 100%; height: auto; }
.page-problem-framing .pf-hero-img--mobile { display: none; }

/* -------------------------------------------------------------- Prose ---- */
.page-problem-framing .pf-prose .lead {
  font-size: 18px;
  color: var(--grey);
  max-width: 760px;
  margin-bottom: 0.4em;
}
.page-problem-framing .pf-prose .muted { max-width: 760px; }
.page-problem-framing .section--dark.pf-prose .lead { color: rgba(255, 255, 255, 0.62); }

/* Key questions — styled as emphasised callouts */
.page-problem-framing .pf-questions {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  max-width: 760px;
}
.page-problem-framing .pf-questions li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
.page-problem-framing .pf-questions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}
.page-problem-framing .pf-questions--dark li { color: #fff; }

/* Lean canvas image */
.page-problem-framing .pf-canvas {
  margin-top: 40px;
  background: #fff;
  border-radius: 10px;
  padding: 22px;
}
.page-problem-framing .pf-canvas img { width: 100%; height: auto; border-radius: 4px; }

/* Numbered benefits list */
.page-problem-framing .pf-benefits {
  margin: 22px 0 28px;
  padding-left: 0;
  list-style: none;
  counter-reset: pf-benefit;
  max-width: 760px;
}
.page-problem-framing .pf-benefits li {
  counter-increment: pf-benefit;
  position: relative;
  padding-left: 42px;
  margin-bottom: 16px;
  color: var(--grey);
  font-size: 16px;
}
.page-problem-framing .pf-benefits li::before {
  content: counter(pf-benefit) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green);
  font-size: 17px;
}

/* -------------------------------------------------------- Deliverables --- */
.page-problem-framing .pf-deliverables-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  max-width: 760px;
}

/* -------------------------------------------------------------- Process -- */
.page-problem-framing .pf-process .process-card .accent { margin-bottom: 0.3em; }

/* -------------------------------------------------------------- Responsive */
@media (max-width: 900px) {
  .page-problem-framing .pf-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-problem-framing .pf-hero-media { justify-content: center; }
  .page-problem-framing .pf-hero-img--desktop { display: none; }
  .page-problem-framing .pf-hero-img--mobile { display: block; max-width: 420px; }
  .page-problem-framing .pf-deliverables-list { grid-template-columns: 1fr; }
}
