I've added CSS that truncate text to 3 lines, but after truncating, it repeats title after 3 dots.here is snapshot.
HTML
<p class="ccm-page-list-title">
<a href="/concrete5">Weight Plate Barbell Racking Calculator Imperial Units (Pounds) Weight Plate Barbell</a>
CSS
p.ccm-page-list-title {
-webkit-line-clamp: 3;
position: relative;
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
height: 90px;
font-size: 16px;
font-weight: 400;
line-height: 22px;
padding-top: 5px;
}