[data-accordion-content] {
  overflow: hidden;
  transition: max-height 250ms ease-in-out;
}
[data-accordion-content].show {
  max-height: var(--max-height, 100%);
}
[data-accordion-content]:not(.show) {
  max-height: 0;
}