.prose-content {
  font-size: 1.125rem; /* 18px (Figma 24px @ 1920 → 18px @ 1440) */
  line-height: 1.1;
  color: var(--color-text);
}

/* Headings */
.prose-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: var(--color-text);
}

.prose-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  color: var(--color-text);
}

.prose-content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  color: var(--color-text);
}

/* Paragraphs */
.prose-content p {
  margin-bottom: 1.25rem;
}

/* Links */
.prose-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-content a:hover {
  color: var(--color-primary-light);
}

/* Lists */
.prose-content ul,
.prose-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.prose-content li {
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

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

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

/* Blockquotes */
.prose-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
  font-style: italic;
  margin: 1.5rem 0;
  color: #4b5563;
}

.prose-content strong {
  font-weight: 600;
}
