  h1 {
    font-size: 2.25rem; /* ~36px */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.875rem; /* ~30px */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  h3 {
    font-size: 1.5rem; /* ~24px */
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  h4 {
    font-size: 1.25rem; /* ~20px */
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  h5 {
    font-size: 1.125rem; /* ~18px */
    font-weight: 500;
    margin-bottom: 0.25rem;
  }

  h6 {
    font-size: 1rem; /* ~16px */
    font-weight: 500;
    margin-bottom: 0.25rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  li {
    margin-bottom: 0.25rem;
  }

  a {
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }

  blockquote {
    border-left: 4px solid #d1d5db; /* Tailwind gray-300 */
    padding-left: 1rem;
    font-style: italic;
    color: #374151; /* Tailwind gray-700 */
    margin-bottom: 1rem;
  }

  code {
    background-color: #f3f4f6; /* Tailwind gray-100 */
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: monospace;
  }

  pre {
    background-color: #111827; /* Tailwind gray-900 */
    color: #f9fafb; /* Tailwind gray-50 */
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1rem;
  }
