/*
 * Static map image style (individual office contact page).
 *
 * Companion stylesheet for includes/map.php's <img id="map"> (replacing
 * the old interactive Google Maps JS embed, which used to size itself via
 * JS reading #overMap's height). Kept in its own new file instead of
 * editing style/main.css: main.css is served through this site's CDN with
 * a 1-year Cache-Control and no cache-busting, so edits to it don't reach
 * visitors - a brand-new, never-before-requested filename is needed to
 * guarantee a fresh load.
 */

section#mapSection img#map {
    width: 100%;
    height: 42.5em;
    object-fit: cover;
    border: 0;
    display: block;
}

@media screen and (max-width: 768px) {
    section#mapSection img#map {
        height: 300px;
    }
}
