.home-hero {
  min-height: 630px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
  padding: clamp(70px, 8vw, 108px) 0;
}

.home-copy {
  min-width: 0;
}

.home-profile {
  width: 100%;
  max-width: 390px;
  aspect-ratio: 0.92;
  justify-self: end;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 48px);
}

.home-profile img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  background: #0b1728;
}

@media (max-width: 920px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-profile {
    max-width: 320px;
    justify-self: start;
  }
}
