﻿.description-limit {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* 👇 This is the key part */
    line-height: 1.5;
    min-height: calc(1.5em * 3); /* forces 3 lines worth of space */
}
