.founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8vw;
  align-items: center;
  background: #ddd6ca;
}

.founder-portrait {
  min-height: 680px;
  overflow: hidden;
  background: #262626;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  display: block;
  object-fit: cover;
  object-position: 39% center;
  filter: saturate(.88) contrast(1.03);
}

.founder-story {
  max-width: 650px;
}

.founder-story .eyebrow {
  margin: 70px 0 16px;
  color: var(--rust);
}

.founder-story h2 {
  margin: 0 0 34px;
  font-family: Italiana, serif;
  font-size: clamp(52px, 6vw, 94px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.03em;
}

.founder-story p:not(.section-number):not(.eyebrow) {
  color: #5f584f;
  font-size: 15px;
  line-height: 1.75;
}

.founder-story .founder-lead {
  color: var(--ink) !important;
  font-family: Italiana, serif;
  font-size: clamp(24px, 2.4vw, 36px) !important;
  line-height: 1.25 !important;
}

.founder-story blockquote {
  margin: 38px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: Italiana, serif;
  font-size: 22px;
  line-height: 1.4;
}

@media (max-width: 850px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-portrait,
  .founder-portrait img {
    min-height: 520px;
  }

  .founder-story .eyebrow {
    margin-top: 45px;
  }
}

@media (max-width: 520px) {
  .founder-portrait,
  .founder-portrait img {
    min-height: 440px;
  }

  .founder-portrait img {
    object-position: 42% center;
  }
}
