[data-expander] {
  transition: var(--transition-fast);
  overflow: hidden;
  position: relative;
}

.expander-content {
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: all 0.25s ease-out;
  opacity: 0;
}

.expander-active .expander-content {
    opacity: 1;
  }

.expander-toggle {
  display: flex;
  justify-content: center;
  position: relative;
}

