/* Custom prose styles for articles - since Tailwind CDN doesn't include typography plugin */

.prose {
  color: rgb(209 213 219);
  max-width: 65ch;
}

.prose-invert {
  color: rgb(255 255 255);
}

.prose h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 2rem;
  color: rgb(255 255 255);
}

.prose h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgb(31 41 55);
  color: rgb(255 255 255);
}

.prose h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: rgb(255 255 255);
}

.prose p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 1rem;
  color: rgb(209 213 219);
}

.prose a {
  color: rgb(202 138 4);
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

.prose strong {
  color: rgb(255 255 255);
  font-weight: 600;
}

.prose section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.prose-lg p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose-lg h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.prose-lg h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.prose-lg h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose-lg h4 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose figcaption {
  color: rgb(156 163 175);
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.75rem;
}

.prose ul,
.prose ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1.625rem;
}

.prose li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.prose blockquote {
  font-weight: 500;
  font-style: italic;
  color: rgb(209 213 219);
  border-left-width: 0.25rem;
  border-left-color: rgb(202 138 4);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  padding-left: 1rem;
}

.prose code {
  color: rgb(255 255 255);
  font-weight: 600;
  font-size: 0.875em;
}

.prose pre {
  color: rgb(209 213 219);
  background-color: rgb(17 24 39);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose pre code {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose hr {
  border-color: rgb(31 41 55);
  border-top-width: 1px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
