.about-me {
  border-radius: 5px;
  margin: 15px 0;
  padding: 15px;
  background-color: rgb(245, 245, 245);
  line-height: 1.6;
}
.about-me .title-top-me {
  font-size: 1rem;
  font-weight: 600;
  color: #121212;
}

.about-me-info {
  max-height: 150px;
  overflow-y: auto;
  font-size: 1rem;
  font-weight: 500;
  color: #121212;
}

.all-cards-review {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.review-card-item {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  padding: 24px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.review-card-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-card-item .reviewer-name,
.main-rating .text-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212121;
}
.main-rating .text-title {
  margin: 22px 0;
  text-align: center;
  font-size: 1.7rem;
}
.review-card-item .main-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.review-card-item .review-date {
  font-size: 0.87rem;
  color: #757575;
  font-weight: 600;
}

.review-card-item .rating-stars .fa-star {
  color: #d91a7f;
  font-size: 1.2rem;
  margin-left: 3px;
}
.review-card-item .rating-stars .star-grey {
  color: #c2c2c2;
}

.review-card-item .review-text {
  font-size: 1rem;
  color: #919191;
  line-height: 1.7;
  margin: 14px 0 10px 0;
  font-weight: 600;
}

.review-card-item .host-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-item .host-image-user {
  width: 50px;
  height: 50px;
  border: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.review-card-item .host-name-user {
  font-size: 1.1rem;
  font-weight: 500;
  color: #919191;
}

.review-card-item .host-comment {
  font-size: 1rem;
  font-weight: 600;
  color: #121212;
  margin-top: 10px;
}

@media screen and (max-width: 660px) {
  .all-cards-review {
    grid-template-columns: repeat(1, 1fr);
  }
}
