/**
 * Local Map Section
 *
 * Interactive US map with clickable state paths.
 * All CSS justified: SVG fills, strokes, transitions, hover effects,
 * cursor states, and responsive sizing.
 *
 * @package Condor
 */

/* ==========================================================================
   Map Container
   ========================================================================== */

.local-map__map {
	text-align: center;
}

.local-map__map svg {
	width: 100%;
	max-width: 900px;
	height: auto;
}

/* ==========================================================================
   State Paths
   ========================================================================== */

#us-map path,
#us-map circle {
	fill: #ccc;
	stroke: #fff;
	stroke-width: 1.5;
	transition: fill 0.15s ease;
	cursor: pointer;
}

#us-map path:hover,
#us-map circle:hover {
	fill: var(--wp--preset--color--blue);
}

/* Connector lines (non-interactive) */
#path67 {
	fill: none !important;
	stroke: var(--wp--preset--color--light-gray) !important;
	cursor: default;
}
