/* Preise Page Styles */

/* FAQ Styles */
.faq-list {
	width: 100%;
}

.faq-item {
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: .5rem;
}

.faq-question {
	width: 100%;
	padding: 1.5rem 0;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--txt);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color .2s;
}

.faq-question:hover {
	color: var(--brand);
}

.faq-question[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 0 1.5rem 0;
	color: var(--muted);
	line-height: 1.6;
	overflow: hidden;
	transition: max-height .3s ease-out, opacity .3s ease-out;
	max-height: 200px;
	opacity: 1;
}

.faq-answer[hidden] {
	max-height: 0;
	opacity: 0;
	padding: 0;
	margin: 0;
}