.faqs {
	width: 100%;
	margin-top: var(--py-section);
	margin-bottom: var(--py-section);
}

.faqs.is-grey {
	margin: 0;
	padding-top: var(--py-section);
	padding-bottom: var(--py-section);
	background-color: var(--color-light);
}

.faqs-list {
	display: grid;
	row-gap: 15px;
	margin-top: 40px;
}

.faqs-item {
	background: var(--color-white);
	box-shadow: 0 5px 8px rgba(0, 0, 0, .08);
}

.faqs-link {
	padding: 20px 45px 20px 30px;
	font-weight: 700;
	cursor: pointer;
	position: relative;
}

.faqs-link:after {
	content: '+';
	font-size: 20px;
	font-weight: 700;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 25px;
}

.faqs-panel {
	padding: 0 30px;
	transition: all 200ms ease-in-out;
	max-height: 0;
	position: relative;
	overflow: hidden;
}

.faqs-panel p {
	padding-bottom: 15px;
}

.faqs-item.open .faqs-link:after {
	content: '-';
	font-size: 28px;
}
