.resume-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 216px;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
}

.resume-hero-copy {
  min-width: 0;
}

.resume-hero-copy .page-title {
  margin: 0;
}

.resume-hero-copy .btn {
  margin-top: .6rem;
}

.resume-avatar {
  position: relative;
  display: grid;
  width: 216px;
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(210, 202, 190, .9);
  border-radius: 28%;
  background: linear-gradient(145deg, #e5ede8, #d5e0d9);
  box-shadow: 0 18px 45px rgba(37, 51, 45, .14);
}

.resume-avatar::after {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 24%;
  content: "";
  pointer-events: none;
}

.resume-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resume-avatar-placeholder {
  color: #315347;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 4.3rem;
  line-height: 1;
}

@media (max-width: 600px) {
  .resume-hero {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .resume-avatar {
    width: 96px;
  }

  .resume-avatar-placeholder {
    font-size: 2.35rem;
  }
}
