Add this code to the Custom CSS field on the Appearance tab of your YouTube Gallery widget’s settings:
.global-styles,
:root {
--line-clamp: 2
}
.yottie-widget-video-info-title {
height: calc(var(--line-clamp) * 18px);
white-space: wrap;
display: -webkit-box;
-webkit-line-clamp: var(--line-clamp);
-webkit-box-orient: vertical;
}