Hey @tuanphan
thanks a lot. Actually it works for the text wrapper, but not for the text inside it, which remains unaligned if we have two lines for example (longer texts still go beyond the wrapper on the right side.
BUT ! I found the solution using chat GPT
after a long time of exploration, suggestions and questions we finally found the solution which is:
In the section Design > custom CSS:
.index-item-text-wrapper h2 {
display: flex;
align-items: center;
justify-content: center;
}
you're right, the "h2" was a key element to solve the problem 🙂