/* ─── Product FAQ Accordion ───────────────────────────────────────
 * Reuses the Support page FAQ markup (.only-support-faq / .only-faq__*)
 * Scoped via .ksq-product-faq for product-specific overrides.
 * ───────────────────────────────────────────────────────────────── */

.ksq-product-faq.only-support-faq {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background: #F0F4F8;
	padding: 80px 0;
	clear: both;
}

.ksq-product-faq .only-support-faq__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 80px;
	align-items: start;
}

.ksq-product-faq .only-support-faq__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ksq-product-faq .only-support-faq__title {
	font-family: 'DM Serif Display', serif;
	font-style: normal;
	font-weight: 400;
	font-size: 32px;
	line-height: 44px;
	color: #111111;
	margin: 0;
}

.ksq-product-faq .only-support-faq__desc {
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #666666;
	margin: 0;
}

/* FAQ List */
.ksq-product-faq .only-faq__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	width: 100%;
}

.ksq-product-faq .only-faq__item {
	width: 100%;
	border-top: 1px solid #D1D4DB;
	border-bottom: 1px solid #D1D4DB;
	margin-bottom: -1px;
}

.ksq-product-faq .only-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 0;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: all 0.3s ease;
}

.ksq-product-faq .only-faq__question:hover {
	opacity: 0.7;
}

.ksq-product-faq .only-faq__question-text {
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 21px;
	color: #111111;
	flex: 1;
	padding-right: 20px;
}

.ksq-product-faq .only-faq__icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: #111111;
	transition: transform 0.3s ease;
}

.ksq-product-faq .only-faq__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.ksq-product-faq .only-faq__icon-horizontal,
.ksq-product-faq .only-faq__icon-vertical {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.ksq-product-faq .only-faq__item--active .only-faq__icon-vertical {
	opacity: 0;
	transform: rotate(90deg);
}

.ksq-product-faq .only-faq__answer {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}

.ksq-product-faq .only-faq__answer[hidden] {
	display: block;
}

.ksq-product-faq .only-faq__answer-content {
	padding: 0 0 24px 0;
	font-family: 'Roboto Flex', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #666666;
}

.ksq-product-faq .only-faq__answer-content p {
	margin: 0 0 12px 0;
}

.ksq-product-faq .only-faq__answer-content p:last-child {
	margin-bottom: 0;
}

/* ─── Responsive ─── */

@media (max-width: 1440px) {
	.ksq-product-faq .only-support-faq__inner {
		padding: 0 40px;
		gap: 60px;
	}
}

@media (max-width: 1024px) {
	.ksq-product-faq.only-support-faq {
		padding: 60px 0;
	}

	.ksq-product-faq .only-support-faq__inner {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.ksq-product-faq.only-support-faq {
		padding: 50px 0;
	}

	.ksq-product-faq .only-support-faq__inner {
		padding: 0 20px;
		gap: 24px;
	}

	.ksq-product-faq .only-support-faq__title {
		font-size: 28px;
		line-height: 38px;
	}

	.ksq-product-faq .only-faq__question {
		padding: 20px 0;
	}

	.ksq-product-faq .only-faq__question-text {
		font-size: 16px;
		line-height: 19px;
	}

	.ksq-product-faq .only-faq__answer-content {
		font-size: 14px;
		line-height: 22px;
	}
}

@media (max-width: 480px) {
	.ksq-product-faq.only-support-faq {
		padding: 40px 20px;
	}

	.ksq-product-faq .only-support-faq__inner {
		padding: 0;
		gap: 20px;
	}

	.ksq-product-faq .only-support-faq__title {
		font-size: 22px;
		line-height: 26px;
	}

	.ksq-product-faq .only-support-faq__desc {
		font-size: 12px;
		line-height: 18px;
	}

	.ksq-product-faq .only-faq__question {
		padding: 16px 0;
	}

	.ksq-product-faq .only-faq__question-text {
		font-size: 14px;
		line-height: 16px;
		padding-right: 16px;
	}

	.ksq-product-faq .only-faq__answer-content {
		font-size: 12px;
		line-height: 18px;
		padding-bottom: 16px;
	}
}
