.jg-faq .rank-math-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	will-change: max-height;
}

.jg-faq .rank-math-list-item {
	cursor: pointer;
}

.jg-faq .rank-math-question {
	position: relative;
	padding-right: 30px;
}

.jg-faq .rank-math-question::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
	transition: transform 0.3s ease;
}

.jg-faq .rank-math-list-item.open .rank-math-question::after {
	transform: translateY(-50%) rotate(225deg);
}