Przejdź do treści
document.addEventListener("click", function (event) {
const button = event.target.closest(".ciba-read-more");
if (!button) return;
const textBlock = button.previousElementSibling;
if (!textBlock) return;
const expanded = textBlock.classList.contains("expanded");
if (expanded) {
textBlock.classList.remove("expanded");
textBlock.classList.add("collapsed");
button.textContent = "Czytaj więcej ↓";
button.setAttribute("aria-expanded", "false");
} else {
textBlock.classList.remove("collapsed");
textBlock.classList.add("expanded");
button.textContent = "Zwiń ↑";
button.setAttribute("aria-expanded", "true");
}
});