#wwm-wrap {
	display: flex;
	gap: 20px;
	width: 100%;
	max-width: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	align-items: stretch;
	box-sizing: border-box;
}
#wwm-wrap * { box-sizing: border-box; }

#wwm-map-col {
	flex: 1 1 58%;
	min-width: 0;
}
#wwm-map {
	width: 100%;
	min-height: 300px;
	border-radius: 12px;
	z-index: 1;
}
#wwm-hint {
	text-align: center;
	color: #6B7280;
	font-size: 13px;
	margin: 10px 0 0 0;
}

#wwm-panel {
	flex: 1 1 42%;
	min-width: 300px;
	background: #F7F8FA;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	padding: 22px 24px;
	height: 560px;
	overflow-y: auto;
}
#wwm-panel-empty {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	color: #9CA3AF;
	font-size: 14px;
}

#wwm-district-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #2B6F5C;
	background: #E4F1EC;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 8px;
}
#wwm-district-name {
	margin: 0 0 18px 0;
	font-size: 24px;
	color: #16211D;
}
.wwm-row { margin-bottom: 18px; }
.wwm-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #6B7280;
	margin-bottom: 6px;
}
.wwm-chips {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.wwm-chips li {
	background: #fff;
	border: 1px solid #D9DDE3;
	padding: 4px 11px;
	border-radius: 20px;
	font-size: 13px;
	color: #24313A;
}
.wwm-chips-alt li {
	background: #FBF3EC;
	border-color: #EFD8C4;
	color: #7A431E;
}
.wwm-partner-badge {
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
	padding: 5px 12px;
	border-radius: 6px;
	color: #fff;
}
.wwm-checklist {
	list-style: none;
	margin: 0; padding: 0;
}
.wwm-checklist li {
	font-size: 14px;
	color: #24313A;
	padding: 4px 0 4px 24px;
	position: relative;
}
.wwm-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #2B6F5C;
	font-weight: 700;
}
.wwm-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}
.wwm-gallery img {
	width: 100%;
	height: 68px;
	object-fit: cover;
	border-radius: 6px;
	background: #E5E7EB;
}
.wwm-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 0;
}
.wwm-btn {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 14px;
	border-radius: 8px;
	transition: opacity 0.15s ease;
}
.wwm-btn:hover { opacity: 0.85; }
.wwm-btn-primary { background: #2B6F5C; color: #fff; }
.wwm-btn-secondary { background: #fff; color: #2B6F5C; border: 1px solid #2B6F5C; }

.wwm-map-label {
	background: rgba(255,255,255,0.95);
	border: none;
	box-shadow: 0 1px 4px rgba(0,0,0,0.25);
	padding: 3px 9px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 13px;
	color: #1a1a1a;
	white-space: nowrap;
}
.wwm-map-label::before { border: none !important; }

#wwm-map .leaflet-container {
	width: 100% !important;
	height: 100% !important;
}

@media (max-width: 992px) {
	#wwm-wrap { flex-wrap: wrap; }
	#wwm-map-col { flex: 1 1 100%; }
	#wwm-panel { flex: 1 1 100%; min-width: 0; }
}

@media (max-width: 780px) {
	#wwm-wrap { flex-direction: column; gap: 16px; }
	#wwm-map { height: 380px; }
	#wwm-panel { height: auto; max-height: none; padding: 18px 18px; }
	#wwm-panel-empty { padding: 30px 10px; }
}

@media (max-width: 480px) {
	#wwm-map { height: 300px; }
	#wwm-district-name { font-size: 20px; }
	.wwm-gallery { grid-template-columns: repeat(2, 1fr); }
	.wwm-gallery img { height: 90px; }
	.wwm-links { flex-direction: column; }
	.wwm-btn { width: 100%; }
	.wwm-map-label { font-size: 11px; padding: 2px 6px; }
}
