/* Treatment Approach: force the 6 text-heavy process steps to a clean 2-column
   layout (max 2 per row → 2×3), overriding the sitewide auto-fit grid. */
.process-flow {
  grid-template-columns: repeat(2, 1fr) !important;
}
.process-flow > .process-step-card { max-width: none !important; }
@media (max-width: 720px) {
  .process-flow { grid-template-columns: 1fr !important; }
}
