.founders-section {
  padding: 60px;
  text-align: center;
}

.founders-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.52;
}

.founders-section p {
  color: #797d7f;
  font-size: 20px;
  line-height: 1.52;
  font-weight: 400;
}

.founders-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8f8f8;
  padding: 24px;
  border-radius: 26px;
  gap: 26px;
  text-align: center;
  width: 250px;
}

.founder-card:hover {
  transform: translateY(-5px);
}

.founder-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.founder-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.founder-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.52;
}

.founder-title {
  font-weight: 400;
  font-size: 14px;
}

.founder-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .founders-section {
    padding: 40px;
  }
}

@media (max-width: 425px) {
  .founders-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.32;
  }

  .founders-section {
    padding: 20px;
    gap: 40px;
  }

  .founder-card {
    width: 150px;
    padding: 16px;
    border-radius: 14px;
    gap: 10px;
  }

  .founder-card img {
    width: 60px;
    height: 60px;
  }

  .founder-name {
    font-size: 12px;
  }

  .founder-title {
    font-size: 10px;
  }

  .founders-section p {
    font-size: 12px;
    line-height: 1.32;
  }

  .founders-grid,
  .founder-row {
    gap: 12px;
  }
}
