.owner-section {
  padding: 0;
  background: #202427;
}

.owner-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(340px, 46%) minmax(0, 1fr);
  align-items: stretch;
}

.owner-photo {
  margin: 0;
  min-height: 650px;
  overflow: hidden;
  background: #151819;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.owner-copy {
  max-width: 680px;
  padding: 110px clamp(40px, 7vw, 120px);
  align-self: center;
}

.owner-copy h2 {
  margin-bottom: 32px;
}

.owner-copy > p:not(.eyebrow):not(.credential) {
  color: #d0d4d5;
  font-size: 1.125rem;
  line-height: 1.8;
}

.owner-copy .credential {
  margin-top: 34px;
}

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

  .owner-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .owner-photo img {
    object-position: 50% 28%;
  }

  .owner-copy {
    padding: 70px 20px 80px;
  }
}
