/* ===== Essay Page Styles ===== */

.essay-header {
  margin-bottom: 2.5rem;
}

.essay-title {
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.essay-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Richtext: long-form content defaults */
.richtext {
  max-width: var(--content-width);
}

.richtext p {
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.richtext h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.richtext h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.richtext blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--color-text-secondary);
  font-style: italic;
}

.richtext code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--color-code-bg);
  padding: 0.15em 0.35em;
  border-radius: 3px;
}

.richtext pre {
  background: var(--color-code-bg);
  padding: 1.25rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}

.richtext pre code {
  background: none;
  padding: 0;
}

.richtext img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.richtext hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2.5rem 0;
}

.richtext ul,
.richtext ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.richtext ul {
  list-style: disc;
}

.richtext ol {
  list-style: decimal;
}

.richtext li {
  margin-bottom: 0.5rem;
}

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

.richtext a:hover {
  color: var(--color-accent-hover);
}

/* Essay page layout */
.site-main--essay {
  max-width: var(--content-width);
}

/* Essay footer */
.essay-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.back-link {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.back-link:hover {
  color: var(--color-accent);
}
