﻿.shortDescriptio {
    max-height: 3em; /* Limits to approximately 2 lines (1.5em per line) */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Restricts to 2 lines */
    -webkit-box-orient: vertical;
    white-space: normal; /* Allows wrapping of text */
}
