How can I limit the featured collection description for better mobile view?

I want to limit my description in the featured products it is too long and not looking good on mobile

My store. https://ahmad-store9.myshopify.com/

Pass . ahmad

Hi @Ahmad30120 ,

You can add below code to very bottom of base.css

Go to Online store > Themes > Actions > Edit code > Search for Assets folder > Base.css

h3.card__heading.h5 {
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
     width: 12%;
}