

.section_faq__item {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid #C6C5D8;
	transition: border-color .3s;
}

	.section_faq__item:hover {
		border-color: #4D479D;
	}

	.section_faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: clamp(20px, calc(20px + 4 * (calc(var(--vw, 1vw) * 100) - 576px) / 416), 24px);
	font-weight: 600;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: #1B1937;
	padding: 20px 30px;
}

	.section_faq__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #4D479D;
	position: relative;
	flex-shrink: 0;
	transition: .3s;
}

	.section_faq__icon::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 12px;
		height: 12px;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: translate(-50%, -60%) rotate(45deg);
	}

	.section_faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: .35s ease;
	padding: 0 30px;
}

	.section_faq__answer p {
		line-height: 1.6;
		margin-bottom: 0;
	}

	.section_faq__item.active .section_faq__answer {
	max-height: 300px;
	padding-bottom: 20px;
}

	.section_faq__item.active .section_faq__icon {
	transform: rotate(180deg);
}