.reviews {
  /* padding: 50px 15px; */
}


.reviews__title img {
    height: 48px;
    object-fit: contain;
}


.reviews__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.review-item {
  background: linear-gradient(180deg, #33383a 0%, #1f2022 100%);
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 calc(33% - 20px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4285F4;
}

.review-user__name {
	font-weight: 600;
	color: #fff;
}

.review-rating {
  color: #f5c518; /* золотий колір зірок */
}

.review-text {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Галерея фото від користувача */
.review-photos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-photos img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}

/* Кнопка "Більше відгуків" */
.reviews__more {
  margin-top: 25px;
  text-align: center;
}

.reviews__more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #4285F4;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.reviews__more a:hover {
  background: #357ae8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .review-item {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .review-item {
    flex: 1 1 100%;
  }

  .review-photos img {
    width: 50px;
    height: 50px;
  }
}
