/* FAQ Accordion Widget */
.faq-wrap {
	width: 100%;
	margin: 0 auto;
	font-family: Inter, sans-serif;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.faq-item {
	background: #fff;
	border: 1px solid #dfe3ea;
	overflow: hidden;
	box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
	border-color: #cfd6e4;
	box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.faq-question {
	width: 100%;
	border: 0;
	background: #fff;
	color: #111827;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px 48px;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
}

.faq-question > span:first-child {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.5px;
}

.faq-arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease;
	line-height: 1;
}

.faq-arrow i {
	font-size: 21px;
}

.faq-arrow svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.faq-item.active .faq-question {
	background: #2b4697;
	color: #fff;
}

.faq-item.active .faq-arrow {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-answer-inner {
	padding: 24px 48px 28px;
	background: #fff;
	color: #374151;
	font-size: 25px;
	line-height: 1.45;
	letter-spacing: -0.35px;
}

@media (max-width: 720px) {
	.faq-list {
		gap: 14px;
	}
	.faq-question {
		padding: 20px 20px;
	}
	.faq-question > span:first-child {
		font-size: 20px;
	}
	.faq-arrow i {
		font-size: 17px;
	}
	.faq-arrow svg {
		width: 17px;
		height: 17px;
	}
	.faq-answer-inner {
		padding: 18px 20px 22px;
		font-size: 18px;
		line-height: 1.55;
	}
}
