/* ===========================
   LISTA PROGETTI – STYLE
   =========================== */

/* Contenitore lista */
ul.project-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Ogni voce della lista */
ul.project-list li {
  border-bottom: 1px solid #000;   /* linea sotto */
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Link titolo progetto */
ul.project-list li a {
  display: inline; /* hover solo sul testo */
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300; /* Helvetica Light */
  font-size: 2.2rem;
  color: #000 !important; /* forzo colore */
  text-decoration: none !important; /* elimino linea link */
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1.2;
}

/* Hover SOLO sul titolo */
ul.project-list li a:hover {
  transform: scale(1.08);
  color: #000 !important;
  text-decoration: none !important;
}

/* Preview GIF – posizionata a destra */
.project-preview {
  position: fixed;
  right: 5%;
  top: 30%;
  max-width: 400px;
  max-height: 400px;
  display: none;
  pointer-events: none;
  z-index: 999;
}
