.hero-founder {
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 7px 18px 7px 7px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(78, 231, 255, .28);
  border-radius: 16px;
  background: linear-gradient(110deg, rgba(78, 231, 255, .09), rgba(255, 255, 255, .025));
  box-shadow: 0 14px 45px rgba(0, 0, 0, .2);
}

.hero-founder img {
  width: 66px;
  height: 72px;
  object-fit: cover;
  object-position: 50% 29%;
  border-radius: 11px;
  filter: saturate(.9) contrast(1.03);
}

.hero-founder div {
  display: flex;
  flex-direction: column;
}

.hero-founder span {
  color: var(--cyan);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-founder strong {
  margin-top: 2px;
  font-family: Manrope, sans-serif;
  font-size: .98rem;
  letter-spacing: -.02em;
}

@media (max-width: 580px) {
  .hero-founder {
    margin-top: 20px;
    padding-right: 14px;
  }

  .hero-founder img {
    width: 58px;
    height: 64px;
  }

  .hero-founder strong {
    font-size: .9rem;
  }
}
