/* assets/css/frontend.css */
.wtf-faq-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.wtf-faq-item + .wtf-faq-item {
	margin-top: 12px;
}
a.wtf-faq-question {
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
}
.wtf-faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	text-align: left;
	background: #f7f7f7;
	border: 1px solid #ddd;
	padding: 12px 14px;
	font-weight: 600;
	cursor: pointer;
}
.wtf-faq-question[aria-expanded="true"] .wtf-faq-icon {
	transform: rotate(45deg);
}
.wtf-faq-icon {
	transition: transform .2s ease;
}
.wtf-faq-answer {
	border: 1px solid #ddd;
	border-top: none;
	padding: 12px 14px;
	background: #fff;
}