.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 730px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-image-wrap::before,
.hero-image-wrap::after {
  content: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: 22% 50%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}
