section.simple-faq-section {
	--item-padding: 1rem;
	--item-border-radius: 3rem;
	--item-padding-inline: 4rem;
	padding: 0;
	max-width: 55rem;
	width: 100%;
	margin: 0 auto 0;
}

@media screen and (max-width: 768px) {
	section.simple-faq-section {
		--item-padding: 1.5rem;
		--item-border-radius: 1.5rem;
	}
}

body section.simple-faq-section ul.simple-faq-list {
	margin: auto;
	padding: 0;
	width: 100%;
}

body ul.simple-faq-list > li {
	padding: 0;
	margin: 1rem 0;
	list-style: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body ul.simple-faq-list > li:first-child {
	margin-top: 0;
}

body ul.simple-faq-list > li:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

body ul.simple-faq-list > li:hover > p {
	color: #fff;
}

body ul.simple-faq-list > li:hover > p,
body ul.simple-faq-list > li.active > p,
body ul.simple-faq-list > li:hover > p::after,
body ul.simple-faq-list > li.active > p::after {
	color: #fff;
}

body ul.simple-faq-list > li:last-child {
	margin-bottom: 0;
}

body ul.simple-faq-list > li > p {
	text-transform: uppercase;
	font-weight: 500;
	font-size: var(--text-size-100);
	letter-spacing: 10%;
	padding: var(--item-padding) var(--item-padding-inline);
	color: #fff;
	margin: 0;
	position: relative;
	transition: padding-left 0.3s ease-in-out;
}

body ul.simple-faq-list > li > p:before {
	content: attr(data-q);
	position: absolute;
	top: 50%;
	transform: translate(0%, -50%);
	left: 0;
	color: #fff;
	opacity: 0.2;
	font-size: var(--text-size-300);
}

body ul.simple-faq-list > li > p:after {
	content: attr(data-content);
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translate(0, -50%);
	color: #fff;
	font-size: 2rem;
	font-weight: 400;
}

body ul.simple-faq-list > li > div {
	padding: 1.5rem;
	display: none;
	color: var(--global-palette9);
}

body ul.simple-faq-list > li > div p a {
	color: #fff;
	text-decoration: underline;
	transition: all 0.1s ease-in-out;
}

body ul.simple-faq-list > li > div p a:hover {
	text-decoration: none;
	color: #ddd;
}

body ul.simple-faq-list > li > div p:last-child {
	margin-bottom: 0;
}

body ul.simple-faq-list > li.active > div {
	display: block;
	padding: 0 var(--item-padding-inline) 2rem;
	color: rgba(243, 242, 238, 1);
}

body ul.simple-faq-list > li div.simple-faq-answer p {
	font-size: var(--text-size-100);
}

body ul.simple-faq-list > li div.simple-faq-answer p:first-child {
	margin-top: 0;
	padding-top: 0;
}

body ul.simple-faq-list > li:not(.active):hover > p {
	padding-left: 4.2rem;
}

@media screen and (max-width: 768px) {
	section.simple-faq-section {
		--item-padding-inline: 2.25rem;
	}

	body ul.simple-faq-list > li {
		line-height: 1.25;
	}

	body ul.simple-faq-list > li:not(.active):hover > p {
		padding-left: 1rem;
	}

	body ul.simple-faq-list > li > p {
		padding-left: var(--item-padding-inline);
		padding-right: var(--item-padding-inline);
		line-height: 1.5;
	}

	body ul.simple-faq-list > li > p:after {
		right: 0;
	}

	body ul.simple-faq-list > li > div {
		padding: 0 1rem 1rem;
	}

	body ul.simple-faq-list > li.active > div {
		padding: 0 0 var(--item-padding-inline);
		line-height: 1.5;
	}
}
