.founder-band {
  box-sizing: content-box;
  display: block;
  width: auto;
  padding: 80px 24px;
  color: rgba(var(--color-text));
  background-color: rgba(var(--color-background));
}

.founder-band__inner {
  display: grid;
  grid-template-columns: 522px 522px;
  gap: 56px;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-band__media img {
  display: block;
  width: 100%;
  height: auto;
}

.founder-band__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-band__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: rgba(var(--color-light-text));
}

.founder-band__heading {
  margin: 0;
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 400;
  text-transform: uppercase;
  color: inherit;
}

.founder-band__body {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: inherit;
}

a.founder-band__cta,
.founder-band__cta {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 32px;
  font-family: Archivo, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.82px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: transparent;
  border: 1.5px solid #fff;
}

a.founder-band__cta:hover,
.founder-band__cta:hover {
  background: #fff;
  color: #3e4637 !important;
}

/* About-page variant: pill eyebrow, Archivo Black display H1, image on beige, no CTA.
   The source section root IS the max-width column (box 1148 @ x146), so constrain the root
   here rather than only the inner wrapper. */
.founder-band--about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 0;
  background: transparent;
}
.founder-band--about .founder-band__inner {
  display: contents;
}
.founder-band--about .founder-band__media img {
  background: rgb(245, 243, 239);
}
.founder-band--about .founder-band__content {
  gap: 0;
}
.founder-band--about .founder-band__eyebrow {
  align-self: flex-start;
  margin: 0 0 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  background: rgb(226, 249, 161);
}
.founder-band--about .founder-band__heading {
  font-family: "Archivo Black", Archivo, sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  margin: 0 0 18px;
}
.founder-band--about .founder-band__body {
  color: rgb(68, 65, 59);
}

@media (max-width: 959px) {
  .founder-band__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .founder-band__media img {
    max-width: 100%;
  }
  .founder-band__heading {
    font-size: 24px;
  }
  .founder-band--about {
    grid-template-columns: minmax(0, 1fr);
  }
  .founder-band--about .founder-band__heading {
    font-size: clamp(28px, 3.6vw, 44px);
  }
}
