
.renocrew-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #ffe5d9, #d4f8e8);
}
.renocrew-card {
  width: 280px;
  height: 360px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 1s;
}
.renocrew-card:hover {
  transform: rotateY(180deg);
}
.renocrew-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.renocrew-card .content {
  padding: 15px;
  font-family: Georgia, serif;
  text-align: center;
}
.renocrew-card .quote {
  font-style: italic;
  color: #444;
  margin-top: 10px;
}
