/* Print styles */
/*
 * Check this out:
 * https://github.com/vladocar/Hartija---CSS-Print-Framework
 */
body {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body * {
  color: color(brand-black) !important;
  background-color: transparent !important;
  text-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  page-break-after: avoid;
}

p,
h2,
h3 {
  orphans: 3;
  widows: 3;
}

table,
img {
  page-break-inside: avoid;
}

a:link[href^="http"]:after,
a[href^="http"]:visited:after {
  content: " (" attr(href) ") ";
  font-size: 90%;
}
