youtubeタイトル3行に増やす

youtubeのサムネのタイトルを2行から3行に

/* ==UserStyle==
@name           youtubeタイトル3行に増やす
@namespace      github.com/openstyles/stylus
@version        1.0.1
@description    youtubeのサムネのタイトルを2行から3行に
@author         Me
@license        MIT
==/UserStyle== */

@-moz-document url-prefix("https://www.youtube.com/") {
#meta {
    overflow: hidden;
}
.ytd-rich-grid-row.style-scope {
    margin-bottom: 15px;
}
#video-title.ytd-rich-grid-media {
    max-height: 6.6rem;
    height: 66px;
    -webkit-line-clamp: 3;
}
}