/* About — team pyramid: two founders on top, co-founder centered below */

.team-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 640px;
  margin: 40px auto 0;
}

.team-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.team-row--founders .team-card {
  width: 240px;
}

@media (max-width: 560px) {
  .team-pyramid {
    gap: 20px;
  }

  .team-row {
    flex-direction: column;
    align-items: center;
  }

  .team-row--founders .team-card {
    width: 220px;
  }
}
