/*
 * Terms page prose — ported from src/views/TermsPage.vue's <style scoped>.
 * The Vue component scoped these with `.prose :deep(...)`; here we scope under
 * `.a1-terms-prose` (the <article> wrapper) so the DARK terms prose never
 * collides with the blog's LIGHT `.prose` rules in app.css.
 */
.a1-terms-prose.prose h1 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  font-family: var(--font-display);
}
.a1-terms-prose.prose h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-family: inherit;
}
.a1-terms-prose.prose h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}
.a1-terms-prose.prose p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.a1-terms-prose.prose ul,
.a1-terms-prose.prose ol {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  /* Match prod: the Vue terms component doesn't set list-style, so Tailwind's
     preflight reset (list-style:none) wins. The blog's app.css .prose sets
     disc/decimal, so we neutralize it back to none here. */
  list-style: none;
}
.a1-terms-prose.prose li {
  margin-bottom: 0.5rem;
}
.a1-terms-prose.prose a {
  color: var(--color-brand);
}
.a1-terms-prose.prose a:hover {
  text-decoration: underline;
}
.a1-terms-prose.prose strong {
  color: #fff;
}
.a1-terms-prose.prose hr {
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  margin-top: 2rem;
  margin-bottom: 2rem;
}
