.reviews__container {
	border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
	padding: 18px;
}

.reviews__title img {
    height: 48px;
    object-fit: contain;
}


.reviews__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.review-item {
  flex: 1 1 calc(33% - 20px);
}

.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 {
  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: var(--chinazes-color);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.reviews__more a:hover {
  background: rgba(190, 235, 40, 0.9);
}

/* 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;
  }
}
