.founders {
  padding: 80px 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 22, 40, 0.07);
}

.founder-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.founder-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.founder-card p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
}
