.faq-block {
	padding-top: 30px;
	padding-bottom: 119px;
}

.faq-block.max-width {
	max-width: none;
	padding-right: 0;
	padding-left: 0;
}

.faq-block__pretitle {
	display: block;
	width: max-content;
	margin: 0 0 0 calc(41.667% + 84px);
}

.faq {
	display: grid;
	grid-template-columns: minmax(0, calc(8.333% + 15px)) minmax(0, 620px) minmax(0, calc(50% - 650px)) minmax(0, 620px);
	gap: 0;
	margin-top: 88px;
}

.faq__column {
	display: flex;
	flex-direction: column;
}

.faq__column:first-child {
	grid-column: 2;
}

.faq__column:last-child {
	grid-column: 4;
}

.faq__item {
	position: relative;
	color: #e6e6e6;
}

.faq__item:not(:last-child) {
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.faq__item::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #e7e7e7;
	transform: scaleY(0.3);
	transform-origin: bottom;
	pointer-events: none;
}

.faq__item:not(:last-child)::after {
	content: "";
}

@media screen and (max-width: 1023px) {
	.faq__item:last-child::after {
		content: "";
	}
}

.faq__summary {
	display: flex;
	align-items: center;
	min-height: 40px;
	cursor: pointer;
	list-style: none;
}

.faq__summary::-webkit-details-marker {
	display: none;
}

.faq__toggle {
	--glass-size: 40px;
	--glass-background: rgba(242, 206, 181, 0.04);
	--glass-background-active: rgba(242, 206, 181, 0.15);
	--glass-frost: 0.03;

	flex: 0 0 40px;
	margin-right: 24px;
}

.faq__toggle-icon {
	position: relative;
	width: 13px;
	height: 13px;
}

.faq__toggle-icon:before,
.faq__toggle-icon:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 1px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform .2s ease;
}

.faq__toggle-icon:after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__toggle-icon:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.faq__item[open] .faq__toggle-icon:after {
	transform: translate(-50%, -50%) rotate(135deg);
}

.faq__question {
	font-weight: 300;
	font-size: 20px;
	line-height: normal;
	text-transform: uppercase;
	white-space: nowrap;
}

.faq__answer {
	max-width: 556px;
	margin-left: 64px;
	padding-top: 20px;
	overflow: hidden;
	font-weight: 300;
	font-size: 14px;
	line-height: normal;
	color: #e6e6e6;
	will-change: height, opacity;
}

.faq__answer ol {
	margin: 0;
	padding-left: 20px;
}

@media (min-width: 1024px) and (max-width: 1440px) {
	.faq-block {
		padding-top: 30px;
		padding-bottom: 119px;
	}

	.faq {
		grid-template-columns: minmax(0, calc(8.333% + 15px)) minmax(0, 480px) minmax(0, calc(50% - 510px)) minmax(0, 480px);
		gap: 0;
		margin-top: 88px;
	}

	.faq__answer {
		max-width: 416px;
	}
}

@media (max-width: 1023px) {
	.faq-block {
		padding-top: 30px;
		padding-bottom: 50px;
	}

	.faq-block.max-width {
		padding-right: 20px;
		padding-left: 20px;
	}

	.faq-block__pretitle {
		margin-right: 0;
		margin-left: 0;
	}

	.faq {
		display: flex;
		flex-direction: column;
		margin-top: 30px;
		gap: 0;
	}

	.faq__summary {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.faq__item:not(:last-child) {
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.faq__toggle {
		flex-basis: 36px;
		margin-right: 16px;
		--glass-size: 36px;
	}

	.faq__question {
		font-size: 16px;
		white-space: normal;
	}

	.faq__answer {
		max-width: none;
		margin-left: 52px;
		padding-top: 0;
		padding-bottom: 24px;
	}
}
