

/* Update - quentin@bienavous.be */
.readmore-text {
  transition: max-height 500ms ease;
  max-height: 0;
  overflow: hidden;
}

.readmore-text.is-open {
  max-height: 2000px; /* generous ceiling */
}

.readmore-summary {
  transition: opacity 250ms ease;
}

.readmore-summary.is-hidden {
  display: none;
}

.readmore-toggle {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
}
