.section-owners {
  margin: 0 0 28px;
  padding: 22px;
  color: var(--green, #174737);
  background: var(--paper, #f8f8f3);
  border: 1px solid #dce2d5;
  border-radius: 16px;
}
.section-owners-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
}
.section-owners-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #806045;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.section-owners-heading h2 {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.section-owners-org {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  min-height: 32px;
  color: #315e49;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.section-owners-org:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.section-owners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 11px;
}
.section-owner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 118px;
  padding: 15px 13px;
  border: 1px solid #e0e5d9;
  border-radius: 11px;
  background: #fffefa;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}
.section-owner:hover {
  background: #f4f6eb;
  border-color: #9bb3a2;
}
.section-owner:focus-visible,
.section-owners-org:focus-visible {
  outline: 3px solid var(--copper, #965134);
  outline-offset: 4px;
}
.section-owner-portrait,
.section-owner-initials {
  display: block;
  width: 56px;
  height: 64px;
  flex: 0 0 56px;
  border-radius: 9px;
  object-fit: cover;
  object-position: center 26%;
  background: #e4eadc;
}
.section-owner-initials {
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
}
.section-owner-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.section-owner-remit {
  color: #886045;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 600;
}
.section-owner-copy strong {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}
.section-owner-role {
  font-size: 10px;
  line-height: 1.4;
  color: #4c6759;
}
.section-owner-detail {
  font-size: 10px;
  line-height: 1.45;
  color: #687261;
}
.section-owner-arrow {
  margin-left: auto;
  align-self: flex-start;
  color: var(--copper, #965134);
  font-size: 15px;
}
.section-owners-note {
  margin: 13px 0 0;
  max-width: 85ch;
  color: #66715e;
  font-size: 11px;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .section-owners {
    padding: 17px;
  }
  .section-owners-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .section-owner {
    min-height: 104px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-owner {
    transition: none;
  }
}
