/* JetEngine Map popup: responsive width + true centering on mobile */
@media (max-width: 767px) {
  /* scoping through .gm-style makes it more specific inside the map canvas */
  .gm-style .jet-map-box {
    /* choose the mobile width you want; 32px total gutter */
    width: calc(100vw - 32px) !important;

    /* center over the marker: left = - (width / 2) */
    left: calc((100vw - 32px) / -2) !important;

    /* optional: nudge it up a touch on tiny screens */
    bottom: -40px !important;

    /* safety: avoid any right alignment weirdness */
    right: auto !important;
  }
}