Why:
The display: -webkit-box and -webkit-box-orient: vertical properties are used in conjunction with -webkit-line-clamp: 3 to limit the text to exactly three lines. overflow: hidden ensures that any content beyond these three lines is not visible, and text-overflow: ellipsis automatically appends an ellipsis to the truncated text.
Yeah, this is one of those where you think you have it then something breaks. I usually just reach for text-overflow: ellipsis and call it a day, but that only works for single lines.