I think the best move would be to assign a minimum height via CSS. That way when names wrap to the next line it won't take any more height, because we are just defining the minimum.
Try adding this to your altskin or custom CSS:
Code:
.products a.product-title {
display: block;
min-height: 44px;
}