/* Truncate long recipe descriptions in cards */
.recipe-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.2em; /* ~2 lines for most fonts */
  min-height: 1.6em;
  line-height: 1.6em;
  margin-bottom: 0.5em;
}
