Centralise text on product card - Trade Theme

Hi, how can i centralise the product name and the price text on the product cards (see attached). but without effecting text elsewhere

my theme is trade and URL is golazocasesuk.myshopify.com

Hello @golazocases

Go to Online Store > Edit Code > component-card.css file
Add the below code at the bottom of the file

.card__information,.card-information {
width: 100%;
text-align: center;
}

Thanks