This is the three sub heading

I am the three heading

Here goes your text ... Select any part of your text to access the formatting toolbar.
Contact
This is the three sub heading

I am the three heading

Here goes your text ... Select any part of your text to access the formatting toolbar.
Contact
This is the three sub heading

I am the three large heading

Here goes your text ... Select any part of your text to access the formatting toolbar.
Contact
<script>
// JavaScript
document.addEventListener("DOMContentLoaded", function () {
  const container = document.querySelector(".fb-content-22");
  let currentActiveElement = null;

  container.addEventListener("focusin", function (event) {
    const newActiveElement = event.target.closest(".fb-content-22__card");
    if (newActiveElement) {
      if (currentActiveElement) {
        currentActiveElement.classList.remove("active");
      }
      currentActiveElement = newActiveElement;
      currentActiveElement.classList.add("active");
    }
  });

  container.addEventListener("focusout", function (event) {
    const outOfFocusElement = event.target.closest(".fb-content-22__card");
    if (currentActiveElement && currentActiveElement !== outOfFocusElement) {
      currentActiveElement.classList.remove("active");
      currentActiveElement = null;
    }
  });

  container.addEventListener("mouseover", function () {
    const cards = container.querySelectorAll(".fb-content-22__card");
    cards.forEach((card) => {
      card.classList.remove("active");
    });
  });
});

</script>