/*
 * Restores the contact-overlay layout for the homepage maps.
 * The original CSS in template.css targeted `#map`, but the page
 * had two duplicate `id="map"` wrappers — invalid HTML — so we
 * renamed them to `map-ryb` / `map-spb` and tagged them with
 * `.map-wrapper`. This rule reattaches the same absolute positioning
 * so the address card overlays on top of the map.
 */
.contact-us-map .map-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    z-index: 0;
}

.contact-us-map #contact-us {
    position: relative;
    z-index: 1;
}
