/* ─── Map Locations Widget ───────────────────────────────────────────────── */

.hbc-ml-wrap {
	display: flex;
	align-items: stretch;
	gap: 60px;
}

/* ─── Map column ─────────────────────────────────────────────────────────── */

.hbc-ml-map {
	width: 60%;
	flex-shrink: 0;
}

.hbc-ml-map iframe {
	display: block;
	width: 100%;
	height: 450px;
	border: 0;
	border-radius: 8px;
}

.hbc-ml-map-ph {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 450px;
	background: #f5f5f5;
	border: 1px dashed #ccc;
	border-radius: 8px;
	color: #999;
	font-size: 14px;
	text-align: center;
	padding: 20px;
}

/* ─── Location list ──────────────────────────────────────────────────────── */

.hbc-ml-list {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 36px;
	justify-content: center;
}

.hbc-ml-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* ─── Icon box ───────────────────────────────────────────────────────────── */

.hbc-ml-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: 8px;
	background-color: #fff0f0;
	color: #cc2222;
}

.hbc-ml-icon i,
.hbc-ml-icon svg {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

/* ─── Text content ───────────────────────────────────────────────────────── */

.hbc-ml-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.hbc-ml-title {
	font-size: 14px;
	font-weight: 600;
	color: #111;
	line-height: 1.4;
}

.hbc-ml-link {
	display: inline-block;
	font-size: 13px;
	color: #555;
	text-decoration: none;
	transition: color 0.2s ease;
}

.hbc-ml-link:hover {
	color: #cc2222;
	text-decoration: none;
}

/* ─── Tablet (≤1024px) ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.hbc-ml-wrap {
		gap: 36px;
	}
	.hbc-ml-map {
		width: 55%;
	}
}

/* ─── Mobile (≤767px) ────────────────────────────────────────────────────── */

@media (max-width: 767px) {
	.hbc-ml-wrap {
		flex-direction: column;
		gap: 28px;
	}
	.hbc-ml-map {
		width: 100% !important;
	}
	.hbc-ml-map iframe,
	.hbc-ml-map-ph {
		height: 280px;
	}
	.hbc-ml-list {
		gap: 24px;
	}
	.hbc-ml-icon {
		width: 44px;
		height: 44px;
		min-width: 44px;
	}
	.hbc-ml-title {
		font-size: 13px;
	}
	.hbc-ml-link {
		font-size: 12px;
	}
}
