.prose {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    @apply font-bold mb-4;
  }

  h1 {
    @apply text-4xl;
  }

  h2 {
    @apply text-3xl;
  }

  h3 {
    @apply text-2xl;
  }

  h4 {
    @apply text-xl;
  }

  ul,
  ol,
  p,
  pre {
    @apply mb-4;
  }

  p:has(+ ul),
  p:has(+ ol) {
    @apply mb-0;
  }

  ul li {
    @apply list-disc list-inside ml-4;
  }

  ol li {
    @apply list-decimal list-inside ml-4;
  }

  a {
    @apply link link-primary underline;
  }

  hr {
    @apply my-4;
  }
}
