/* Elementor FAQ Accordion — Frontend Styles */

.ewfa-faq-wrap {
	width: 100%;
}

.ewfa-faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.ewfa-faq-item {
	border-bottom: 1px solid rgba(30, 36, 32, 0.14);
}

.ewfa-faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: none;
	border: none;
	text-align: left;
	padding: 24px 4px;
	cursor: pointer;
	font-family: inherit;
	transition: background-color 0.2s ease;
}

.ewfa-faq-q-num,
.ewfa-faq-q-text {
	transition: color 0.2s ease;
}

.ewfa-faq-q-inner {
	display: flex;
	align-items: center;
}

.ewfa-faq-q-num {
	font-size: 12px;
	color: #c6641f;
	margin-right: 14px;
	flex-shrink: 0;
}

.ewfa-faq-q-text {
	font-size: 17px;
	font-weight: 600;
	color: #1e2420;
}

.ewfa-faq-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	position: relative;
}

.ewfa-faq-icon::before,
.ewfa-faq-icon::after {
	content: "";
	position: absolute;
	background: #1e2420;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.ewfa-faq-icon::before {
	width: 100%;
	height: 1.5px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.ewfa-faq-icon::after {
	width: 1.5px;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.ewfa-faq-item.open .ewfa-faq-icon::after {
	opacity: 0;
	transform: translateX(-50%) rotate(90deg);
}

.ewfa-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.ewfa-faq-a-inner {
	padding: 0 4px 26px 40px;
	font-size: 15px;
	max-width: 62ch;
	color: #1e2420;
}

.ewfa-faq-a-inner p {
	margin: 0 0 10px;
}

.ewfa-faq-a-inner p:last-child {
	margin-bottom: 0;
}

.ewfa-faq-a-inner a {
	color: inherit;
	text-decoration: underline;
}
