.thread-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 28px 0 4px;
  scrollbar-color: var(--red) transparent;
  scrollbar-width: thin;
}

.thread-tab {
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 280px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff05;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}

.thread-tab span,
.thread-tab small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-tab span {
  font: 700 12px Georgia, "Yu Mincho", serif;
}

.thread-tab small {
  margin-top: 6px;
  color: var(--muted);
  font: 700 8px monospace;
  text-transform: uppercase;
}

.thread-tab:hover,
.thread-tab.active {
  border-color: #ef594c88;
  background: #ef594c12;
  color: #fff7ee;
}

.thread-tab.active small {
  color: var(--gold);
}

.thread-tabs + .thread-head {
  padding-top: 54px;
}

.post-content.image-only {
  grid-template-columns: 1fr;
}
