/* Founder / About section */
.founder-section {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.founder-section h2 {
  margin-bottom: var(--space-6);
}

.founder-video {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b0d11;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-6);
}

.founder-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-bio {
  text-align: left;
  max-width: 65ch;
  margin-inline: auto;
}

.founder-bio p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.founder-bio p + p {
  margin-top: var(--space-4);
}

@media (max-width: 767px) {
  .founder-section {
    max-width: 100%;
  }

  .founder-bio {
    text-align: left;
  }
}
