/* FAQ-Akkordeon */

.wiesn-faq-content {
	padding-top: clamp(2rem, 5vw, 3rem);
}

.wiesn-faq-accordion {
	max-width: 52rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.wiesn-faq-item {
	border: 1px solid #f0f0f0;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wiesn-faq-item[open] {
	border-color: rgba(242, 154, 48, 0.35);
	box-shadow: 0 10px 32px rgba(242, 154, 48, 0.12);
}

.wiesn-faq-item__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.125rem 1.25rem;
	cursor: pointer;
	list-style: none;
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	font-weight: 600;
	line-height: 1.45;
	color: #171717;
	background: #fff;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.wiesn-faq-item__summary::-webkit-details-marker {
	display: none;
}

.wiesn-faq-item__summary::marker {
	content: '';
}

.wiesn-faq-item__summary:hover {
	background: #fafafa;
	color: #c97d20;
}

.wiesn-faq-item[open] .wiesn-faq-item__summary {
	background: rgba(242, 154, 48, 0.08);
	color: #171717;
}

.wiesn-faq-item__question {
	flex: 1;
	text-align: left;
}

.wiesn-faq-item__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	background: rgba(242, 154, 48, 0.12);
	color: #f29a30;
	transition: transform 0.22s ease, background-color 0.2s ease;
}

.wiesn-faq-item[open] .wiesn-faq-item__icon {
	transform: rotate(180deg);
	background: #f29a30;
	color: #fff;
}

.wiesn-faq-item__answer {
	padding: 0 1.25rem 1.25rem;
	border-top: 1px solid #f5f5f5;
}

.wiesn-faq-item__answer.wiesn-legal-entry {
	max-width: none;
	margin: 0;
}

.wiesn-faq-item__answer p,
.wiesn-faq-item__answer ul,
.wiesn-faq-item__answer ol {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.7;
	color: #525252;
}

.wiesn-faq-item__answer p:first-child,
.wiesn-faq-item__answer ul:first-child,
.wiesn-faq-item__answer ol:first-child {
	margin-top: 1rem;
}

.wiesn-faq-item__answer p:last-child,
.wiesn-faq-item__answer ul:last-child,
.wiesn-faq-item__answer ol:last-child {
	margin-bottom: 0;
}

.wiesn-faq-item__answer strong {
	color: #171717;
}

.wiesn-faq-item__answer a {
	color: #c97d20;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.wiesn-faq-item__answer a:hover {
	color: #f29a30;
}

.wiesn-faq-item__answer li {
	margin-bottom: 0.35rem;
}
