.excerpt-hidden {
  max-height: 0px;
  overflow: hidden;
  position: relative;
  transition: max-height 1.5s;
}
.excerpt-visible {
  max-height: 1500px;
  overflow: auto;
  transition: max-height 1.5s;
}

