/* ======================================================
   CBFC — MOBILE RESULTS FLOW (AUTHORITATIVE)
   Scope: Mobile only
   Layout & spacing only
====================================================== */

@media (max-width: 767px) {

  /* Ensure predictable vertical stacking */
  .cbfc-results-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* Result slots stack naturally */
  .cbfc-result-slot {
    display: block;
  }

  /* Result cards breathe but don’t sprawl */
  .cbfc-option {
    margin-bottom: 0;
  }

  /* Site visit spacing only — identity comes from base rule */
  .cbfc-site-visit {
    margin-top: 14px;
  }

}