.faq {
	padding: var(--section-spacing) 0;
	background: var(--accent);
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: var(--white);
	border-radius: var(--corner-radius, var(--radius));
	margin-bottom: 15px;
	box-shadow: var(--shadow);
	border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 25px;
	border: 0;
	background: transparent;
	color: var(--text);
	font: inherit;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.faq-icon {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
	flex-shrink: 0;
	transition: transform .25s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .3s ease;
}

.faq-item.active .faq-answer {
	grid-template-rows: 1fr;
}

.faq-answer-inner {
	overflow: hidden;
	padding: 0 25px;
}

.faq-item.active .faq-answer-inner {
	padding-bottom: 22px;
}

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

.faq-footer {
	margin: 35px 0 0;
	text-align: center;
	font-weight: 600;
}

.faq-footer a {
	color: var(--secondary);
	font-weight: 700;
	text-decoration: none;
}

.faq-footer a:hover {
	text-decoration: underline;
}
