/* Reforma Home B: "Questions? We're glad you asked." entrance sequence. */
:is(.support-faq-section, .upcoming-faq, .section_faq) a {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-color: rgba(154, 9, 56, 0.64);
	text-decoration-thickness: 12%;
	text-underline-offset: 25%;
}

:is(.support-faq-section, .upcoming-faq, .section_faq) ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-left: 0;
	list-style: none;
}

:is(.support-faq-section, .upcoming-faq, .section_faq) ul > li {
	position: relative;
	padding-left: 20px;
}

:is(.support-faq-section, .upcoming-faq, .section_faq) ul > li::before {
	position: absolute;
	top: 0.46em;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 2px;
	background: #e31b57;
	content: "";
}

:is(.support-faq-section, .upcoming-faq, .section_faq) ol {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-left: 0;
	list-style: none;
	counter-reset: item;
}

:is(.support-faq-section, .upcoming-faq, .section_faq) ol > li {
	position: relative;
	padding-left: 28px;
	counter-increment: item;
}

:is(.support-faq-section, .upcoming-faq, .section_faq) ol > li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: #e31b57;
	content: counter(item) ".";
	font-weight: 400;
}

.support-faq-section .support-faq-tag-reveal,
.support-faq-section .support-faq-heading-reveal,
.support-faq-section .support-faq-list-reveal {
	opacity: 0;
	filter: none;
	transform: translate3d(0, 50px, 0);
	transition:
		opacity 600ms ease var(--support-faq-reveal-delay),
		transform 600ms ease var(--support-faq-reveal-delay);
}

.support-faq-section .support-faq-tag-reveal {
	--support-faq-reveal-delay: 0ms;
}

.support-faq-section .support-faq-heading-reveal {
	--support-faq-reveal-delay: 200ms;
}

.support-faq-section .support-faq-list-reveal {
	--support-faq-reveal-delay: 400ms;
}

.support-faq-section .support-faq-tag-reveal.is-visible,
.support-faq-section .support-faq-heading-reveal.is-visible,
.support-faq-section .support-faq-list-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.support-faq-section .support-faq-row-reveal {
	opacity: 0;
	filter: none;
	transform: none;
	transition: opacity 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.support-faq-section .support-faq-row-reveal.is-visible {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.support-faq-section .support-faq-tag-reveal,
	.support-faq-section .support-faq-heading-reveal,
	.support-faq-section .support-faq-list-reveal,
	.support-faq-section .support-faq-row-reveal {
		opacity: 1;
		filter: none;
		transform: none;
		transition: none;
	}
}
