/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 27 2026 | 00:06:07 */
/* --- FIX LỖI FONT BỊ CHỖ DÀY CHỖ MẢNH KHI BÔI ĐẬM TRONG HEADING --- */

/* Giữ nguyên độ đậm gốc của font, tránh "đậm kép" */
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: inherit !important;  /* không nhân đôi độ đậm */
  font-family: inherit !important;  /* giữ đúng font đang dùng */
  font-style: normal !important;
}

/* Ép weight thống nhất cho toàn bộ heading */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700 !important;      /* thay đổi tùy font: 600 hoặc 500 nếu quá dày */
  font-synthesis: none;             /* ngăn trình duyệt tự giả lập bold/italic */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Đảm bảo strong trong mọi vị trí không bị render giả bold */
strong, b {
  font-synthesis: none;
  font-weight: 600;                 /* nhẹ hơn để tránh dày nét */
}

/* Nếu vẫn thấy nhòe hoặc lệch nét trên Chrome */
body {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Đảm bảo font variable load chính xác (phòng trường hợp Google Fonts) */
:root {
  --font-weight-regular: 400;
  --font-weight-bold: 700;
}