/**
 * Term (category/tag) archive header.
 *
 * On narrow screens the thumbnail is floated so the title and the term
 * description flow around it instead of leaving an empty column beside it.
 *
 * Loaded as a separate stylesheet, no asset rebuild needed.
 */
@media (max-width: 767.98px) {
	.term-header {
		display: block !important;
	}

	.term-header__image {
		float: left;
		width: 100px;
		height: 100px;
		max-width: 100%;
		object-fit: cover;
	}

	.term-header__body {
		min-height: 100px;
	}

	.term-header__body::after {
		content: '';
		display: table;
		clear: both;
	}
}
