/**
 * EFPIC Google Map embed — responsive.
 */

.efpic-map {
	--efpic-map-height: 450px;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: var(--efpic-map-height);
	margin: 1.5em 0;
	overflow: hidden;
	border-radius: 4px;
	background: #e8eaed;
}

.efpic-map__frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Mobile: slightly shorter, full bleed within content */
@media (max-width: 782px) {
	.efpic-map {
		height: min(var(--efpic-map-height), 56vw);
		min-height: 220px;
		margin-left: 0;
		margin-right: 0;
		border-radius: 0;
	}
}

@media (max-width: 480px) {
	.efpic-map {
		height: min(var(--efpic-map-height), 70vw);
		min-height: 200px;
	}
}
