.cybe-proy-contenido__equipo {
  margin-top: 70px;
}
.cybe-proy-contenido__equipo-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 15px;
}
.cybe-proy-contenido__equipo-item {
  padding: 9.5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.cybe-proy-contenido__equipo-item:hover {
  background-color: var(--cybe-20);
}
.cybe-proy-contenido__equipo-item__imagen {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  width: 100%;
}
.cybe-proy-contenido__equipo-item__imagen img {
  width: 100%;
  height: auto;
  aspect-ratio: 285 / 325;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 5px;
}
.cybe-proy-contenido__equipo-item__badge {
  position: absolute;
  bottom: -9px;
  left: 15px;
  font-family: var(--theme-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: var(--theme-base);
  padding: 3px 10px;
  background-color: var(--cybe-50);
  border-radius: 8px;
  cursor: pointer;
}
.cybe-proy-contenido__equipo-item__nombre {
  font-family: var(--theme-font-two);
  font-weight: 400;
  font-size: 19px;
  line-height: 27px;
  color: var(--theme-base);
}
.cybe-proy-contenido__equipo-item__universidad {
  font-family: var(--theme-font);
  font-weight: 300;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--theme-gray);
}
