/* FAQ Read More — extra accordion items (collapsed) */
.em-faq-limit-wrap:not(.is-expanded) .em-faq-extra-item {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	margin-bottom: 0 !important;
	pointer-events: none;
}

.em-faq-limit-wrap.is-expanded .em-faq-extra-item {
	opacity: 1;
	overflow: visible;
	pointer-events: auto;
	transition:
		max-height 0.48s ease-out,
		opacity 0.4s ease-out,
		margin-bottom 0.4s ease-out;
}

.em-faq-limit-wrap.is-collapsing .em-faq-extra-item {
	opacity: 0;
	overflow: hidden;
	margin-bottom: 0 !important;
	pointer-events: none;
	transition:
		max-height 0.68s ease-in-out,
		opacity 0.58s ease-in-out,
		margin-bottom 0.58s ease-in-out;
}

.em-faq-toggle-wrap {
	margin-top: 18px;
}

.em-faq-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: 0 4px 7.4px rgba(237, 28, 36, 0.2);
	transition:
		box-shadow 0.25s ease,
		transform 0.2s ease,
		background 0.25s ease,
		border-color 0.25s ease;
	user-select: none;
}

.em-faq-toggle:hover,
.em-faq-toggle:focus-visible {
	box-shadow: 0 4px 11.3px rgba(237, 28, 36, 0.35);
	outline: none;
}

.em-faq-toggle:focus-visible {
	outline: none;
}

@media (prefers-reduced-motion: reduce) {
	.em-faq-limit-wrap.is-expanded .em-faq-extra-item,
	.em-faq-limit-wrap.is-collapsing .em-faq-extra-item,
	.em-faq-toggle {
		transition: none;
	}
}
