.developer-portrait {
  width: min(460px, 100%);
  aspect-ratio: 1;
  isolation: isolate;
}

.developer-portrait .portrait-glow {
  inset: 4%;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(145deg, #ef2ac3, #6f55ff 52%, #65d8ee);
  filter: blur(34px);
  opacity: .28;
}

.developer-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 42%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 35px 70px rgba(0, 0, 0, .42),
    0 0 50px rgba(225, 44, 198, .08);
}

.developer-portrait .portrait-label {
  right: -10px;
  bottom: 8%;
  z-index: 2;
  color: #c8d3df;
  background: rgba(8, 12, 19, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 720px) {
  .developer-portrait {
    width: min(390px, 100%);
  }

  .developer-portrait .portrait-label {
    right: 10px;
  }
}
