/* public/styles/print.css — resume-only print styles, loaded via head slot with media="print" */
@media print {
  header, footer, nav {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
    margin: 0;
  }

  main {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .resume {
    font-size: 11pt;
    line-height: 1.35;
  }

  .resume h1 {
    font-size: 20pt;
    margin-bottom: 0.15in;
  }

  .resume h2 {
    font-size: 13pt;
    border-bottom: 1px solid #000;
    margin-top: 0.2in;
  }

  .resume section {
    break-inside: avoid;
  }

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

  a::after {
    content: '';
  }
}
