/* ============================================================
   David Holdings — Print stylesheet
   Strips chrome and prints long-form content (legal, insights,
   articles) as black-on-white. Linked with media="print".
   ============================================================ */
@media print {
  *, *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Hide all chrome and decorative / interactive furniture */
  .nav, .nav-overlay, .nav__toggle,
  .foot, .cta, .ticker, .hero__scroll,
  .hero__crest, .page-hero__crest,
  .hero__pattern, .page-hero__pattern,
  .skip-link, .breadcrumb,
  .filters, .chip, .modal,
  .dash-section, .terminal,
  .form-success, form, .map-placeholder,
  .ornament { display: none !important; }

  body { font-size: 12pt; line-height: 1.5; }
  .container, .doc__inner, .article__inner { max-width: 100%; margin: 0; padding: 0; }

  /* Make long-form documents read cleanly */
  .page-hero { padding: 0 0 12pt; border: none; }
  .page-hero h1 { font-size: 22pt; }
  .doc, .article, .section { padding: 0; }

  .doc__toc { border: 1px solid #999 !important; padding: 12pt; }
  .doc__section { page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }

  a { text-decoration: underline; }
  /* Expand link targets for legal references */
  .doc__section a[href^="http"]::after,
  .article__body a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }

  /* Keep accordions open in print */
  details { display: block !important; }
  details > summary { font-weight: 700; }
  .faq__answer { display: block !important; padding: 0 0 12pt !important; }
}
