.faq {
	margin-bottom: 48px;
}
.faq__title.h2 {
	margin-bottom: 16px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq__item {
	border-radius: 8px;
	background-color: #f6f9ff;
	transition: all ease-in-out 350ms;
}

.faq__item:hover {
	box-shadow: 0px 0px 8px 0px rgba(35, 37, 39, 0.16);
}

.faq__item.opened {
	padding-bottom: 8px;
	box-shadow: none;
}

.faq__item.opened .faq__item-question {
	margin-bottom: 20px;
	padding-bottom: 0;
}

.faq__item.opened .faq__item-question img {
	transform: rotate(0);
}

.faq__item.opened .faq__item-answer-wrapper {
	grid-template-rows: 1fr;
	opacity: 1;
}

.faq__item-question {
	padding: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
}

.faq__item-question img {
	width: 24px;
	height: 24px;
	transition: all ease-in-out 350ms;
	transform: rotate(-180deg);
}

.faq__item-answer-wrapper {
	padding: 0 8px;
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	opacity: 0;
	transition: all ease-in-out 350ms;
	margin: 0;
	width: 100%;
	max-width: 100%;
}

.faq__item-answer {
	min-height: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.faq__item-title.h3 {
	font-size: 16px;
	line-height: 20px;
}
.faq__item-answer ul,
.faq__item-answer ol {
	padding-left: 16px;
	margin-bottom: 8px;
}
.faq__item-answer ul {
	list-style: disc;
}
.faq__item-answer ol {
	list-style: decimal;
}
.faq__item-answer li {
	list-style: inherit;
	margin-bottom: 4px;
}
.faq__item-answer table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 14px;
}
.faq__item-answer table th,
.faq__item-answer table td {
	padding: 12px;
}
.faq__item-answer table thead th {
	font-weight: 700;
}
.faq__item-answer table tr:nth-child(even) {
	background-color: #fff;
}
@media only screen and (min-width: 577px) {
	.faq__item-title.h3 {
		font-size: 20px;
		line-height: 28px;
	}
	.faq__item-question {
		padding: 16px;
	}
}
@media only screen and (min-width: 720px) {
	.faq__list {
		gap: 24px;
	}

	.faq__item.opened {
		padding-bottom: 16px;
	}

	.faq__item-question {
		padding: 20px;
	}
	.faq__item.opened .faq__item-question {
		margin-bottom: 24px;
	}

	.faq__item-answer-wrapper {
		padding: 0 16px;
	}

	.faq__item-answer {
		gap: 24px;
	}
}
