/* Default typography for posts (content-single)(scoped to wrapper) */
@media only screen and (min-width: 993px) {
    .post-typography {
      font-size: 18px;
      line-height: 32px;
      margin: auto;
    }
  
    /* Reset top margins for one-sided spacing */
    .post-typography h1,
    .post-typography h2,
    .post-typography h3,
    .post-typography h4,
    .post-typography h5,
    .post-typography p,
    .post-typography ul,
    .post-typography ol,
    .post-typography pre,
    .post-typography table,
    .post-typography blockquote {
      margin-top: 0;
    }
  
    /* Headings with tuned bottom margins to equalize gaps */
    .post-typography h1,
    .post-typography .h1 {
      font-size: 50px;
      line-height: 1.2em; /* ≈60px */
      margin-bottom: 20px;
    }
  
    .post-typography h2,
    .post-typography .h2 {
      font-size: 40px; /* original 38 */
      line-height: 1.2em; /* ≈48px */
      margin-bottom: 22px;
    }
  
    .post-typography h3,
    .post-typography .h3 {
      font-size: 22px;
      line-height: 1.8em; /* ≈40px */
      margin-bottom: 12px;
    }
  
    .post-typography h4,
    .post-typography .h4 {
      font-size: 18px;
      line-height: 32px;
      margin-bottom: 16px;
    }
  
    .post-typography h5,
    .post-typography .h5 {
      font-size: 18px;
      line-height: 32px;
      margin-bottom: 16px;
    }
  
    /* Paragraphs & lists: fixed 30px gap */
    .post-typography p,
    .post-typography ul,
    .post-typography ol,
    .post-typography pre,
    .post-typography table,
    .post-typography blockquote {
      font-weight: 500;
      letter-spacing: 0.02em;
      margin-bottom: 16px; /* 30 minus overshoot 32 − 18 = 14px */
    }
  
    /* Nested lists: no extra vertical gaps */
    .post-typography ul ul,
    .post-typography ol ol,
    .post-typography ul ol,
    .post-typography ol ul {
      margin-bottom: 0;
    }
  
    /* Alignments & misc */
    .post-typography hr,
    .post-typography .hr {
      border: 1px solid;
      margin: -1px 0;
    }
  
    .post-typography a,
    .post-typography b,
    .post-typography i,
    .post-typography strong,
    .post-typography em,
    .post-typography small,
    .post-typography code {
      line-height: normal;
    }
  
    /* Subscript / Superscript */
    .post-typography sub,
    .post-typography sup {
      line-height: 0;
      position: relative;
      vertical-align: baseline;
    }
    .post-typography sup { top: -0.5em; }
    .post-typography sub { bottom: -0.25em; }
  
    /* No trailing gap at the end of article */
    .post-typography > :last-child {
      margin-bottom: 0;
    }
  
    .post-typography img {
      border-radius: 40px;
    }
  }