You can use following code to align Product Name and Price Same line
/* title price same line */
section.grid-meta-wrapper {
flex-direction: column;
}
.grid-main-meta {
display: flex;
align-items: center;
justify-content: space-between;
}