.founders {
  background: var(--navy2);
  color: #fff;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 7vw, 8rem);
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(420px, 1.35fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.founders-heading {
  align-self: start;
  position: sticky;
  top: 3rem;
}

.founders-heading > p:last-child {
  color: #bcc8d2;
  font-size: 1.08rem;
  max-width: 520px;
  margin-top: 2rem;
}

.founders-portrait {
  margin: 2.25rem 0 0;
  max-width: 520px;
  position: relative;
  border: 1px solid rgba(245, 182, 66, .55);
  background: #020b14;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.founders-portrait::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .22);
  pointer-events: none;
}

.founders-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.founders-portrait figcaption {
  position: absolute;
  right: 1px;
  bottom: 1px;
  z-index: 2;
  margin: 0;
  padding: .65rem .9rem;
  background: rgba(7, 26, 46, .9);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.founder-stories {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.founder-stories article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1.5rem;
  padding: 2.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.founder-initial {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(245, 182, 66, .65);
  display: grid;
  place-items: center;
  color: var(--gold);
  font: 800 1.65rem "Libre Franklin", sans-serif;
}

.founder-role {
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 .45rem;
}

.founder-stories h3 {
  font: 700 clamp(1.65rem, 3vw, 2.4rem) "Libre Franklin", sans-serif;
  margin: 0 0 .9rem;
}

.founder-stories article p:last-child {
  color: #bcc8d2;
  margin: 0;
}

.founders-legacy {
  grid-column: 2;
  margin: 0;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  font: 700 1.2rem/1.5 "Libre Franklin", sans-serif;
  max-width: 720px;
}

@media (max-width: 900px) {
  .founders { grid-template-columns: 1fr; }
  .founders-heading { position: static; }
  .founders-portrait { max-width: 620px; }
  .founders-legacy { grid-column: 1; }
}

@media (max-width: 560px) {
  .founder-stories article { grid-template-columns: 1fr; }
  .founders { gap: 2rem; }
}
