.reviews {
  padding-top: 50px;
  padding-bottom: 57px;
  background-color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.review-text {
  font-family: var(--font-secondary);
  margin-bottom: 29px;
  opacity: 1;
  color: var(--color-primary);
  font-size: 40px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
}

.review-user-info {
  flex: 1;
}

.review-user-info h3 {
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
}

.review-country {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 100%;
  margin-top: 5px;
  padding-bottom: 4px;
}

.country-flag {
  width: auto;
  height: 13px;
}

.review-rating {
  display: flex;
  align-items: center;
}

.stars {
  display: flex;
  align-items: center;
  gap: 1px;
  justify-content: center;
}

.stars img {
  width: 16px;
  height: 16px;
}

.verified {
  font-size: 14px;
  line-height: 100%;
  opacity: 70%;
  margin-left: 10px;
}

.date {
  background-color: #F0F0F0;
  border-radius: 10px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  margin-left: 8px;
}

@media (max-width: 1069px) {
  .date {
    display: none;
  }
}

.review-comment {
  font-size: 17px;
  line-height: 22px;
  word-break: break-word;
}

@media (max-width: 768px) {
  .reviews {
    padding-top: 60px;
    padding-bottom: 51px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    row-gap: 50px;
  }

  .review-text {
    max-width: 80%;
  }
}