How can I left align product title and price?

Hello i would like to move the product title and price from the center to the left side.

I tried it with different codes that are provided on similar questions but none of them worked for me.

@lukasphr add below code on base.css

.product-card__info {
text-align: left;
align-content: start;
justify-items: start;
}

.product-card__info .justify-items-center {
justify-items: start;
}

Thank you so much!!