/* --- Map Container --- */
.mapContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* aligns title + map to the left */

    position: sticky;
    top: 2rem; /* distance from top of viewport when stuck */

    width: 50%; /* tweak this to taste */
    transform-origin: top right;
}

.mw-body--map {
    padding: 5px 5px;
}

.mapContent {
    width: 100%;
    overflow: hidden; /* keep scaled image inside its container */
}

.mapContent .map {
    width: 100%;
    height: auto;
    display: block;
    
}