.faq-page .faq-wrap {
	max-width: 900px;
	margin: 0 0 30px;
}

.faq-page .faq-section {
	margin-bottom: 28px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e8e8e8;
}

.faq-page .faq-section:last-child {
	border-bottom: 0;
}

.faq-page .faq-section__title {
	font-size: 22px;
	line-height: 1.3;
	margin: 0 0 12px;
	padding: 0;
	color: #333;
	font-weight: 600;
}

.faq-page .faq-item {
	border-top: 1px solid #eee;
}

.faq-page .faq-item__heading {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.faq-page .faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 14px 0;
	border: 0;
	background: none;
	text-align: left;
	cursor: pointer;
	font: inherit;
	color: #333;
	gap: 12px;
	min-height: 44px;
}

.faq-page .faq-question:hover,
.faq-page .faq-question:focus {
	color: #c45;
	outline: none;
}

.faq-page .faq-question__text {
	flex: 1;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
}

.faq-page .faq-question__icon {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	margin-top: -2px;
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	transform: rotate(45deg);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-page .faq-question:hover .faq-question__icon,
.faq-page .faq-question:focus .faq-question__icon {
	border-color: #c45;
}

.faq-page .faq-item--open .faq-question__icon {
	margin-top: 4px;
	border-color: #c45;
	transform: rotate(-135deg);
}

.faq-page .faq-answer {
	padding: 0 0 16px;
	font-size: 15px;
	line-height: 1.6;
	color: #555;
}

.faq-page .faq-answer[hidden] {
	display: none;
}

.faq-page .faq-answer p {
	margin: 0 0 10px;
}

.faq-page .faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-page .faq-answer a {
	color: #c45;
	text-decoration: underline;
}

@media (max-width: 767px) {
	.faq-page .faq-section__title {
		font-size: 19px;
	}

	.faq-page .faq-question__text {
		font-size: 15px;
	}

	.faq-page .faq-question {
		padding: 16px 0;
	}
}
