.angie-faq-wrapper {
	width: 100%;
}

.angie-faq-title {
	margin: 0;
	padding: 0;
	/* Margin-bottom controlled via settings */
}

.angie-faq-accordion {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.angie-faq-item {
	overflow: hidden;
	transition: all 0.3s ease;
}

.angie-faq-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
	transition: color 0.3s ease;
}

.angie-faq-icon {
	font-size: 14px;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.angie-faq-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

/* Actieve status */
.angie-faq-item.is-active .angie-faq-icon {
	transform: rotate(45deg); /* Plus naar kruisje */
}

.angie-faq-item.is-active .angie-faq-content {
	opacity: 1;
	/* max-height wordt via JS gezet */
}
