.review {
  padding-bottom: 50px;
  max-width:1000px; 
  margin:auto;
}
.review__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: #2C2F33;
}
.review__item {
  background: #FFFFFF;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 15px;
  margin-top: 30px;
}

.review__item-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  padding-right: 10px;
  margin-bottom: 5px;
}
.review__item-date {
  font-size: 12px;
  line-height: 15px;
  color: #A2A2A2;
}
.review__item-text {
  margin-top: 25px;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.review__item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.review__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.review__buttons button {
  height: 46px;
}
.review__btn-more {
  background: transparent;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 12px 40px;
  font-size: 16px;
  line-height: 22px;
  color: #2C2F33;
  margin-right: 20px;
}
.review__btn-write {
  background: #FFEA00;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #2C2F33;
  border: none;
  padding: 12px 40px;
}


.review__modal-status {
  display: none;
}

.review__modal-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #2C2F33;
  margin-bottom: 10px;
}
.review__modal-textarea {
  font-size: 16px;
  min-height: 200px;
  display: block;
  width: 100%;
  padding: 15px 10px;
}

.review__modal-btn {
  display: block;
  margin-left: auto;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #2C2F33;
  background: transparent;
  font-size: 16px;
  line-height: 20px;
  color: #2C2F33;
}


@media (max-width: 500px) {
  .main {
    padding: 0;
  }
  .card__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 30px;
  }
  .card__item-title {
    font-weight: 450;
    font-size: 16px;
    line-height: 20px;
  }
  .review__item-text {
    font-size: 14px;
    line-height: 18px;
  }
  .review__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-direction: column;
  }
  .review__btn-more {
    margin-right: 0;
    margin-bottom: 20px;
  }
}