.blockProfesorado-list {
  display: grid;
  row-gap: 30px;
}
@media (min-width: 1440px) {
  .blockProfesorado-list {
    grid-template-columns: repeat(auto-fill, 320px);
    justify-content: space-between;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .blockProfesorado-list {
    grid-template-columns: repeat(auto-fill, 300px);
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .blockProfesorado-list {
    grid-template-columns: repeat(auto-fill, 320px);
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 767px) {
  .blockProfesorado-list {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}/*# sourceMappingURL=list.css.map */