/* Section-specific styles: Equipo fundador */
.team {
  width: min(1080px, 92vw);
}

.team-head {
  margin-bottom: 22px;
}

.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.founder-card {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f5f9fd 100%);
  border-color: #d2dde8;
}

.founder-card-highlight {
  background: linear-gradient(160deg, #f8fcff 0%, #eef6fb 100%);
  border-color: #c8d9e7;
}

.founder-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.founder-photo-wrap {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid #cfdbe6;
  background: #eef4f8;
  box-shadow: 0 10px 20px rgba(10, 28, 46, 0.08);
}

.founder-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.founder-photo-michi {
  object-position: 50% 18%;
  transform: scale(3.1) translateY(6%);
  transform-origin: center top;
}

.founder-photo-jordy {
  object-position: 50% 24%;
}

.founder-id {
  display: grid;
  gap: 3px;
}

.founder-id h3 {
  margin: 0;
}

.founder-focus {
  margin: 0;
  line-height: 1.58;
  max-width: 46ch;
}

.avatar-accent {
  background: linear-gradient(140deg, #153b5e, #4d7596);
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .founder-card {
    padding: 20px;
  }

  .founder-head {
    align-items: flex-start;
  }

  .founder-photo-wrap {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-card-highlight {
    grid-column: 1 / -1;
  }
}
