/* ============================================================================
   AliothPress — Typography
   
   All text styling for public-facing pages.
   Headings, paragraphs, lists, blockquotes, code, links in prose.
   
   .ap-prose wraps user-generated content (posts, pages) and restores 
   natural spacing/styling that the reset removes.
   ============================================================================ */


/* ============================================================================
   1. HEADINGS (standalone, outside .ap-prose)
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ap-font-heading);
  font-weight: var(--ap-font-weight-bold);
  line-height: var(--ap-leading-tight);
  color: var(--ap-color-text);
}

h1 { font-size: var(--ap-text-4xl); }
h2 { font-size: var(--ap-text-3xl); }
h3 { font-size: var(--ap-text-2xl); }
h4 { font-size: var(--ap-text-xl); }
h5 { font-size: var(--ap-text-lg); }
h6 { font-size: var(--ap-text-base); font-weight: var(--ap-font-weight-semibold); }


/* ============================================================================
   2. PROSE — Rich content container
   
   Use class="ap-prose" on the wrapper of any user-authored content.
   Restores natural HTML styling (margins, lists, links) within.
   ============================================================================ */

.ap-prose {
  font-size: var(--ap-text-lg);
  line-height: var(--ap-leading-relaxed);
  color: var(--ap-color-text);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* --- Vertical rhythm: consistent spacing between elements --- */
.ap-prose > * + * {
  margin-top: 1.25em;
}

/* --- Headings in prose --- */
.ap-prose h1 {
  font-size: var(--ap-text-4xl);
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.ap-prose h2 {
  font-size: var(--ap-text-3xl);
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  padding-bottom: 0.3em;
  border-bottom: var(--ap-border-width) solid var(--ap-color-border);
}

.ap-prose h3 {
  font-size: var(--ap-text-2xl);
  margin-top: 1.6em;
  margin-bottom: 0.4em;
}

.ap-prose h4 {
  font-size: var(--ap-text-xl);
  margin-top: 1.4em;
  margin-bottom: 0.4em;
}

.ap-prose h5,
.ap-prose h6 {
  margin-top: 1.2em;
  margin-bottom: 0.3em;
}

/* Remove top margin if heading is first child */
.ap-prose > :first-child {
  margin-top: 0;
}

/* --- Paragraphs --- */
.ap-prose p {
  margin-top: 1.25em;
  margin-bottom: 0;
}

/* --- Links in prose --- */
.ap-prose a:not(.ap-btn) {
  color: var(--ap-color-link);
  text-decoration: underline;
  text-decoration-color: var(--ap-color-primary-light);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--ap-transition-fast),
              color var(--ap-transition-fast);
}

.ap-prose a:not(.ap-btn):hover {
  color: var(--ap-color-link-hover);
  text-decoration-color: var(--ap-color-link-hover);
}

/* --- Lists --- */
.ap-prose ul,
.ap-prose ol {
  padding-left: 1.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}

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

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

.ap-prose li {
  margin-top: 0.4em;
  padding-left: 0.25em;
}

.ap-prose li > ul,
.ap-prose li > ol {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}

/* --- Blockquotes --- */
.ap-prose blockquote {
  border-left: 4px solid var(--ap-color-primary);
  padding: var(--ap-space-4) var(--ap-space-6);
  margin: 1.5em 0;
  background: var(--ap-color-primary-subtle);
  border-radius: 0 var(--ap-radius-md) var(--ap-radius-md) 0;
  color: var(--ap-color-text-secondary);
  font-style: italic;
}

.ap-prose blockquote p {
  margin-top: 0.5em;
}

.ap-prose blockquote p:first-child {
  margin-top: 0;
}

/* --- Code --- */
.ap-prose code {
  font-family: var(--ap-font-mono);
  font-size: 0.875em;
  background: var(--ap-color-surface-alt);
  padding: 0.15em 0.4em;
  border-radius: var(--ap-radius-sm);
  color: var(--ap-color-accent);
}

.ap-prose pre {
  background: var(--ap-color-gray-900);
  color: var(--ap-color-gray-100);
  padding: var(--ap-space-5);
  border-radius: var(--ap-radius-md);
  overflow-x: auto;
  margin: 1.5em 0;
  line-height: 1.5;
}

.ap-prose pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-size: var(--ap-text-sm);
}

/* --- Horizontal rule --- */
.ap-prose hr {
  border: none;
  border-top: var(--ap-border-width) solid var(--ap-color-border);
  margin: 2em 0;
}

/* --- Tables --- */
.ap-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: var(--ap-text-base);
}

.ap-prose th,
.ap-prose td {
  text-align: left;
  padding: var(--ap-space-3) var(--ap-space-4);
  border-bottom: var(--ap-border-width) solid var(--ap-color-border);
}

.ap-prose th {
  font-weight: var(--ap-font-weight-semibold);
  background: var(--ap-color-surface);
  border-bottom-width: 2px;
}

.ap-prose tbody tr:hover {
  background: var(--ap-color-surface);
}

/* --- Images in prose --- */
.ap-prose img {
  border-radius: var(--ap-radius-md);
  margin: 1.5em 0;
}

.ap-prose figure {
  margin: 1.5em 0;
}

.ap-prose figcaption {
  font-size: var(--ap-text-sm);
  color: var(--ap-color-text-muted);
  margin-top: var(--ap-space-2);
  text-align: center;
}

/* --- Strong, emphasis --- */
.ap-prose strong {
  font-weight: var(--ap-font-weight-semibold);
  color: var(--ap-color-text);
}

.ap-prose em {
  font-style: italic;
}

/* --- Abbreviations --- */
.ap-prose abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

/* --- Superscript, subscript (no layout shift) --- */
.ap-prose sup,
.ap-prose sub {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.ap-prose sup { top: -0.5em; }
.ap-prose sub { bottom: -0.25em; }
