/* Procurement pack — printable vendor documents.
   Screen: document-style pages inside the normal site chrome.
   Print: chrome and CTAs hidden; the .proc-doc content prints as a clean
   standalone document (File > Print > Save as PDF is the supported path). */

.proc-doc { max-width: 860px; margin: 0 auto; }
.proc-doc .proc-title { margin-bottom: 0.35rem; }
.proc-doc .proc-subtitle { color: var(--gray-600); margin: 0 0 0.25rem; }
.proc-doc .proc-reviewed { color: var(--gray-600); font-size: 0.85rem; margin: 0 0 1.5rem; }
.proc-doc h2 { font-size: 1.3rem; margin: 2.25rem 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--gray-200); }
.proc-doc h3 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
.proc-doc p, .proc-doc li { color: var(--gray-700); }
.proc-doc ul { padding-left: 1.3rem; }

.proc-tablewrap { overflow-x: auto; }
.proc-doc table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.93rem; }
.proc-doc th, .proc-doc td { text-align: left; padding: 0.6rem 0.75rem; border: 1px solid var(--gray-200); vertical-align: top; }
.proc-doc th { background: var(--gray-50); color: var(--gray-900); }
.proc-doc td { color: var(--gray-700); }

.proc-printbar {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 0.75rem 1.5rem;
    max-width: 860px; margin: 0 auto var(--space-lg);
    padding: 0.9rem 1.25rem;
    background: var(--brand-tint); border: 1px solid rgba(0, 116, 196, 0.18);
    border-radius: var(--radius-lg);
}
.proc-printbar p { margin: 0; font-size: 0.9rem; color: var(--gray-700); }

.proc-docfooter {
    max-width: 860px; margin: var(--space-xl) auto 0;
    padding-top: 0.75rem; border-top: 1px solid var(--gray-200);
    font-size: 0.85rem; color: var(--gray-600);
}

@media print {
    .site-header, .site-footer, .skip-link, .proc-printbar, .cta-section, .page-hero { display: none !important; }
    body { background: #fff; }
    .section { padding: 0.75rem 0; }
    .proc-doc a { color: inherit; text-decoration: none; }
    /* A filed PDF has no working relative links — print the destinations. */
    .proc-doc a[href^="/"]::after { content: " (www.realizer.io" attr(href) ")"; font-size: 0.85em; color: #555; }
    .proc-doc a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #555; }
}
