.c-faqs {
	max-width: 900px;
	margin: 60px auto;
	padding: 0 20px;
}

.c-faqs__title {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 30px;
}

.c-faqs__list {
	border-top: 1px solid #e0e0e0;
}

.c-faqs__item {
	border-bottom: 1px solid #e0e0e0;
}

.c-faqs__item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	cursor: pointer;
	user-select: none;
}

.c-faqs__item-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	flex: 1;
}

.c-faqs__item-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 300ms ease;
}

.c-faqs__item.is-open .c-faqs__item-icon {
	transform: rotate(180deg);
}

.c-faqs__item-content {
	display: none;
	overflow: hidden;
}

.c-faqs__item-text {
	padding: 0 0 24px;
	font-size: 16px;
	line-height: 1.6;
}

.c-faqs__item-text p:first-child {
	margin-top: 0;
}

.c-faqs__item-text p:last-child {
	margin-bottom: 0;
}

.blog-single__body-inner .c-faqs {
	max-width: none;
	padding: 0;
}
