.wprce-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.wprce-review-container {
  display: flex;
  flex-wrap: wrap;
}

.wprce-review-container > div {
  padding: 10px;
  margin-right: 10px;
  border: 1px rgb(228, 154, 18) dashed;
  background: #d8d8d8;
  color: #222;
  margin-right: 2%;
  flex: 1 1 32%;
}

.wprce-review-content {
  font-size: 22px;
}

.wprce-reviewer-name {
  font-weight: 600;
  font-size: 22px;
}

.wprce-review-container > div:last-of-type {
  margin-right: 0;
}

@media screen and (max-width:1024px) {
  .wprce-review-container {
    flex-direction: column;
  }

  .wprce-review-container > div {
    margin-right: 0;
    margin-bottom: 10px;
    max-width: 100%;
  }
}