/* Base typography and layout - Clean foundation for all pages */

body {
  background-color: #fffff8;
  color: #111;
  font-family: "Crimson Pro", serif;

  /* Text rendering optimization */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* OpenType features: ligatures, oldstyle numerals, kerning */
  font-feature-settings: "liga" 1, "clig" 1, "onum" 1, "kern" 1;
  -webkit-font-feature-settings: "liga" 1, "clig" 1, "onum" 1, "kern" 1;
  -moz-font-feature-settings: "liga" 1, "clig" 1, "onum" 1, "kern" 1;

  /* Hanging punctuation for quotes */
  hanging-punctuation: first last;

  /* Prevent widows and orphans */
  orphans: 3;
  widows: 3;
}

article {
  padding-top: 3rem;
}

/* Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

/* Body text */
p,
li,
td {
  color: #111;
  font-family: "Crimson Pro", serif;
  line-height: 1.4;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Acronyms and abbreviations */
abbr {
  letter-spacing: 0.08em;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
