/* FAQ (acf/faq) */
.faq {
	display: grid;
	gap: 12px;
}

.faq__item {
	background: #fff;
	border: 1px solid var(--boho-line);
	border-radius: var(--boho-radius);
	box-shadow: var(--boho-shadow-soft);
	padding: 4px 22px;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.faq__item[open] {
	border-color: var(--boho-violet-line);
	box-shadow: var(--boho-shadow);
}

.faq__item_question {
	position: relative;
	padding: 16px 44px 16px 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--boho-ink-strong);
	cursor: pointer;
	list-style: none;
}

.faq__item_question::-webkit-details-marker {
	display: none;
}

.faq__item_question::after {
	content: "";
	position: absolute;
	right: 4px;
	top: 50%;
	width: 26px;
	height: 26px;
	margin-top: -13px;
	border-radius: 50%;
	background: var(--boho-accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fd8b0f' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / 14px no-repeat;
	transition: transform .2s ease;
}

.faq__item[open] .faq__item_question::after {
	transform: rotate(180deg);
}

.faq__item_answer {
	padding: 0 0 18px;
	color: var(--boho-ink);
	line-height: 1.7;
}
