.review-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(230px, 1fr));
  padding: 20px;
  column-gap: 10px;
  max-height: 70vh;
  overflow-y: auto;
}

.review-card {
  background: #f8f9fa;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 0 0 rgba(182,196,210,.4);
  border-radius: 2px;
  margin: 0 0 16px;
}

.review-name-date {
  margin: 8px 8px 6px 0;
}
.verified {
  font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
}
.review-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333333;
  font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: rgb(25, 25, 25);
}
.review-name {
  font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  color: rgba(0,0,0, 0.6);
}
.review-stars {
  font-size: 1.2rem;
  color: #f5a623;
}

.review-stars .star {
  background-color: #00b67a;
}
.star.empty {
  color: #e0e0e0;
}

.review-desc {
  font-size: 1rem;
  color: #555555;
  font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: rgb(25, 25, 25);
}

.review-date {
  font-size: 0.9rem;
  color: #888888;
  text-align: right;
  font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: 12px;
  font-weight: 400;
  line-height: 14.4px;
  color: rgba(0,0,0, 0.6);
}

@media (min-width: 540px){
  .review-container {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
  }
}
@media (min-width: 768px){
  .review-container {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}
@media (min-width: 1401px){
  .review-container {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
  }
}