/* Print stylesheet. Main purpose: the Nest Box Spec Finder's "Print spec card"
   button — one clean card for the person standing at a workbench with a saw.
   Loaded with media="print" on every page; pages mark their printable region
   with .print-card and printer chrome is stripped. */

.site-header,
.site-footer,
.skip-link,
.noscript-note,
.callout,
.safety,
.faq,
.btn,
nav,
.no-print {
  display: none !important;
}

body {
  border-top: 0;
  background: #fff;
  color: #000;
  font-size: 11pt;
}

a { text-decoration: none; color: #000; }

/* Pages that produce a printable card mark everything else `.no-print` (hidden
   above). Do NOT try to hide `main > *` here — the card lives inside one of
   those children, and hiding the ancestor hides the card with it. */
.print-card-region {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

.print-card {
  border: 1.5pt solid #000;
  padding: 14pt;
  page-break-inside: avoid;
}
.print-card .plate__tag {
  position: static;
  transform: none;
  background: #000;
  color: #fff;
  display: inline-block;
  margin-bottom: 8pt;
}
.spec li { padding-block: 3pt; }
.spec__line { border-bottom-color: #999; }

/* footer line on the printed card so the source survives the sawdust */
.print-card::after {
  content: "birdbench.com/tools/ — measurements from published NestWatch/NABS-style specs. No perch. Ever.";
  display: block;
  margin-top: 10pt;
  padding-top: 6pt;
  border-top: 0.75pt solid #000;
  font-size: 8pt;
  color: #333;
}
