body {
  background: #f4f4f4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Card cliccabile */
.card {
  width: 500px;
  height: 60px;
  margin: 40px auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #ffffff;
  color: #2b2b2b;
  text-decoration: none;
  
  border-radius: 12px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: 
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover */
.card:hover {
  background-color: #c21f2f; /* rosso come immagine */
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Titolo */
.card-title {
  font-size: 28px;
  font-weight: 600;
}

/* Freccia */
.card-arrow {
  font-size: 36px;
  transition: transform 0.25s ease;
}

/* Piccolo movimento della freccia */
.card:hover .card-arrow {
  transform: translateX(6px);
}
