.reviews {
  height: auto;
  display: flex;
  flex-direction: column;
}

.review-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  border: 2px solid var(--color-main);
  width: 600px;
  max-width: 90vw;
  border-radius: var(--border-radius-main);
  margin-bottom: 1rem;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-main);
  color: var(--color-bg-main);
  padding: 0.5rem;
}

.review-profile-img-wrapper {
  border-radius: 100px;
  border: 2px solid var(--color-bg-main);
  height: 3rem;
  width: 3rem;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.review-profile-img-wrapper img {
  height: 100%;
  width: auto;
}

.review-name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
}

.review-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.review-date {
  padding: 0.5rem;
  align-self: flex-end;
}
