Please add the below Custom CSS code to Theme Settings > Custom CSS > Global custom CSS to control the title line limit.
.blog-design-masonry .post-title {
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 2; /* Change this value to control the number of lines */
}