.finacia-faq {
	--fq-border: #e2e5ea;
	--fq-text: #1f2430;
	--fq-muted: #5b6472;
	--fq-accent: #2455e6;
	--fq-bg: #ffffff;
	max-width: 100%;
	margin: 1.5em 0;
	font-size: 1rem;
	color: var(--fq-text);
}

.finacia-faq__item { border-bottom: 1px solid var(--fq-border); }
.finacia-faq--style-1 .finacia-faq__item { border: 1px solid var(--fq-border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.finacia-faq--style-3 .finacia-faq__item { border: none; border-radius: 14px; margin-bottom: 12px; box-shadow: 0 2px 12px rgba(20, 25, 40, .08); background: var(--fq-bg); }

.finacia-faq__question { margin: 0; font-size: 1em; }

.finacia-faq__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	text-align: left;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 16px 18px;
	font: inherit;
	font-weight: 600;
	color: var(--fq-text);
}

.finacia-faq__trigger:focus-visible {
	outline: 2px solid var(--fq-accent);
	outline-offset: 2px;
}

.finacia-faq__trigger::after {
	content: "+";
	flex: 0 0 auto;
	font-size: 1.3em;
	line-height: 1;
	color: var(--fq-accent);
	transition: transform .2s ease;
}

.finacia-faq__trigger[aria-expanded="true"]::after {
	content: "\2212"; /* минус */
}

/*
 * Ответ находится в DOM изначально (важно для SEO/индексации и для Schema.org —
 * поисковые роботы должны видеть полный текст), но визуально свёрнут через max-height,
 * а не через display:none/JS-подгрузку — это и есть "ленивая" отрисовка без вреда для краулинга.
 */
.finacia-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
	padding: 0 18px;
	color: var(--fq-muted);
	line-height: 1.6;
}

.finacia-faq__answer.is-open {
	max-height: 2000px;
	padding-bottom: 16px;
}

.finacia-faq__answer-inner > *:first-child { margin-top: 0; }
.finacia-faq__answer-inner > *:last-child { margin-bottom: 0; }

.finacia-faq--list .finacia-faq__answer {
	max-height: none;
	padding: 0 18px 16px;
}
.finacia-faq--list .finacia-faq__trigger { cursor: default; pointer-events: none; }
.finacia-faq--list .finacia-faq__trigger::after { display: none; }

/* footer-виджет фолбэка */
.finacia-faq-footer-widget { margin-bottom: 24px; }
.finacia-faq-footer-widget__title { font-size: 1.1em; margin-bottom: .5em; }
