/* V14.1 typography comfort pass
 * Preserve the bold display character while avoiding collisions in Inter's
 * heaviest weights, especially in long tool and directory headings.
 */
html body h1 {
  font-kerning: normal;
  letter-spacing: -0.018em !important;
  text-rendering: optimizeLegibility;
}

html body h2 {
  font-kerning: normal;
  letter-spacing: -0.012em !important;
  text-rendering: optimizeLegibility;
}

html body h3 {
  font-kerning: normal;
  letter-spacing: -0.006em !important;
  text-rendering: optimizeLegibility;
}

@media (max-width: 720px) {
  html body h1 {
    letter-spacing: -0.012em !important;
  }

  html body h2 {
    letter-spacing: -0.008em !important;
  }

  html body h3 {
    letter-spacing: 0 !important;
  }
}
