.reviews-section ul {
    display: flex;
	margin: 0;
}
.reviews-section ul li {
	width: 33%;
}
.reviews-section .wp-block-post-excerpt p{
	display: -webkit-box;        /* Creates a flexible box for text */
  -webkit-box-orient: vertical; /* Vertical orientation */
  -webkit-line-clamp: 3;       /* Number of lines to show */
  overflow: hidden;             /* Hide overflowing text */
  text-overflow: ellipsis; 
}