/* ─── Services Panel ──────────────────────────────────────────── */

.hksm-services-list {
	padding: 16px;
}

.hksm-service-card {
	display: flex;
	gap: 14px;
	background: #fff;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s;
}

.hksm-service-card:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hksm-service-icon {
	width: 48px;
	height: 48px;
	background: #e8f0fe;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #0066cc;
}

.hksm-service-icon i {
	font-size: 28px;
	line-height: 1;
}

.hksm-service-body {
	flex: 1;
	min-width: 0;
}

.hksm-service-title {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 4px;
}

.hksm-service-desc {
	font-size: 13px;
	color: #666;
	margin: 0 0 10px;
	line-height: 1.5;
}

.hksm-service-card .hksm-btn-outline {
	font-size: 12px;
	padding: 6px 14px;
}

.hksm-no-services {
	text-align: center;
	color: #888;
	padding: 40px 20px;
	font-size: 14px;
}
