.vc-reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  align-items: stretch;
}

.vc-review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vc-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.vc-review-logo img {
  max-width: 100px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.vc-review-card:hover .vc-review-logo img {
  transform: scale(1.1) rotate(-1deg);
}
.vc-review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
}
.vc-review-name {
  font-weight: bold;
  font-size: 1rem;
}
.vc-review-position {
  font-size: 0.9rem;
  color: #777;
}
