/**
 * FAQ Bridge for Divi 5 — structurele CSS.
 * Geen kleuren of fonts hier: die komen uit Divi's Design-tab
 * (module.json elementen) zodat Global Colors en presets doorwerken.
 */
.ewfb5_faq_module .ewfb5-list { display: flex; flex-direction: column; }
.ewfb5_faq_module .ewfb5-item { overflow: hidden; }
.ewfb5_faq_module .ewfb5-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
	padding: 14px 4px;
	-webkit-appearance: none;
}
.ewfb5_faq_module .ewfb5-icon {
	flex: 0 0 auto;
	line-height: 1;
	transition: transform .2s ease;
}
.ewfb5_faq_module .ewfb5-item[data-open="1"] .ewfb5-icon { transform: rotate(180deg); }
.ewfb5_faq_module .ewfb5-a { padding: 0 4px 16px; }
.ewfb5_faq_module .ewfb5-a > *:first-child { margin-top: 0; }
.ewfb5_faq_module .ewfb5-a > *:last-child  { margin-bottom: 0; }
.ewfb5_faq_module .ewfb5-empty { opacity: .6; font-style: italic; }
