.review-mosaic {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.mosaic-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.mosaic-item {
  position: relative;
  margin: -30px 0 0 -30px;
  transform: rotate(-3deg);
  transition: transform 0.3s ease, z-index 0.3s;
  z-index: 1;
}

.mosaic-item:nth-child(even) {
  transform: rotate(3deg);
  margin-top: 0;
}

.mosaic-item:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 2;
}

.mosaic-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.1);
  display: block;
}
@media (max-width: 768px) {
  .mosaic-track {
    grid-template-columns: 1fr;
  }

  .mosaic-item {
    margin: 0;
    transform: rotate(0deg);
  }

  .mosaic-item img {
    height: 220px;
  }
}