/* =========================================
   Half Map – Increase Search Results Width
   ========================================= */

/* Large desktops */
@media (min-width: 1201px) {
  .half-map-right-wrap {
    width: 900px;
  }

  .half-map-left-wrap {
    width: calc(100% - 900px);
  }
}

/* Laptops / smaller desktops */
@media (max-width: 1200px) and (min-width: 992px) {
  .half-map-right-wrap {
    width: 760px;
  }

  .half-map-left-wrap {
    width: calc(100% - 760px);
  }
}

/* Tablets remain untouched unless you want them wider too */