/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.lss-faq {
	padding-block: 84px;
	position: relative;
	z-index: 1;
}

.lss-faq__container {
	max-width: 760px;
}

.lss-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lss-faq__item {
	border-radius: var(--radius, 18px);
	overflow: hidden;
}

.lss-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	background: transparent;
	border: 0;
	text-align: start;
	color: var(--silver-100);
}

.lss-faq__question span:first-child {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
}

.lss-faq__chevron {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	color: var(--cyan-400);
	flex-shrink: 0;
	transition: transform 0.35s var(--ease-premium);
}

.lss-faq__item.is-open .lss-faq__chevron {
	transform: rotate(180deg);
}

.lss-faq__answer {
	height: 0;
	overflow: hidden;
	transition: height 0.4s var(--ease-premium);
}

.lss-faq__answer p {
	margin: 0;
	padding: 0 22px 20px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--silver-500);
}

@media (max-width: 640px) {
	.lss-faq {
		padding-block: 56px;
	}

	.lss-faq__question {
		padding: 16px 18px;
	}
}
