.footer-menu {
  margin-bottom: 2em;
  min-width: 12ch;
}
.footer-menu-title-toggle {
  font-weight: bold;
  margin: 0;
  font-size: var(--wp--preset--font-size--base);
  font-family: var(--wp--preset--font-family--harmonia);
  background: none;
  border: none;
  width: 100%;
  text-align: left;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5em 0;
  color: var(--wp--preset--color--off-black);
}
.footer-menu-title-indicator {
  font-size: var(--wp--preset--font-size--small);
  margin-right: 0.5em;
  margin-left: 0;
  transition: transform 0.2s;
}
.footer-menu-list-wrapper {
  transition:
    max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s;
  overflow: hidden;
  max-height: 2000px;
  opacity: 1;
}
.footer-menu-title-indicator {
  display: none;
}
@media (max-width: 900px) {
  .footer-menu-title-indicator {
    display: inline-block;
  }
  .footer-menu-title-toggle {
    cursor: pointer;
  }
  .footer-menu-list-wrapper {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }
  .footer-menu-list-wrapper.open {
    max-height: 2000px;
    opacity: 1;
    pointer-events: auto;
  }
}
.footer-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--wp--preset--font-size--x-small);
}
.footer-menu-list li {
  position: relative;
  margin-bottom: 0.3em;
}
.footer-menu-list a {
  text-decoration: none;
  color: inherit;
  padding: 2px 0;
  display: inline-block;
  color: var(--wp--preset--color--off-black);
}
.footer-menu-list a:hover {
  color: var(--wp--preset--color--primary);
}
.footer-menu p:empty {
  display: none;
}
