/* root view: newspaper columns, folders only */
#list { display: block; }

/* drop the size column, head + body */
#list thead tr > *:nth-child(2),
#list tbody tr > *:nth-child(2) { display: none; }

#list tbody {
  display: block;
  columns: 24rem 3;            /* min width 24rem, max 3 columns */
  column-gap: 2rem;
  column-rule: 1px solid var(--border);
}

#list tbody tr {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  break-inside: avoid;         /* no row split across a column boundary */
  padding: .18rem .4rem;
}

#list tbody td { display: block; }
#list tbody td:first-child { flex: 1 1 auto; min-width: 0; }
#list tbody td.date { flex: 0 0 auto; }
