/* Resume Workshop — Resources Page print sheet.
   Loaded by resources.html AFTER styles.css so the portrait @page below wins
   over the deck's global landscape @page (styles.css). Print one tidy
   portrait-letter handout. */

@page { size: letter portrait; margin: 0.6in; }

@media print {
  * { box-shadow: none !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  html, body {
    background: #fff !important;
    color: #000 !important;
    height: auto !important;
    overflow: visible !important;
  }
  .resources-body { background: #fff !important; }

  /* Hide on-screen chrome */
  .no-print,
  .resources-header,
  .qr-top-row,
  [data-action] { display: none !important; }

  .resources-page { max-width: 100%; padding: 0; margin: 0; }

  /* Keep blocks intact across pages */
  .resource-section { page-break-inside: avoid; break-inside: avoid; margin-bottom: 20pt; }
  .section-header { border-bottom: 2px solid #000; }
  .section-num { background: #000 !important; color: #fff !important; }
  .org-card, .col-card { page-break-inside: avoid; break-inside: avoid; border: 1px solid #999; }

  .res-table { font-size: 10pt; box-shadow: none; }
  .res-table th { background: #e8eef6 !important; color: #000 !important; }
  .res-table th, .res-table td { border: 1px solid #999; }

  .verb-chip { border: 1px solid #999; background: #f1f1f1 !important; color: #000 !important; }
  .callout { border-left: 4px solid #000; background: #f3f3f3 !important; }

  /* Spell out link targets on paper */
  a[href^="http"]:after { content: " (" attr(href) ")"; font-size: 8pt; color: #555; }
  a[href^="tel:"]:after, a[href^="mailto:"]:after { content: ""; }
  .res-url:after { content: ""; }  /* URL already shown as text */
}
