/* Contenitore del testo con altezza massima */
.post-summary {
  position: relative;
  max-height: 300px;        /* altezza dell'etratto */
  overflow: hidden;          /* taglia il testo oltre max-height */
}
/* Sfumatura degradante */
.post-summary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;               /* altezza della sfumatura */
  pointer-events: none;       /* permette click sul bottone */
  background: linear-gradient(
    rgba(255,255,255,0),       /* trasparente in alto */
    #ffffff 90%                /* sfumatura verso il bianco in basso */
  );
}
/* Bottone sempre visibile sopra sfumatura */
.post-summary .read-more {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}
