/* SSH */
#bookmarks > div:last-child {
  grid-column: 1 / -1;
}
#bookmarks > div:last-child ul {
  flex-flow: row wrap;
  justify-content: space-between;
  
}

#bookmarks {
  display: grid;
  gap: 20px;
}

/* Columns */
#bookmarks {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 700px) {
  #bookmarks {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 999px) {
  #bookmarks {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1535px) {
  .shrink { display: none; }
  #bookmarks > div:last-child .bookmark-name { padding-right: 1em; }
}
