/* A one-finger drag over a map embed pans the map instead of scrolling the
   page, so a tall map traps the user before the footer. The transparent layer
   below takes the swipe; a tap removes it and hands the map back its gestures. */
.ept-map-embed {
	position: relative;
}

.ept-map-embed__unlock {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: inherit;
	background: transparent;
	appearance: none;
	cursor: pointer;
}

.ept-map-embed__unlock:focus-visible {
	outline: 2px solid var(--ept-color-link-hover, #007a8c);
	outline-offset: -2px;
}
