/*
 * Sortable Table — text alignment overrides.
 *
 * The compound selector (.comparison.has-text-align-* th/td) has higher
 * specificity than the brands that force-center cells (.comparison th, td),
 * so an editor-chosen alignment wins on every site without touching brand CSS.
 */
.comparison.has-text-align-left th,
.comparison.has-text-align-left td {
	text-align: left;
}

.comparison.has-text-align-center th,
.comparison.has-text-align-center td {
	text-align: center;
}

.comparison.has-text-align-right th,
.comparison.has-text-align-right td {
	text-align: right;
}
