.reviews {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}
.feedback-btn {
  padding-left: 64px;
  padding-right: 64px;
}
.reviews__name-wrap {
  display: flex;
}
.reviews__name {
  margin-right: 30px;
  font-weight: 700;
  font-size: 16px;
}
.reviews__item {
  position: relative;
  display: flex;
  gap: 56px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.reviews__info {
  /* min-width: 200px; */
  min-width: 260px;
}
.reviews__left {
  flex: 3;
}
.reviews__right {
  flex: 1;
}
.reviews__item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d7d7d7;
}
.reviews__date {
  color: #a1a1a1;
  font-size: 14px;
  margin-top: 7px;
}
.reviews__confirm {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  padding-left: 24px;
}
.reviews__text {
  font-weight: 400;
  font-size: 14px;
}
.reviews__star {
  display: flex;
  align-items: center;
}
.reviews__star span {
  display: block;
  width: 24px;
  height: 24px;
}
.reviews__confirm::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 3px;
  left: 0;
  background: url("/assets/img/reviews/reviews_check-bold.svg") no-repeat;
}
@media only screen and (max-width: 1024px) {
  .reviews {
    flex-direction: column-reverse;
    gap: 32px;
  }
}
@media only screen and (max-width: 640px) {
  .reviews__right {
    text-align: center;
  }
  .reviews__item {
    flex-direction: column;
    gap: 20px;
  }
}
@media only screen and (max-width: 440px) {
  .feedback-btn {
    width: 100%;
    padding-left: auto;
    padding-right: auto;
  }
  .reviews__info {
    min-width: unset;
  }
}
