/* CWAD brand pages - compact tick charts on phones (cwb-ticks, 2026-09-11)
   gen.py renders a "finishes" availability chart as .cwb-tblwrap.ticks. At 900px and below the
   shared table rules stack each row into a card with the column name over its value, which made
   an 8-row, 5-column chart about 3,400px tall on a phone. Here each finish sits on one line with
   its Yes or No at the right, and every line carries the same hairline (the shared first-row
   rule would otherwise strip them from the first card only). Loaded by its own head snippet,
   after the visual layer (snippet 6294). Contains no backslashes: the snippet store strips them. */
@media screen and (max-width:900px){
  .cwb-tblwrap.ticks .cwb-tbl tbody tr{padding-bottom:6px}
  .cwb-tblwrap.ticks .cwb-tbl tbody th{padding-bottom:8px}
  .cwb-tblwrap.ticks .cwb-tbl tbody td{
    display:flow-root;padding:9px 0 8px;border-top:1px solid var(--cwb-hair,#efefef);
    text-align:right;line-height:1.5;
  }
  .cwb-tblwrap.ticks .cwb-tbl tbody th + td{border-top:0}
  .cwb-tblwrap.ticks .cwb-tbl tbody td[data-th]::before{float:left;margin:0 12px 0 0;text-align:left;line-height:2.03}
}
