/* SAGOT-PORTAL-000 — print stylesheet. The PDF pack is a print of the web template.
   Architect fix: the score plate numeral is a web-only treatment; @media print flattens
   .cmyk-num to solid ink so it reproduces cleanly on paper. (Page furniture — page breaks,
   footer, watermark — is added with the PDF path.) */
@media print {
  @page { size: Letter; margin: 0.5in; }

  /* flatten the CMYK plate numeral to solid ink */
  .cmyk-num { background: transparent !important; }
  .cmyk-num .plate { display: none !important; }
  .cmyk-num .paper {
    color: var(--color-text) !important;
    text-shadow: none !important;
  }
  /* likewise any plate headline treatment, if used */
  .cmyk-head .plate { display: none !important; }
  .cmyk-head .paper { color: var(--color-text) !important; text-shadow: none !important; }
}
