.faq {
	margin: 40px 0;
}

.faq__title {
	margin: 0 0 20px;
	font-family: 'Outfit', sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -.03em;
}

.faq__item {
	border-bottom: 1px solid var(--line);
}

.faq__item:first-of-type {
	border-top: 1px solid var(--line);
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 0;
	cursor: pointer;
	list-style: none;
	font-size: 17px;
	font-weight: 600;
	color: var(--dark);
	transition: color .15s ease;
}

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

.faq__question:hover {
	color: var(--green-dark);
}

.faq__icon {
	position: relative;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
}

.faq__icon::before,
.faq__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 2px;
	border-radius: 2px;
	background: var(--green);
	transform: translate(-50%, -50%);
	transition: transform .2s ease, opacity .2s ease;
}

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

.faq__item[open] .faq__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
	padding: 0 0 20px;
	max-width: 860px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--gray);
}

.faq__answer p {
	margin: 0 0 12px;
}

.faq__answer p:last-child {
	margin-bottom: 0;
}

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

.faq__answer a {
	color: var(--green);
	text-decoration: underline;
}

@media (max-width: 768px) {
	.faq__title {
		font-size: 22px;
	}

	.faq__question {
		font-size: 16px;
	}
}
