/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#faqsu-faq-list {
	display: grid;
	gap: 14px;
	background: transparent;
	padding: 0;
}

#faqsu-faq-list .faqsu-faq-single {
	background: #ffffff;
	border: 1px solid #e0d5c8;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(120, 65, 35, 0.06);
	overflow: hidden;
}

#faqsu-faq-list .faqsu-faq-single.is-open {
	border-color: #784123;
	box-shadow: 0 16px 40px rgba(120, 65, 35, 0.12);
	background: linear-gradient(180deg, #ffffff 0%, #f7f3ee 100%);
}

#faqsu-faq-list .faqsu-faq-question {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 18px 20px;
	margin: 0;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

#faqsu-faq-list .faqsu-faq-question:hover {
	background: #f7f3ee;
}

#faqsu-faq-list .faqsu-faq-title {
	font-size: 17px;
	line-height: 1.35;
	font-weight: 600;
	color: #5a3e2b;
}

#faqsu-faq-list .faqsu-faq-toggle {
	position: relative;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: #f2ebe4;
	margin-left: 8px;
	border: 1px solid #e0d5c8;
}

#faqsu-faq-list .faqsu-faq-toggle:before,
#faqsu-faq-list .faqsu-faq-toggle:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: #784123;
	transform: translate(-50%, -50%);
}

#faqsu-faq-list .faqsu-faq-toggle:before {
	width: 10px;
	height: 2px;
}

#faqsu-faq-list .faqsu-faq-toggle:after {
	width: 2px;
	height: 10px;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

#faqsu-faq-list .faqsu-faq-single.is-open .faqsu-faq-toggle:after {
	opacity: 0;
	transform: translate(-50%, -50%) scaleY(0.2);
}

#faqsu-faq-list .faqsu-faq-answare {
	display: none;
	padding: 0 20px 20px;
	color: #5a3e2b;
	line-height: 1.7;
	font-size: 15px;
}

#faqsu-faq-list .faqsu-faq-single.is-open .faqsu-faq-answare {
	display: block;
}

#faqsu-faq-list .faqsu-faq-question:focus-visible {
	outline: 2px solid #784123;
	outline-offset: 2px;
}

@media (max-width: 768px) {
	#faqsu-faq-list {
		gap: 12px;
	}

	#faqsu-faq-list .faqsu-faq-question {
		grid-template-columns: 1fr auto;
		gap: 10px;
		padding: 14px 14px;
	}

	#faqsu-faq-list .faqsu-faq-title {
		font-size: 15px;
		line-height: 1.45;
	}

	#faqsu-faq-list .faqsu-faq-toggle {
		width: 26px;
		height: 26px;
	}

	#faqsu-faq-list .faqsu-faq-toggle:before {
		width: 10px;
	}

	#faqsu-faq-list .faqsu-faq-toggle:after {
		height: 10px;
	}

	#faqsu-faq-list .faqsu-faq-answare {
		padding: 0 14px 16px;
		font-size: 14px;
		line-height: 1.65;
	}
}

@media (max-width: 420px) {
	#faqsu-faq-list .faqsu-faq-question {
		grid-template-columns: 1fr auto;
	}

	#faqsu-faq-list .faqsu-faq-answare {
		padding-left: 14px;
		padding-right: 14px;
	}
}
