.spin-wheel-media {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 68px;
}

.spin-wheel-artwork {
  width: 68px;
  height: 68px;
  display: block;
  object-fit: cover;
  border-radius: 7px;
  box-shadow:
    0 5px 10px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transform:
    rotate(-1.5deg)
    scale(0.98);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.spin-wheel-item.is-selected
.spin-wheel-artwork {
  transform:
    rotate(0deg)
    scale(1.03);
  box-shadow:
    0 7px 14px rgba(0, 0, 0, 0.48),
    0 0 14px rgba(210, 139, 73, 0.10);
}

@media (max-width: 540px) {
  .spin-wheel-media,
  .spin-wheel-artwork {
    width: 62px;
    height: 62px;
  }

  .spin-wheel-media {
    flex-basis: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spin-wheel-artwork {
    transition: none;
  }
}
