h2 {
  font-size: 20px;
  font-weight: 600;
}

h3 {
  margin-top: 4rem;
  font-size: 20px;
  font-weight: 400;
}



.hero-label-text {
  margin-top: 12rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.founders-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card-content {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  flex: 1 0 0;
}

.card-chips-wrapper {
  padding-top: 1rem;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.chip {
  background-color: #fff;
  padding: 4px 12px;
  border: 1px solid #e6e6e6;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #6466ec;
  white-space: nowrap;
}

.founder-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  /*border-radius: 50%;*/
}

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