/* FOOTER ONLY: 1st column full width, next columns 1/2 + gap on ≤767px */
@media (max-width: 767px){

  .et-l--footer .mobile-custom-layout{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:stretch;
  }

  .et-l--footer .mobile-custom-layout > .et_pb_column{
    margin:0 !important;
    width:auto !important;
    max-width:none !important;
    min-width:0;
    float:none !important;
    box-sizing:border-box;
  }

  .et-l--footer .mobile-custom-layout > .et_pb_column:nth-child(1){
    flex:0 0 100%;
  }

  .et-l--footer .mobile-custom-layout > .et_pb_column:nth-child(n+2){
    flex:1 1 calc(50% - 5px);
  }
}