Featured Product on Dawn Theme Home Page: Possible to format vertical placement of title?

Hello! The standard format for featured products on Dawn Theme home page is for the title (and all content) to be vertically placed at the top in the content next to the featured product photo.

I’d love for the title (and all text content on featured product) to be vertically CENTERED next to the product photo, not up at the top of the content box. Anyone have any tips or ideas on how to achieve this? Th

Hello @Alex4242

Follow the steps

Go to Online Store > Theme > Edit Code > base.css file
Add the below code at the end of the file

@media screen and (min-width: 750px) {
.featured-product {
align-items: center;
}
}

Thanks

Thank you so much. WORKS PERFECTLY!! I really appreciate it.