.dc-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 16px 48px;
	font-family: inherit;
	text-align: left !important;
}

.dc-search {
	position: relative;
	max-width: 480px;
	margin: 0 auto 24px;
}

.dc-search-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	pointer-events: none;
	opacity: 0.6;
}
.dc-search-icon::before {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	border: 2px solid #333;
	border-radius: 50%;
	left: 0;
	top: 0;
}
.dc-search-icon::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 8px;
	background: #333;
	left: 11px;
	top: 11px;
	transform: rotate(45deg);
}

#dc-search-input {
	width: 100%;
	padding: 14px 16px 14px 44px;
	border-radius: 999px;
	border: none;
	font-size: 15px;
	background: #fff;
	color: #111;
	box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
#dc-search-input:focus {
	outline: 2px solid #00c3ff;
}

.dc-body {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 20px;
	min-height: 560px;
}

@media (max-width: 860px) {
	.dc-body {
		grid-template-columns: 1fr;
	}
	.dc-map {
		height: 360px;
		order: -1;
	}
}

.dc-list {
	max-height: 640px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-right: 6px;
}

.dc-list::-webkit-scrollbar {
	width: 6px;
}
.dc-list::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.2);
	border-radius: 4px;
}

.dc-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 12px;
	padding: 14px 16px;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
	color: #e8edf2;
}
.dc-card:hover {
	background: rgba(255,255,255,0.12);
	border-color: rgba(0,195,255,0.5);
}

.dc-card-header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
	text-align: left !important;
}

.dc-badge {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 3px 8px;
	border-radius: 999px;
}

.dc-card-title {
	font-size: 15px;
	font-weight: 700;
	margin: 0;
	flex: 1 1 auto;
	color: #fff;
}

h3.dc-card-title {	text-align:left !important;}
.dc-distance {
	font-size: 12px;
	font-weight: 700;
	color: #00c3ff;
	white-space: nowrap;
}

.dc-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	line-height: 1.4;
	color: #c5ced6;
	margin-top: 4px;
}
.dc-row a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #c5ced6;
	text-decoration: none;
}
.dc-row a:hover {
	color: #00c3ff;
}
.dc-row svg {
	flex: 0 0 auto;
	opacity: 0.8;
}

.dc-map {
	border-radius: 12px;
	overflow: hidden;
	min-height: 480px;
	background: #1a2530;
}

.dc-infowindow {
	color: #111;
	font-size: 13px;
	line-height: 1.4;
}
