#thread-list-ooc {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 1rem;
}
#thread-list-ooc > .inline_row {
	background-color: var(--box-bg-color);
	padding: 1rem 2rem;
}
#thread-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: stretch;
	gap: 1.25rem 2.5rem;
}
#thread-list > .inline_row {
	flex: 1 1;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}
@media (max-width: 999.98px) {
	#thread-list > .inline_row {
		flex: initial;
		width: 100%;
	}
}
@media (min-width: 1000px) {
	#thread-list > .inline_row {
		flex-basis: 35%;
	}
}

#thread-list > .inline_row > .tsubject {
	background-color: var(--base-bg-color);
}
#thread-list > .inline_row > .trecent {
	background-color: var(--box-bg-color);
}

#thread-list > .inline_row > .tflex  {
	background-color: var(--base-bg-color-body-overlay);
	background-size: cover;
	background-position: center center;
}
#thread-list > .inline_row > .tflex > .tavatar {
	background-color: var(--box-bg-color);
}
#thread-list > .inline_row > .tflex {
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	justify-content: stretch;
	gap: 0;
}
#thread-list > .inline_row > .tflex > .tavatar {
	min-width: 75px;
	max-width: 75px;
	min-height: 75px;
	text-align: center;
	background-size: cover;
	background-position: center center;
}
#thread-list > .inline_row > .tflex > .tinfo {
	padding: 1rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--base-bg-color-body-overlay);
	text-align: center;
	max-height: 75px;
	overflow: auto;
}
#thread-list > .inline_row > .trecent {
	padding: 0.5rem 1rem;
}
#thread-list > .inline_row > .tsubject {
	padding: 1rem;
}