/* ==========================================================================
   BRIXVEN — Meet the Founder
   ========================================================================== */

.founder__card {
  display: flex;
  align-items: center;
  gap: var(--space-section);
  max-width: 820px;
  margin-inline: auto;
  padding: var(--space-lg);
}

.founder__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
}

.founder__content {
  flex: 1;
  min-width: 0;
}

@media (max-width: 640px) {
  .founder__card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
}
