/* Prevent CLS from font loading */
body {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Reserve space for elements that might cause CLS */
.md-content__inner ul {
  min-height: 1.5em;
}

/* Optimize text rendering */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-display: swap;
}

/* Reduce reflows */
.md-nav__link {
  contain: layout style;
}

/* Lazy load non-critical images */
img:not([loading]) {
  loading: lazy;
}
