.history-topbar {
  align-items: center;
}

#historyMeta {
  display: block;
}

#historyGrid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

#historyGrid .card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  overflow: hidden;
  height: 110px;
}

#historyGrid .poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#historyGrid .card-body {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
}

#historyGrid .title {
  min-height: 0;
}

#historyGrid .desc {
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
