/* ═══════════════════════════════════════════════════
   SECTION: audit — who it is for. Source: audit.html #sp-for-who

   The header, the container and the section heading all come from
   service-page.css, declared as a css_dep. Only what is particular to the two
   columns lives here.

   The source hard-codes #10B981 for the affirmative mark and reaches for the
   blue accent for the negative one. The affirmative takes --c-success; the
   negative is built from --c-bg-3 and --c-border, which is the theme's own way
   of saying "present but inactive" and needs no new colour.

   The negative column is deliberately not red. These are not errors or
   warnings — they are situations where the honest answer is that this
   engagement will not help, and colouring them as failures would misrepresent
   what they say.
═══════════════════════════════════════════════════ */

#sp-for-who {
  background: var(--c-bg);
  padding: var(--sp-section) 0;
  border-bottom: 1px solid var(--c-border);
}

.sp-for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.sp-for-col {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  /* 36px has no token: the scale skips 7 and 9. The fallback carries the
     source value, the same way the other audit sections do — adding --sp-9
     to the scale would change what the scale means for every other page. */
  padding: var(--sp-10) var(--sp-9, 36px);
}

/* ── Column header ── */
.sp-for-col-hdr {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.sp-for-col-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: var(--fs-400);
  line-height: 1;
}
.sp-for-col-icon.yes {
  background: rgba(var(--c-success-rgb), .1);
  border: 1px solid rgba(var(--c-success-rgb), .25);
  color: var(--c-success);
}
.sp-for-col-icon.no {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  color: var(--c-text-4);
}

.sp-for-col-title {
  font-family: var(--f-display);
  font-size: var(--fs-500);
  font-weight: var(--fw-black);
  letter-spacing: -.03em;
  color: var(--c-text-1);
  line-height: 1.5;
}

/* ── List ── */
.sp-for-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-for-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-200);
  color: var(--c-text-3);
  line-height: 1.7;
}

/* Same square mark as the deliverables list, one size up, so the two sections
   read as the same page. The 3px nudge centres it on the first line: the line
   box is 14 × 1.7 ≈ 24px and the mark is 22px minus its border. */
.sp-for-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 3px;
  display: grid;
  place-items: center;
  font-size: var(--fs-100);
  font-weight: var(--fw-bold);
  line-height: 1;
}
.sp-for-item-icon.yes {
  background: rgba(var(--c-success-rgb), .1);
  border: 1px solid rgba(var(--c-success-rgb), .25);
  color: var(--c-success);
}
.sp-for-item-icon.no {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  color: var(--c-text-4);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .sp-for-who-grid { grid-template-columns: 1fr }
}

@media (max-width: 640px) {
  .sp-for-col { padding: var(--sp-7, 28px) var(--sp-6) }
}
