.founder-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 169, 183, .1), transparent 27rem),
    #fff;
}

.founder-section::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  left: -210px;
  bottom: 45px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(232, 248, 249, .55);
}

.founder-card {
  position: relative;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 84px;
  align-items: center;
}

.founder-card__visual {
  position: relative;
  padding: 28px 28px 42px 0;
}

.founder-card__visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 76%;
  border-radius: 24px;
  background: var(--cyan-soft);
}

.founder-portrait {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center 18%;
}

.founder-experience {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 0;
  width: 190px;
  padding: 22px 24px;
  border-radius: 15px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 20px 38px rgba(8, 44, 70, .22);
}

.founder-experience strong,
.founder-experience span {
  display: block;
}

.founder-experience strong {
  color: #65e4e5;
  font: 800 2.65rem/1 Manrope, sans-serif;
  letter-spacing: -.06em;
}

.founder-experience span {
  margin-top: 8px;
  font-size: .79rem;
  line-height: 1.45;
}

.founder-card__content h2 {
  color: var(--navy);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
}

.founder-role {
  margin: 9px 0 19px;
  color: var(--cyan);
  font: 700 1.05rem Manrope, sans-serif;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 27px;
}

.founder-credentials span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid #bfe5e8;
  border-radius: 99px;
  background: var(--cyan-soft);
  color: #087c84;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.founder-card__content > p:not(.founder-role) {
  max-width: 690px;
}

.founder-note {
  position: relative;
  margin: 31px 0 0;
  padding: 23px 25px;
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: var(--mist);
}

.founder-note > span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.founder-note p {
  margin: 0;
  color: #395462;
  font-size: .98rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .founder-card {
    grid-template-columns: .85fr 1.15fr;
    gap: 45px;
  }

  .founder-portrait img {
    height: 500px;
  }

  .founder-experience {
    right: 0;
  }
}

@media (max-width: 760px) {
  .founder-section {
    padding: 75px 0;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .founder-card__visual {
    width: min(100%, 510px);
    padding-right: 24px;
  }

  .founder-portrait img {
    height: min(610px, 118vw);
  }

  .founder-experience {
    right: 0;
  }
}

@media (max-width: 430px) {
  .founder-card__visual {
    padding: 18px 14px 37px 0;
  }

  .founder-portrait,
  .founder-card__visual::before {
    border-radius: 18px;
  }

  .founder-experience {
    width: 165px;
    padding: 18px 20px;
  }

  .founder-experience strong {
    font-size: 2.25rem;
  }

  .founder-card__content h2 {
    font-size: 2.35rem;
  }

  .founder-note {
    padding: 20px;
  }
}
