/**
 * wpt-taxonomy-term-index.css
 *
 * https://wp-tutorials.tech/add-functionality/display-taxonomy-terms-in-an-indexed-list/
 */

.taxonomy-term-index {
	/* Custom wrapper styles in here */
}

.taxonomy-term-index.term-index-cols-2,
.taxonomy-term-index.term-index-cols-3,
.taxonomy-term-index.term-index-cols-4 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.taxonomy-term-index.term-index-cols-2 .taxonomy-term-letter {
	width: 48%;
}

.taxonomy-term-index.term-index-cols-3 .taxonomy-term-letter {
	width: 31%;
}

.taxonomy-term-index.term-index-cols-4 .taxonomy-term-letter {
	width: 23%;
}

.taxonomy-term-letter h3 {
	margin-bottom: 0;
	border-bottom: 1px dotted grey;
	font-size: 16pt;
}

.taxonomy-term-index ul {
	list-style-type: none;
	padding: 0;
	margin: 0 0 1em 0;
}