.acf-faq-list {
	margin: 40px 0;
}

.acf-faq-element {
	border-top: 1px solid #cfcfd4;
}

.acf-faq-element:last-child {
	border-bottom: 1px solid #cfcfd4;
}

.acf-faq-element__trigger {
	width: 100%;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
}

.acf-faq-element__title {
	display: block;
	font-size: 18px;
	line-height: 1.15;
	font-weight: 500;
	color: #1f2d73;
	transition: font-size 0.28s ease, line-height 0.28s ease;
}

.acf-faq-element__icon-wrap {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.acf-faq-element__icon {
	display: block;
	width: 8px;
	height: 14px;
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.acf-faq-element__content {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	transition: max-height 0.4s ease, opacity 0.28s ease;
	will-change: max-height, opacity;
}

.acf-faq-element__content-inner {
	max-width: 900px;
	font-size: 18px;
	line-height: 1.77;
	font-weight: 400;
	color: #48484e;
	text-decoration: none;
	padding-bottom: 0;
	transition: padding-bottom 0.28s ease;
}

.acf-faq-element__content-inner p {
	margin: 0 0 18px;
}

.acf-faq-element__content-inner p:last-child {
	margin-bottom: 0;
}

.acf-faq-element.is-open .acf-faq-element__title {
	font-size: 24px;
	line-height: 1.2;
}

.acf-faq-element.is-open .acf-faq-element__icon {
	transform: rotate(90deg);
}

.acf-faq-element.is-open .acf-faq-element__content {
	opacity: 1;
}

.acf-faq-element__content-inner p {
    padding-bottom: 38px;
}

@media (max-width: 991px) {
	.acf-faq-element__trigger {
		padding: 20px 0;
		gap: 16px;
	}

	.acf-faq-element__title {
		font-size: 18px;
		line-height: 1.2;
	}

	.acf-faq-element__icon {
		width: 8px;
		height: 14px;
	}

	.acf-faq-element__content-inner {
		font-size: 18px;
		line-height: 1.6;
	}

	.acf-faq-element.is-open .acf-faq-element__title {
		font-size: 22px;
		line-height: 1.25;
	}

}