/**
 * typography.css
 *
 * Pure text hierarchy.
 * Headings, blockquotes, inline text.
 */

/* Headings: Fluid, modern editorial style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather Sans', sans-serif;
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111;
}

/* Fluid heading sizes */
h1 {
  font-size: clamp(2.2rem, 2rem + 1.2vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.8rem, 1.5rem + 0.7vw, 2.3rem);
  letter-spacing: -0.01em;
  margin-top: 2.4rem;
}

h3 {
  font-size: clamp(1.4rem, 1.2rem + 0.4vw, 1.8rem);
}

h4 {
  font-size: 1.35rem;
  font-weight: 600;
}

h5 {
  font-size: 1.15rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

h4, h5, h6 {
  margin-top: 1.5rem;
}

/* Blockquotes */
blockquote {
  box-sizing: border-box;
  max-width: 100%;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  padding-left: 1.25rem;
  margin: 2rem auto;
  border-left: 3px solid #10309c;
  color: #333;
  max-width: 640px;
}

/* Strong/Emphasis */
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
