/* Truncate text to 12 lines with ellipsis + paragraph spacing */
.truncate-12{
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;

  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
}

.truncate-12 p{ margin-bottom: 1em; }
.truncate-12 p:last-child{ margin-bottom: 0; }
