.mentors__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1100px) {
  .mentors__list {
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .mentors__list {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .mentors__list {
    gap: 10px;
  }
}

.mentors__list-item {
  display: flex;
  /* max-width: 260px; */
  min-width: 200px;
  flex-basis: 260px;
  flex-shrink: 0;
  flex-grow: 0;
  /* flex-basis: auto; */
}
@media (max-width: 1024px) {
  .mentors__list-item {
    flex-basis: 205px;
  }
}
@media (max-width: 480px) {
  .mentors__list-item {
    flex-basis: 170px;
    min-width: 190px;
  }
}
@media (max-width: 420px) {
  .mentors__list-item {
    flex-basis: 170px;
    min-width: 150px;
  }
}

.mentor__cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 20px 20px;
  border-radius: 30px;
  box-sizing: border-box;
  background-color: #fff;
  color: inherit;
  text-decoration: none;
  flex-shrink: 1;
  gap: 10px;
}
@media (max-width: 768px) {
  .mentor__cards {
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .mentor__cards {
    padding-left: 0;
    padding-right: 0;
  }
}

.mentor__cards img {
  max-width: 130px;
  max-height: 130px;
  border-radius: 20px;
}
@media (max-width: 480px) {
  .mentor__cards img {
    max-width: 120px;
    max-height: 120px;
  }
}

.mentor__cards span {
  display: inline-block;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1;
  color: #a2230a;
}
@media (max-width: 480px) {
  .mentor__cards span {
    font-size: 14px;
  }
}
