Thanks, yes I played with line-height, but it also changed the space between the second line (when it was spread over two lines on the device.)
But your suggestion about block did the trick!
h3 { line-height:4em; }
.line2 { display:block; line-height:1em; }
Seems to give the flexibility I wanted.