+
Unser Angebot richtet sich ganz nach Ihrem Bedarf. Die Preise und genauen Konditionen kalkulieren wir auf Anfrage. Jede Anfrage ist für Sie vollkommen unverbindlich.
@@ -317,4 +317,18 @@
});
revealElements.forEach(el => observer.observe(el));
+
+ // A11y FAQ Details Sync
+ const faqDetails = document.querySelectorAll('details');
+ faqDetails.forEach((details) => {
+ const summary = details.querySelector('summary');
+ if (summary) {
+ // Set initial state
+ summary.setAttribute('aria-expanded', details.open ? 'true' : 'false');
+
+ details.addEventListener('toggle', () => {
+ summary.setAttribute('aria-expanded', details.open ? 'true' : 'false');
+ });
+ }
+ });