/* r75: fix the booking wrap properly. A <fieldset> establishes a block
   formatting context, so the whole visible step was shrink-wrapped into a
   column beside the circle (heading AND options indented ~120px). Neutralise
   the visible step's box with display:contents so its heading/note wrap beside
   the floated circle while the option grid clears full-width below. Hidden
   steps stay display:none!important, so the multi-step form is unaffected. */
@media(max-width:640px){
  .book-grid .form-part:not([hidden]){display:contents}
  .book-grid .choice-grid,
  .book-grid .form-nav,
  .book-grid .field,
  .book-grid .step-note,
  .book-grid input,
  .book-grid textarea,
  .book-grid select{clear:both}
}
