.vc-cartes-container {
  position: relative;
  width: 100%;
  height: 400px;
  perspective: 1000px;
  margin: 40px 0;
}

.vc-carte {
  position: absolute;
  top: 50%; left: 50%;
  width: 200px; height: auto;
  margin: -160px 0 0 -110px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform-origin: bottom center;
  transition: z-index 0.2s, transform 0.3s;
  z-index: 1;
  text-align: center;
  padding: 12px;
  border: solid 2px lightgray;
}

.vc-carte:hover {
  z-index: 10;
}

/* Titre */
.vc-titre {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 8px;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Photo */
.vc-photo {
  /* width: 200px; */
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
}
.vc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

/* Résumé sous l’image */
.vc-resume {
  padding: 16px 3px 10px;
  font-size: 0.95em;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
/* @media (max-width: 768px) {
  .vc-cartes-container {
    height: auto;
    perspective: none;
  }
  .vc-carte {
    position: relative;
    top: auto; left: auto;
    margin: 12px auto;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
  }
} */
