.meta,
.description,
.link {
  display: none;
  opacity: 0;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 200ms;
  animation-timing-function: ease-in-out;
}

.showMeta .meta,
.showDescription .description,
.showLink .link {
  display: block;
  animation-name: show;
}

@keyframes show {
  to {
    opacity: 1;
  }
}

.description {
  margin-bottom: 0;
  font-size: inherit;
  margin-top: var(--size-medium);
}

.singleLineDescription .description {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.link {
  margin-top: var(--size-medium);
  position: absolute;
  z-index: 1;
  bottom: var(--size-medium);
}