/* Container soll sich an die Spaltenbreite anpassen */
.hlp-wrap { width: 100%; }

/* Liste clean */
.hlp-list { list-style: none; margin: 0; padding: 0; }
.hlp-item { padding: 3px 0; }

/* Flex: Titel links flexibel, User rechts */
.hlp-item{
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Titel nimmt Platz, darf aber schrumpfen */
.hlp-title{
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* "von" optional kleiner/gedimmt */
.hlp-by{
  flex: 0 0 auto;
  opacity: .7;
  white-space: nowrap;
}

/* Username hart nach rechts */
.hlp-user{
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}
