/* [project]/web/src/app/[locale]/learn/[slug]/learn-prose.css [app-client] (css) */
.prose-learn {
  font-family: var(--font-body), "Inter", sans-serif;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.prose-learn h2 {
  font-family: var(--font-display), "Inter", sans-serif;
  color: var(--text-primary);
  margin-top: 2.5em;
  margin-bottom: .75em;
  font-size: 24px;
  font-weight: 700;
}

.prose-learn h3 {
  font-family: var(--font-display), "Inter", sans-serif;
  color: var(--text-primary);
  margin-top: 2em;
  margin-bottom: .5em;
  font-size: 20px;
  font-weight: 600;
}

.prose-learn h4 {
  font-family: var(--font-display), "Inter", sans-serif;
  color: var(--text-primary);
  margin-top: 1.5em;
  margin-bottom: .5em;
  font-size: 17px;
  font-weight: 600;
}

.prose-learn p {
  margin-bottom: 1.25em;
}

.prose-learn a {
  color: var(--accent);
  text-underline-offset: 2px;
  text-decoration: underline;
}

.prose-learn a:hover {
  color: var(--accent-dark);
}

.prose-learn ul, .prose-learn ol {
  margin-bottom: 1.25em;
  padding-left: 1.5em;
}

.prose-learn li {
  margin-bottom: .5em;
}

.prose-learn ul li {
  list-style-type: disc;
}

.prose-learn ol li {
  list-style-type: decimal;
}

.prose-learn code {
  background: var(--bg-card);
  border-radius: 4px;
  padding: .15em .4em;
  font-size: .9em;
}

.prose-learn pre {
  background: var(--bg-card);
  border-radius: 8px;
  margin-bottom: 1.25em;
  padding: 1em 1.25em;
  overflow-x: auto;
}

.prose-learn pre code {
  background: none;
  padding: 0;
}

.prose-learn blockquote {
  border-left: 3px solid var(--accent);
  color: var(--text-muted);
  margin-bottom: 1.25em;
  padding-left: 1em;
  font-style: italic;
}

.prose-learn strong {
  color: var(--text-primary);
  font-weight: 600;
}

.prose-learn hr {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 2em 0;
}

.prose-learn img {
  border-radius: 8px;
  max-width: 100%;
  margin: 1.5em 0;
}

.prose-learn table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.25em;
  font-size: .95em;
}

.prose-learn th {
  text-align: left;
  border-bottom: 2px solid var(--divider);
  color: var(--text-primary);
  padding: .6em .8em;
  font-weight: 600;
}

.prose-learn td {
  border-bottom: 1px solid var(--divider);
  padding: .6em .8em;
}

.prose-learn .callout-cloud, .prose-learn .callout-selfhosted {
  border-radius: 8px;
  margin: 1em 0;
  padding: .75em 1em;
  position: relative;
}

.prose-learn .callout-cloud {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border-left: 3px solid var(--accent);
}

.prose-learn .callout-selfhosted {
  background: var(--bg-card);
  border-left: 3px solid var(--divider);
}

.prose-learn .callout-cloud p:last-child, .prose-learn .callout-selfhosted p:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=web_src_app_%5Blocale%5D_learn_%5Bslug%5D_learn-prose_f0c72315.css.map*/