/**
 * Show more content
 */

@media screen {

  .toggle-content {
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 200ms ease-in-out,
      opacity 250ms ease-in-out,
      margin-top 200ms ease-in-out;
  }

  .toggle-content.is-visible {
    margin-top: 1.5em;
    max-height: 80vh;
    opacity: 1;
  }
}
