.chen-faq {
	--chen-faq-duration: 280ms;
	display: flex;
	flex-direction: column;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.chen-faq *,
.chen-faq *::before,
.chen-faq *::after {
	box-sizing: border-box;
}

.chen-faq__item {
	position: relative;
	min-width: 0;
	transition:
		background-color var(--chen-faq-duration) ease,
		border-color var(--chen-faq-duration) ease,
		box-shadow var(--chen-faq-duration) ease;
}

.chen-faq__heading {
	margin: 0;
	padding: 0;
	font: inherit;
}

.chen-faq__trigger {
	appearance: none;
	-webkit-appearance: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	border: 0;
	border-radius: inherit;
	font: inherit;
	line-height: inherit;
	text-decoration: none;
	text-transform: none;
	cursor: pointer;
	transition:
		color var(--chen-faq-duration) ease,
		background-color var(--chen-faq-duration) ease;
}

.chen-faq__trigger:focus {
	outline: none;
}

.chen-faq__trigger:focus-visible {
	outline-style: solid;
	outline-width: 3px;
	outline-offset: 2px;
	z-index: 2;
}

.chen-faq__question-text {
	flex: 1 1 auto;
	min-width: 0;
}

.chen-faq__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
	transition:
		color var(--chen-faq-duration) ease,
		background-color var(--chen-faq-duration) ease,
		border-color var(--chen-faq-duration) ease,
		transform var(--chen-faq-duration) ease;
}

.chen-faq__icon > span,
.chen-faq__icon i,
.chen-faq__icon svg {
	display: block;
	line-height: 1;
}

.chen-faq__icon-open {
	display: none !important;
}

.chen-faq__item.is-open .chen-faq__icon-closed {
	display: none !important;
}

.chen-faq__item.is-open .chen-faq__icon-open {
	display: block !important;
}

.chen-faq__panel {
	height: auto;
	overflow: hidden;
	transition: height var(--chen-faq-duration) ease;
}

.chen-faq__panel[hidden] {
	display: none;
}

.chen-faq__answer-inner {
	min-width: 0;
	margin-inline: auto;
}

.chen-faq__answer-inner > :first-child {
	margin-top: 0;
}

.chen-faq__answer-inner > :last-child {
	margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
	.chen-faq__item,
	.chen-faq__trigger,
	.chen-faq__icon,
	.chen-faq__panel {
		transition-duration: 0.01ms !important;
	}
}
