/* --------------------------------------------------------*/

/* @group @m-map-primary */

[class*="m-map-primary"] {
position: relative;
z-index: 1;
height: 20rem;
}


[class*="m-map-primary"] iframe {
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* @end @m-map-primary */


/* --------------------------------------------------------*/

/* @group @variables */

[class*="m-map-grid"] {
--grid-columns: 1fr;
--grid-gap: 3rem;
}

@media all and (min-width:48em) {

[class*="m-map-grid"] {
--grid-columns: 2fr 1fr;
--grid-rows: auto 1fr;
}

}

/* @end @variables */

/* @group @m-map-grid */


[class*="m-map-grid"] {
box-sizing: border-box;
display: grid;
grid-template-columns: var(--grid-columns);
grid-template-rows: var(--grid-rows);
place-items: var(--grid-place-items);
gap: var(--grid-gap);
}

@media all and (min-width:48em) {

[class*="m-map-grid"]>section:nth-child(1) {
grid-column: 1;
grid-row: 1 / 3;
}



}

/* @end @m-map-grid */