/* Artykuł i kontener treści — kolumnowo i pełna wysokość */
.lastAdds-group article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.lastAdds-group .content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Tytuł zawsze na 2 linie */
.last-add-title-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
  min-height: 3em;
  /* NIE dodajemy margin-bottom — zachowujemy domyślny odstęp */
}

/* Sekcja z datą i działem — na dole */
.content-wrapper > div {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
}

/* Kontener "Dział: [link]" – całość w jednej linii z ucięciem */
.content-wrapper > div > .mt-1:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Link – dziedziczy zachowanie, ale nie łamie */
.content-wrapper > div > .mt-1:last-child a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}