.bounceCardsContainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  will-change: transform;
  backface-visibility: hidden;
}

.card .image-wrapper {
  width: 100%;
  height: 100%;
  border: 5px solid #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.card .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.card-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1A3264;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 72px;
  height: 72px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.card:hover .card-badge {
  transform: scale(1.15) rotate(5deg);
}
