.clm-map {
	width: 100%;
	min-height: 300px;
	z-index: 0;
	box-sizing: border-box;
}

.clm-map-wrapper {
	position: relative;
}

.clm-map-overlay {
	position: absolute;
	inset: 0;
	z-index: 500; /* above Leaflet's own panes/controls */
	background: rgba(0, 0, 0, 0.01); /* effectively transparent, but still catches pointer events */
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.clm-map-explore-btn {
	font-weight: 600;
	border: none;
	border-radius: 999px;
	background: #1a1a1a;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	transition: transform 0.15s ease, background 0.15s ease;
}

.clm-map-explore-btn--small {
	font-size: 13px;
	padding: 6px 16px;
}

.clm-map-explore-btn--medium {
	font-size: 15px;
	padding: 10px 22px;
}

.clm-map-explore-btn--large {
	font-size: 18px;
	padding: 14px 30px;
}

.clm-map-explore-btn:hover,
.clm-map-explore-btn:focus-visible {
	background: #333;
	transform: scale(1.04);
}

.clm-map-explore-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.6);
}

.clm-map .leaflet-popup-content {
	font-size: 14px;
	line-height: 1.4;
}
