.hk-faq {
	width: 100%;
	direction: rtl;
	--hk-faq-yellow: #f5c518;
	--hk-faq-teal: #1a9e8f;
	--hk-faq-blue: #e8f4fc;
	--hk-faq-answer-bg: #f0f4f8;
}

.hk-faq__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hk-faq__item {
	border: 1px solid #ececec;
	border-radius: 18px;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.25s ease;
}

.hk-faq__item.is-open {
	border-color: #e0e0e0;
}

.hk-faq .hk-faq__header {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 18px 20px !important;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	color: inherit !important;
	font-size: inherit;
	font-weight: inherit;
	line-height: 1;
	cursor: pointer;
	text-align: right;
	direction: ltr;
	box-shadow: none !important;
	transition: none;
}

.hk-faq .hk-faq__header:hover,
.hk-faq .hk-faq__header:focus,
.hk-faq .hk-faq__header:active {
	background: transparent !important;
	background-color: transparent !important;
	border: none !important;
	color: inherit !important;
	box-shadow: none !important;
	outline: none;
}

.hk-faq__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px 14px 12px 10px;
	background: var(--hk-faq-yellow);
	color: #1a1a1a;
	transition: background 0.25s ease, transform 0.25s ease;
}

.hk-faq__item.is-open .hk-faq__icon {
	background: var(--hk-faq-blue);
	color: #1a9e8f;
	border-radius: 50%;
}

.hk-faq__chevron {
	width: 18px;
	height: 18px;
	transition: transform 0.25s ease;
}

.hk-faq__item.is-open .hk-faq__chevron {
	transform: rotate(180deg);
}

.hk-faq__question-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	direction: rtl;
}

.hk-faq__mark {
	display: none;
	flex-shrink: 0;
	width: 18px;
	height: 3px;
	border-radius: 2px;
	background: var(--hk-faq-teal);
}

.hk-faq__item.is-open .hk-faq__mark {
	display: block;
}

.hk-faq__question {
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.7;
	color: #1a1a1a;
}

.hk-faq__panel {
	overflow: hidden;
}

.hk-faq__panel[hidden] {
	display: none;
}

.hk-faq__answer {
	padding: 0 20px 20px 72px;
	background: var(--hk-faq-answer-bg);
	border-radius: 0 0 18px 18px;
}

.hk-faq__answer p {
	margin: 0 0 12px;
	font-size: 0.875rem;
	line-height: 2;
	color: #555;
}

.hk-faq__answer p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.hk-faq__header {
		padding: 16px;
		gap: 12px;
	}

	.hk-faq__answer {
		padding: 0 16px 16px 16px;
	}

	.hk-faq__question {
		font-size: 0.875rem;
	}
}
