/* Radio statt Checkbox → echtes Akkordeon */
.faq-accordion input {
	display: none;
}
.faq-accordion label:hover {
	background: #eaeaea;
}
.faq-accordion label:active {
	transform: scale(0.98);
}
/* Pfeil */
.faq-accordion label .arrow {
	transition: transform 0.35s ease;
	font-size: 18px;
}
/* Plus */
.faq-accordion label .pm {
	font-size: 18px;
	margin-right: 10px;
	transition: opacity 0.25s ease;
}
/* geöffnet */
.faq-accordion input:checked ~ label .arrow {
	transform: rotate(90deg);
}
.faq-accordion input:checked ~ label .pm.plus {
	opacity: 0;
}
.faq-accordion input:checked ~ .content {
	max-height: 500px;
	padding: 14px;
	box-shadow: inset 0 4px 12px rgba(0,0,0,0.08);
}
.faq-accordion {
    border: 1px solid #d8c4a3; /* goldener Rahmen */
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 18px;
    background: #fffdf8; /* ganz leicht warmes Weiß */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.faq-accordion label {
    color: #5a3e1b; /* warmes Braun wie deine Buttons */
    font-weight: 600;
}
/* Geschlossen: Höhe = 0 */
.faq-accordion .content {
    max-height: 0;          /* WICHTIG! */
    overflow: hidden;       /* verhindert sichtbaren Inhalt */
    opacity: 0;
    transform: translateY(-3px);
    transition:
        max-height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.35s ease,
        transform 0.35s ease;
}

.faq-accordion input:checked ~ .content {
    max-height: 500px;
    padding: 14px;
    opacity: 1;
    transform: translateY(0);
}
.faq-accordion label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 6px;
}
