.cropped-image-container {
  width: 50px;
  height: 50px; /* 70% of 400px */
  overflow: hidden;
  position: relative;
}

.cropped-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  position: absolute;
  top: -6px; /* Move up by 30% of 40px */
  left: 0;
}
