.a92-faq {
	margin: 2rem auto;
}

.a92-faq__heading {
	margin: 0 0 2rem;
	text-align: center;
	font-weight: 600;
}

.a92-faq__item + .a92-faq__item {
	margin-top: 1rem;
}

.a92-faq__question {
	margin: 0;
}

.a92-faq__toggle {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	padding: 1rem 1.25rem;
	border: none;
	background-color: #fafafa;
	color: inherit;
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	text-decoration: none;
	border-radius: 0.5rem;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.a92-faq__toggle:focus {
	outline: 2px solid #fbaf43;
	outline-offset: 2px;
}

.a92-faq__toggle:hover {
	background-color: #f2f2f2;
	border-color: #d9dde1;
}

.a92-faq__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	color: #F20040;
}

.a92-faq__chevron::before {
	content: '';
	display: block;
	width: 0.45rem;
	height: 0.45rem;
	border: 0.15rem solid currentColor;
	border-left: 0;
	border-top: 0;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.a92-faq__toggle[aria-expanded="true"] .a92-faq__chevron::before {
	transform: rotate(-135deg);
}

.a92-faq__answer {
	border: none;
	border-top: 0;
	border-radius: 0 0 0.5rem 0.5rem;
}

.a92-faq__answer-inner {
	padding: 1.25rem;
	background-color: #ffffff;
	line-height: 1.6;
}
