/* ==========================================================================
   Google Map Block
   A transparent overlay link covers the iframe so page scrolling never zooms
   the map; clicking it opens the full Google Map in a new tab.
   ========================================================================== */

.gmap-embed {
    position: relative;
    width: 100%;
    height: var(--gmap-height, 450px);
    overflow: hidden;
}

.gmap-embed__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Overlay link intercepts scroll/click; clicking opens the map in a new tab. */
.gmap-embed__overlay {
    position: absolute;
    inset: 0;
    display: block;
    background: transparent;
    cursor: pointer;
}
