.team-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  background: #fff;
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
}

.team-member .photo {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.team-member .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: filter 0.3s ease;
  display: block;
}

.team-member:hover .photo img {
  filter: grayscale(0%);
}

.team-member h3 {
  margin: 25px 0 10px;
  font-size: 22px;
  color: var(--color-primary);
}

.team-member p {
  margin: 0 25px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

/* Responsywność */
@media (max-width: 900px) {
  .team-cards {
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .team-cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .team-member {
    width: 90%;
    max-width: 350px;
  }
}
