/* mac-princess-louisa-biography.css
 *
 * Print-friendly layout for US Letter (8.5in x 11in)
 * with 1 inch margins and readable, research-oriented typography.
 */

/* Page setup for printing */
@page {
  size: letter;
  margin: 1in;
}

/* Global box sizing */
* {
  box-sizing: border-box;
}

/* Base document styles */
html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 11pt;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
}

/* Layout containers */
header,
main {
  max-width: 7.0in;
  margin: 0 auto;
}

/* Header */
header {
  text-align: center;
  margin-top: 0.5in;
  margin-bottom: 0.4in;
}

header h1 {
  font-size: 22pt;
  margin: 0;
}

header .subtitle {
  margin-top: 0.1in;
  font-size: 12pt;
}

/* Main content */
main {
  margin-bottom: 0.4in;
}

section {
  margin-bottom: 0.35in;
}

section h2 {
  font-size: 14pt;
  margin: 0 0 0.12in 0;
}

section p {
  margin: 0 0 0.08in 0;
}

ul {
  margin: 0.06in 0 0.12in 1.1em;
  padding: 0;
}

/* Blockquote-style highlight for plaque text */
.blockquote {
  margin-top: 0.08in;
  margin-bottom: 0.12in;
  padding-left: 0.18in;
  border-left: 1px solid #000000;
  font-style: italic;
}

/* Footnotes */
#footnotes {
  border-top: 1px solid #000000;
  padding-top: 0.18in;
}

.footnotes {
  margin: 0.1in 0 0 0;
  padding-left: 1.1em;
  font-size: 9.5pt;
}

.footnotes li {
  margin-bottom: 0.12in;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0.5px solid #000000;
}

a:hover,
a:focus {
  border-bottom-width: 1px;
}

/* Superscript note markers */
sup a {
  border-bottom: none;
}

/* Screen tweaks */
@media screen {
  body {
    padding: 1rem;
  }

  header,
  main {
    max-width: 900px;
  }
}
