.entry-image {
	aspect-ratio: 3 / 2; /* or whatever your real ratio is */
	overflow: hidden;
}
.map-placeholder {
	position: relative;
	width: 100%;
	height: 400px;
	background: #eaeaea;
	border: 1px solid #ccc;
	overflow: hidden;
}
.map-placeholder iframe {
	width: 100%;
	height: 100%;
	border: 0;
}
.map-overlay {
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.9);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
}
.load-map-btn {
	margin-top: 10px;
	padding: 10px 20px;
	background: #0073e6;
	color: #fff;
	border: none;
	cursor: pointer;
	border-radius: 4px;
}
/* Force the CookieFirst dialog to overlay at the bottom */
dialog.cookiefirst-root {
	position: fixed !important;
	inset: auto 0 0 0 !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	z-index: 999999 !important;
}

/* First wrapper inside the dialog */
dialog.cookiefirst-root > div {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Actual banner content wrapper (this is the important one) */
dialog.cookiefirst-root [data-testid="cookieWidgetContent"] {
	display: block !important;
	width: 100% !important;
	min-height: 80px !important; /* adjust to your banner height */
	padding: 20px !important;
	box-sizing: border-box !important;
}





