/* ── T858 – Linea rossa fissa in cima alle card ── */
.t858__inner-col {
  border-top: 3px solid #CC0000 !important;
  transition: box-shadow 0.25s ease;
}

.t858__inner-col:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important;
}

/* ── Titolo diventa rosso in hover ── */
.t858__inner-col:hover .t858__title {
  color: #CC0000;
  transition: color 0.25s ease;
}

/* ── Icona zoom in hover ── */
.t858__inner-col:hover img {
  transform: scale(1.08);
  transition: transform 0.25s ease;
}