/*
 * ngc-polish-1.css - interface polish (reference site)
 *
 * Hides the homepage trust-signal grid while any of its figures is still
 * unconfirmed.
 *
 * page-home-brief.php builds three cards from $abp5_stats. Two of them
 * ($abp5_sites_reviewed, $abp5_years_active) are empty strings, so the template
 * renders an em dash carrying .abp5-ngc-trustnum--tbc - the original author's
 * own "to confirm" marker. A grid where two of three figures are dashes reads
 * as unfinished, so the whole grid is hidden rather than shown part-filled.
 *
 * Scoped on the presence of that marker, so the section is not hidden
 * permanently: fill both values in page-home-brief.php, no --tbc is rendered,
 * this rule stops matching, and the grid returns on its own with all three
 * figures intact.
 *
 * Sets display only. No colour, layout, spacing, typography or breakpoint
 * rules; no markup, content, SEO or behaviour is touched. The element stays in
 * the DOM. Browsers without :has() support drop the rule and show the grid
 * exactly as it renders today.
 */
.abp5-ngc-trustgrid:has(.abp5-ngc-trustnum--tbc) {
  display: none;
}
