.hero-profile {
  position: relative;
  min-height: 560px;
}

.profile-portrait {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 24%, rgba(34, 164, 71, .16), rgba(34, 164, 71, 0) 34%),
    linear-gradient(145deg, #fff 0%, #f1fbf4 100%);
  box-shadow: var(--shadow);
}

.profile-portrait::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(34, 164, 71, .18);
}

.profile-kicker {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 4;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.profile-portrait img {
  position: absolute;
  right: -132px;
  bottom: -12px;
  z-index: 2;
  width: min(104%, 590px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(7, 26, 58, .28));
}

.profile-portrait figcaption {
  position: absolute;
  left: 30px;
  top: 66px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: min(285px, calc(100% - 60px));
  color: var(--navy);
}

.profile-portrait figcaption strong {
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.profile-portrait figcaption span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.profile-proof-card {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 5;
  width: min(320px, calc(100% - 52px));
  border-radius: 22px;
  background: var(--navy);
  box-shadow: 0 22px 52px rgba(7, 26, 58, .2);
  padding: 22px;
  color: #fff;
}

.profile-proof-card span {
  display: block;
  margin-bottom: 9px;
  color: #72df91;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.profile-proof-card strong {
  display: block;
  color: #fff;
  font-size: 23px;
  font-weight: 950;
  line-height: 1.08;
}

.profile-proof-card p {
  margin: 12px 0 0;
  color: #dce7f6;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .hero-profile {
    min-height: 520px;
  }

  .profile-portrait {
    min-height: 520px;
  }

  .profile-portrait img {
    right: -96px;
    width: min(88%, 540px);
  }
}

@media (max-width: 760px) {
  .hero-profile,
  .profile-portrait {
    min-height: 500px;
  }

  .profile-portrait img {
    right: -104px;
    width: min(108%, 540px);
  }
}

@media (max-width: 520px) {
  .hero-profile,
  .profile-portrait {
    min-height: 470px;
  }

  .profile-kicker {
    left: 20px;
    top: 20px;
  }

  .profile-portrait img {
    right: -112px;
    width: 122%;
  }

  .profile-portrait figcaption {
    left: 20px;
    top: 52px;
    width: calc(100% - 40px);
  }

  .profile-portrait figcaption strong {
    font-size: 28px;
  }

  .profile-proof-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 18px;
  }

  .profile-proof-card strong {
    font-size: 20px;
  }
}
