.faq-accordion--head {
	max-width: 760px;
	margin: 0 auto 40px;
	text-align: center;
}

.faq-accordion--display {
	margin-top: 16px;
	margin-bottom: 16px;
}

.faq-accordion--intro {
	color: var(--fg-2);
}

.faq-accordion--list {
	max-width: 880px;
	margin: 0 auto;
	border-top: 1px solid var(--line);
}

.lwh-faq-item {
	border-bottom: 1px solid var(--line);
}

.lwh-faq-item > summary {
	list-style: none;
	cursor: pointer;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 22px 4px;
	transition: color 0.2s ease;
}

.lwh-faq-item > summary::-webkit-details-marker { display: none; }

.lwh-faq-q__text {
	font-family: var(--font-display);
	font-size: clamp(20px, 2.2vw, 26px);
	line-height: 1.25;
	color: var(--fg);
}

.lwh-faq-item:hover > summary .lwh-faq-q__text,
.lwh-faq-item[open] > summary .lwh-faq-q__text {
	color: var(--accent);
}

.lwh-faq-q__icon {
	width: 18px;
	height: 18px;
	position: relative;
	flex-shrink: 0;
}

.lwh-faq-q__icon::before,
.lwh-faq-q__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.lwh-faq-q__icon::before {
	width: 18px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}

.lwh-faq-q__icon::after {
	width: 1.5px;
	height: 18px;
	transform: translate(-50%, -50%);
}

.lwh-faq-item[open] > summary .lwh-faq-q__icon::after {
	transform: translate(-50%, -50%) scaleY(0);
	opacity: 0;
}

.lwh-faq-item[open] > summary .lwh-faq-q__icon {
	color: var(--accent);
}

.lwh-faq-a {
	padding: 0 4px 26px;
	color: var(--fg-2);
	font-size: 16px;
	line-height: 1.7;
	max-width: 720px;
}

.lwh-faq-a > *:first-child { margin-top: 0; }
.lwh-faq-a > *:last-child  { margin-bottom: 0; }

.lwh-faq-a a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}

.lwh-faq-a a:hover { text-decoration-thickness: 2px; }

.lwh-faq-a ul,
.lwh-faq-a ol {
	padding-left: 1.25em;
	margin: 0.5em 0;
}

.lwh-faq-a li + li { margin-top: 6px; }

.faq-accordion--cta {
	margin-top: 48px;
	text-align: center;
}
