p.rssapp-card-description {
  width: 50ch;              /* limit to about 50 characters */
  white-space: nowrap;      /* stay on one line */
  overflow: hidden;         /* hide overflowing text */
  text-overflow: ellipsis;  /* add ... at the end */
  display: block;           /* ensure block-level element */
}


p.rssapp-card-description {
  width: 50ch;              /* limit to about 50 characters */
  white-space: nowrap !important;       /* stay on one line */
  overflow: hidden !important;            /* hide overflowing text */
  text-overflow: ellipsis !important;      /* add ... at the end */
  display: block !important;           /* ensure block-level element */
}