.hk-process {
	position: relative;
	width: 100%;
	direction: rtl;
	padding: 24px 0 32px;
	--hk-process-glow: rgba(245, 197, 24, 0.55);
	--hk-process-line: #c5c5c5;
}

.hk-process__line {
	position: absolute;
	top: 24px;
	right: 0;
	left: 0;
	width: 100%;
	height: 250px;
	z-index: 0;
	pointer-events: none;
}

.hk-process__steps {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 16px;
	min-height: 250px;
}

.hk-process__step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 0;
	max-width: 240px;
	margin: 0 auto;
}

.hk-process__step--top {
	justify-content: flex-start;
	padding-top: 0;
}

.hk-process__step--top .hk-process__circle {
	order: 1;
	margin-bottom: 20px;
}

.hk-process__step--top .hk-process__text {
	order: 2;
}

.hk-process__step--bottom {
	justify-content: flex-end;
	padding-top: 80px;
}

.hk-process__step--bottom .hk-process__text {
	order: 1;
	margin-bottom: 20px;
}

.hk-process__step--bottom .hk-process__circle {
	order: 2;
}

.hk-process__circle {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #f5c518;
	box-shadow: 0 0 0 8px var(--hk-process-glow), 0 0 24px var(--hk-process-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1;
}

.hk-process__text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.hk-process__title {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.6;
	color: #1a1a1a;
}

.hk-process__desc {
	display: block;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.75;
	color: #888;
}

@media (max-width: 1024px) {
	.hk-process__line {
		display: none;
	}

	.hk-process__steps {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
	}

	.hk-process__step,
	.hk-process__step--bottom {
		flex-direction: row-reverse;
		justify-content: flex-start;
		align-items: flex-start;
		text-align: right;
		max-width: none;
		padding-top: 0;
		gap: 16px;
	}

	.hk-process__step--top .hk-process__circle,
	.hk-process__step--bottom .hk-process__circle {
		order: 0;
		margin-bottom: 0;
	}

	.hk-process__step--top .hk-process__text,
	.hk-process__step--bottom .hk-process__text {
		order: 1;
		margin-bottom: 0;
		flex: 1;
	}
}
