more information pointer

| BeSt Innsbruck: 02.12. to 04.12.2026|BeSt Klagenfurt 15.10. to 17.10.2026|c&c / master lounge: 29. April 2026|Visio Tirol: 26.11. to 27.11.2025
| BeSt Innsbruck: 02.12. to 04.12.2026|BeSt Klagenfurt 15.10. to 17.10.2026|c&c / master lounge: 29. April 2026|Visio Tirol: 26.11. to 27.11.2025
document.addEventListener("DOMContentLoaded", function () { const maxChars = 450; const elements = document.querySelectorAll(".mobile-readmore-text"); if (window.innerWidth <= 767) { elements.forEach(function (el) { const fullText = el.textContent.trim(); if (fullText.length > maxChars) { const shortText = fullText.substring(0, maxChars) + "…"; el.innerHTML = '' + shortText + 'Mehr anzeigen'; const toggle = el.querySelector(".mobile-readmore-toggle"); const shortPart = el.querySelector(".short-text"); const fullPart = el.querySelector(".full-text"); toggle.addEventListener("click", function () { const expanded = fullPart.style.display === "inline"; if (expanded) { fullPart.style.display = "none"; shortPart.style.display = "inline"; toggle.textContent = "Mehr anzeigen"; } else { fullPart.style.display = "inline"; shortPart.style.display = "none"; toggle.textContent = "Weniger anzeigen"; } }); } }); } });