.work-item-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.work-item-link:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 245, 255, .62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36), 0 0 34px rgba(45, 245, 255, .12);
}

.work-item-link .project-icon img,
.work-item-link .project-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  filter: drop-shadow(0 0 9px rgba(45, 245, 255, .7));
}

.work-item-link::after {
  content: "Ingresar";
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: #23f2ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}

.work-item-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}
