/* v1.0.1 — true circular hero portrait */
.incp-hero__photo {
  width: min(100%, 590px);
  min-height: 0;
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  isolation: isolate;
}

.incp-hero__photo::before {
  inset: -18px;
  border-radius: 50%;
  border-color: rgba(24, 55, 47, 0.24);
  z-index: -1;
}

.incp-hero__photo::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 12%;
  width: 54px;
  aspect-ratio: 1;
  border: 9px solid var(--ivory);
  border-radius: 50%;
  background: var(--green);
  z-index: 2;
}

.incp-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  clip-path: circle(49.85% at 50% 50%);
  -webkit-clip-path: circle(49.85% at 50% 50%);
  background: #f3ede3;
  box-shadow: 0 34px 80px rgba(24, 55, 47, 0.15);
}

.incp-hero__photo span {
  right: 50%;
  bottom: -50px;
  width: max-content;
  max-width: 90vw;
  transform: translateX(50%);
  color: var(--ink);
  text-shadow: none;
}

@media (max-width: 1050px) {
  .incp-hero__photo {
    width: min(76vw, 560px);
    min-height: 0;
    margin: 32px auto 58px;
  }

  .incp-hero__photo img {
    height: 100%;
  }
}

@media (max-width: 650px) {
  .incp-hero__photo {
    width: min(84vw, 410px);
    min-height: 0;
    margin-bottom: 50px;
  }

  .incp-hero__photo::before {
    inset: -10px;
  }

  .incp-hero__photo::after {
    width: 38px;
    border-width: 6px;
  }

  .incp-hero__photo img {
    height: 100%;
  }

  .incp-hero__photo span {
    bottom: -42px;
    font-size: 0.54rem;
    letter-spacing: 0.1em;
  }
}
