.prices__table {
	margin-left: -1em;
}

.prices th,
.prices td {
    padding: 0.25em 1em;
	text-align: left;
}

.prices__prices th {
    text-align: left;
    font-weight: inherit;
	max-width: 250px;
}
.prices__pries thead th {
	white-space: nowrap;
}
.prices__prices td {
	font-variant-numeric: tabular-nums;
}

.prices__ranges th {
    width: max-content;
}

.prices__highlighted {
	font-weight: 460;
	box-shadow: 0 0 1em var(--secondary-alpha-100);
}
	.prices__highlighted:hover {
		box-shadow: 0 0 1em var(--secondary-alpha-300);
		background-color: unset;
	}

	.prices__highlighted :where(th, td) {
		background-color: var(--secondary-alpha-300);
		
		&:first-child {
			border-top-left-radius: 0.25rem;
			border-bottom-left-radius: 0.25rem;
		}
		&:last-child {
			border-top-right-radius: 0.25rem;
			border-bottom-right-radius: 0.25rem;
		}
		
		&:is(th)::after {
			content: " — скидки!";
			cursor: text;
		}
	}