.hk-services {
	--hk-gap: 20px;
	--hk-visible-columns: 3;
	--hk-item-width: 320px;
	width: 100%;
}

.hk-services__nav {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-bottom: 16px;
}

.hk-services .hk-services__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0 !important;
	border: 1px solid #ddd !important;
	border-radius: 50% !important;
	background: #fff !important;
	background-color: #fff !important;
	color: #333 !important;
	font-size: inherit;
	line-height: 1;
	cursor: pointer;
	box-shadow: none !important;
	transition: none;
}

.hk-services .hk-services__nav-btn:hover,
.hk-services .hk-services__nav-btn:focus,
.hk-services .hk-services__nav-btn:active {
	background: #fff !important;
	background-color: #fff !important;
	border-color: #ddd !important;
	color: #333 !important;
	box-shadow: none !important;
	outline: none;
}

.hk-services .hk-services__nav-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.hk-services__nav-icon {
	width: 20px;
	height: 20px;
}

.hk-services__scroll {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	direction: ltr;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.hk-services__scroll::-webkit-scrollbar {
	display: none;
}

.hk-services__grid {
	display: flex;
	gap: var(--hk-gap);
	width: max-content;
	padding: 4px 0 12px;
}

.hk-services__card {
	position: relative;
	flex: 0 0 var(--hk-item-width);
	width: var(--hk-item-width);
	max-width: var(--hk-item-width);
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 0 0 10px 10px;
}

.hk-services__card-shadow {
	position: absolute;
	top: 10px;
	right: 0;
	bottom: 0;
	left: 10px;
	background: #e0e0e0;
	border-radius: 27px;
	opacity: 0;
	transform: translate(0, 0);
	transition: opacity 0.35s ease, transform 0.35s ease;
	z-index: 0;
}

.hk-services__card-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-direction: row-reverse;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 27px;
	padding: 20px 22px;
	min-height: 130px;
	direction: rtl;
	transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s ease;
}

.hk-services__card:hover .hk-services__card-shadow {
	opacity: 1;
	transform: translate(8px, 8px);
}

.hk-services__card:hover .hk-services__card-inner {
	border-color: #e8b923;
	transform: translate(-8px, -8px);
}

.hk-services__icon {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hk-services__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hk-services__content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hk-services__title {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: #2d2d2d;
}

.hk-services__desc {
	display: block;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.7;
	color: #888;
}

.hk-services-empty {
	padding: 24px;
	text-align: center;
	color: #888;
	border: 1px dashed #ccc;
	border-radius: 8px;
}
