/**
 * CPTS Adhérents — carte interactive.
 */

.cpts-map {
	width: 100%;
	border: 1px solid var(--cpts-color-border, #d9e2ec);
	border-radius: var(--cpts-radius, 10px);
	overflow: hidden;
	z-index: 0;
}

/* Marqueurs : pastilles colorées sobres */
.cpts-marker {
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
	box-sizing: border-box;
}

.cpts-marker--member {
	background: var(--cpts-color-primary, #2b6777);
}

.cpts-marker--approx {
	background: var(--cpts-color-primary, #2b6777);
	opacity: 0.55;
}

.cpts-marker--structure {
	background: #c05621;
	border-radius: 4px;
}

/* Popup */
.cpts-map__popup {
	font-size: 0.9rem;
	line-height: 1.45;
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 160px;
}

.cpts-map__popup-label {
	color: var(--cpts-color-primary, #2b6777);
	font-weight: 600;
	font-size: 0.82rem;
}

.cpts-map__popup-approx {
	color: #6b7280;
	font-size: 0.75rem;
	font-style: italic;
}

.cpts-map__popup a {
	color: var(--cpts-color-primary, #2b6777);
	font-weight: 600;
}
