How to change testimonials text alignment in Hestia
📍 Appearance > Customize > Frontpage Sections > Testimonials
⏪ Before changing the alignment
By default, the text-align property is set to center, but it can be adjusted to be left, right, or justify.
.card-testimonial .card-description {
text-align: center;
}

⏩ After changing the alignment
To change the testimonials text alignment in Hestia, please navigate to Appearance > Customize > Additional CSS section and add the following code:
.card-testimonial .card-description {
text-align: left;
}
📝Note: The word "left" can be replaced with any direction desired, like right or justify.

That's it! Save your changes and you're done.