.tilted-card-figure {
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tilted-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}
.tilted-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.tilted-card-caption {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
  background-color: #fff;
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #2d2d2d;
  opacity: 0;
  z-index: 3;
  will-change: transform, opacity;
}
@media (max-width: 640px) {
  .tilted-card-caption { display: none; }
}
