/* Site-local patch for a gap in icvm-law-firms-cms-core's sortable-list styling: the header
   cell (`.ddW.tdTier3`, literal text "Order") sets a sort-arrows background icon but never
   hides its own text, so "ORDER" renders as visible text instead of the icon CF shows there.
   Core's row-level drag .handle does this correctly (text-indent + overflow hidden); this
   applies the exact same technique to the header. Left as a site override rather than a core
   change per explicit instruction -- other sites using core are unaffected either way. */
.ddW.tdTier3 {
    text-indent: -99999px;
    overflow: hidden;
}
