Change the size of the Featured Blog Posts on my Homepage

Hello,

In my shopify homepage (I have the theme Sense), I would like to make some changes on the appaerence of the blog posts.

  1. When I have 4 posts in a row, the title line breaks and becomes really really long, even if the size is set at ‘small’; (enclosed you’ll find the image) so, I would like to change the size of blog posts titles and avoid for it to go so long.
    I also would like to limit the words of the post excerpt to a maximum of 12 words. Is this possible? I would like for it to be like the second picture enclosed (made with external app).
    Thank you so much

Hi,
Can you provide your store url ?

www.yourwedding-initaly.com

could you help me?

Go to your online store > Customize > Settings > Custom Css

and paste this code there

.article-card .card__heading {
    margin-bottom: 0.6rem;
    font-size: small;
}

.article-card__excerpt {
    width: 100%;
    margin-top: 1.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}