(Squarespace) How to limit Event Pagination to max 3 lines on Mobile

To limit Event Pagination text to max 3 lines on Mobile, from this.

to this.

You can use this code to Custom CSS box.
If it doesn’t work, you can email or message me.

@media screen and (max-width:767px) {
    .item-pagination[data-collection-type^="events"] h2.item-pagination-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
    overflow: hidden;
}}