/* ── FAQ Schema Pro — Frontend Accordion ───────────────── */

.faq-schema-accordion {
	margin: 1.5em 0;
}

.faq-schema-item-wrap {
	border: 1px solid #e2e4e7;
	border-radius: 6px;
	margin-bottom: 10px;
	overflow: hidden;
	background: #fff;
}

.faq-schema-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 16px 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	color: inherit;
	text-align: left;
	transition: background .15s;
}
.faq-schema-question:hover { background: #f6f7f7; }
.faq-schema-question[aria-expanded="true"] { background: #f0f6fc; color: #2271b1; }

/* +/- icon */
.faq-schema-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid currentColor;
	position: relative;
	opacity: .6;
}
.faq-schema-icon::before,
.faq-schema-icon::after {
	content: '';
	position: absolute;
	background: currentColor;
	border-radius: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq-schema-icon::before { width: 10px; height: 2px; }
.faq-schema-icon::after  { width: 2px; height: 10px; transition: transform .2s; }
.faq-schema-question[aria-expanded="true"] .faq-schema-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-schema-answer {
	border-top: 1px solid #e2e4e7;
	overflow: hidden;
	transition: max-height .25s ease;
}
.faq-schema-answer[hidden] { display: none; }

.faq-schema-answer-inner {
	padding: 16px 20px;
	font-size: .95rem;
	line-height: 1.7;
	color: #3c434a;
}
