How can I top-align a table for mobile view?

Hi,

In the following page, I have set up a table.

On desktop view, it looks fine and correct. But in mobile view, because the text in on two lines, the boxes don’t line up. I think it is because, they are ‘middle align’. Can the table be ‘top aligned’?

https://www.myozco.com/collections/discover

PW: Myozco123456

@leehew

Please add the following code at the bottom of your assets/theme.scss.liquid file.

#CollectionSection .rte td {
    vertical-align: top;
}

Hope this works.

Thanks!