/* Container layout */
.founders-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.founders-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* Stacks vertically on mobile screens */
}

/* Founder Card */
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 300px; /* Flexible card sizing */
  max-width: 400px;
}

/* Image styling */
.image-wrapper {
  height: 220px;
  overflow: hidden;
  margin-bottom: 20px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents image distortion */
  display: block;
}

/* Typography */
.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #1a1a1a;
}

.founder-title {
  font-size: 1rem;
  color: #666666;
  margin: 0;
  font-weight: 400;
}