/* Phase 8b — Homepage Pass 1 polish
   Three fixes:
   1. Proof strip metric numbers — increase size and visual weight
   2. Symptom card body text — suppress teal link colour leak
   3. Disposition paths grid — force 3-column layout to prevent orphaned chip
*/

/* ── 1. Proof strip metric numbers ── */
.home-proof-strip__metrics strong {
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.02em;
}

/* ── 2. Symptom card body text — suppress inherited link colour ── */
.home-symptom-card p,
.home-symptom-card p a {
  color: var(--telstar-color-slate, #5C6B73);
}

/* ── 3. Disposition paths grid — 3 columns so 9 chips land as 3×3 ── */
.home-disposition-paths__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .home-disposition-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .home-disposition-paths__grid {
    grid-template-columns: 1fr;
  }
}
