/* Company page: founder section */

.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-12);
  align-items: start;
}

.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.founder-name {
  margin: var(--space-5) 0 0;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-black);
}

.founder-role {
  margin: var(--space-2) 0 0;
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-muted);
}

.founder-proof {
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.founder-proof li {
  font-size: var(--text-sm);
  line-height: 1.5;
}

.founder-proof .founder-proof__label {
  display: block;
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-muted);
  margin-bottom: 2px;
}

.founder-note p {
  max-width: 64ch;
}

.founder-quotes {
  margin-top: var(--space-10);
}

.founder-quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.founder-quote blockquote {
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--color-text);
  line-height: 1.65;
}

.founder-quote figcaption {
  margin-top: auto;
  font-family: var(--font-condensed);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .founder-photo {
    max-width: 280px;
  }
}
