/* 青羽つむぐ — components/bundle.css（v3「青墨の帳面」）
   色・余白・角・幅は tokens.css の変数だけを参照する。class prefix は ao-。
   JavaScript を必要とする component は無い（mobile menu の開閉は aria-expanded の切替だけ）。 */

/* ---------- base ---------- */
html { -webkit-text-size-adjust: 100%; scroll-padding-top: var(--space-6); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
  line-break: strict;
}
a { color: var(--link); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
a:hover { color: var(--ai-deep); }
:focus-visible { outline: 2px solid transparent; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
p, dl, dd, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
time, .ao-num { font-variant-numeric: tabular-nums; }
::selection { background: var(--ai-soft); color: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
  a, .ao-btn, .ao-nav__link { transition: color .16s ease, background-color .16s ease, border-color .16s ease; }
}

/* ---------- type ---------- */
.ao-serif { font-family: var(--font-serif); font-feature-settings: "palt"; }
.ao-t-display { font-family: var(--font-serif); font-size: 44px; line-height: 1.5; font-weight: 600; letter-spacing: 0.06em; }
.ao-t-title { font-family: var(--font-serif); font-size: 32px; line-height: 1.5; font-weight: 600; letter-spacing: 0.01em; font-feature-settings: "palt"; }
.ao-t-heading { font-family: var(--font-serif); font-size: 26px; line-height: 1.5; font-weight: 600; letter-spacing: 0.01em; font-feature-settings: "palt"; }
.ao-t-entry { font-family: var(--font-serif); font-size: 22px; line-height: 1.55; font-weight: 600; letter-spacing: 0.01em; font-feature-settings: "palt"; }
.ao-t-subheading { font-family: var(--font-serif); font-size: 20px; line-height: 1.6; font-weight: 600; }
.ao-t-lead { font-size: 17px; line-height: 1.9; font-weight: 400; }
.ao-t-body { font-size: 16px; line-height: 1.9; font-weight: 400; }
.ao-t-small { font-size: 15px; line-height: 1.85; font-weight: 400; }
.ao-t-eyebrow { font-size: 13px; line-height: 1.5; font-weight: 500; letter-spacing: 0.12em; }
.ao-t-meta { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; font-weight: 400; letter-spacing: 0.02em; }
.ao-measure { max-width: var(--measure); }
.ao-phrase { display: inline-block; }
@media (max-width: 767px) {
  .ao-t-display { font-size: 30px; }
  .ao-t-title { font-size: 26px; }
  .ao-t-heading { font-size: 22px; }
  .ao-t-entry { font-size: 20px; }
}

/* ---------- layout ---------- */
.ao-container { max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter-mobile); }
.ao-container--prose { max-width: var(--container-prose); }
.ao-section { padding-block: var(--space-8); }
.ao-section + .ao-section { border-top: var(--hairline) solid var(--line); }
.ao-rule { border: 0; border-top: var(--hairline) solid var(--line); margin: 0; }
.ao-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
/* 帳面：左欄に見出し、本欄にentry */
.ao-ledger { display: grid; gap: var(--space-6); }
.ao-ledger__body { min-width: 0; }
@media (min-width: 768px) {
  .ao-container { padding-inline: var(--gutter-desktop); }
  .ao-section { padding-block: var(--space-9); }
}
@media (min-width: 900px) {
  .ao-ledger { grid-template-columns: var(--ledger-col) minmax(0, 1fr); column-gap: var(--space-8); align-items: start; }
  .ao-ledger > .ao-sec { position: sticky; top: var(--space-6); margin-bottom: 0; }
}

/* ---------- Header ---------- */
.ao-header { background: var(--paper); border-bottom: var(--hairline) solid var(--line); }
.ao-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); min-height: var(--header-height); }
.ao-wordmark { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-serif); font-size: 20px; line-height: 1; font-weight: 600; letter-spacing: 0.06em; color: var(--ink); text-decoration: none; }
.ao-wordmark:hover { color: var(--ai); }
.ao-mark { width: 26px; height: 26px; flex: none; display: block; }
.ao-mark--large { width: 120px; height: 120px; }
.ao-nav { display: none; }
.ao-nav__list { display: flex; gap: var(--space-5); }
.ao-nav__link { display: inline-block; padding-block: var(--space-2); font-size: 14px; line-height: 1.4; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-muted); text-decoration: none; border-bottom: var(--rule) solid transparent; }
.ao-nav__link:hover { color: var(--ink); }
.ao-nav__link[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ai); }
.ao-menu-btn { display: inline-flex; align-items: center; gap: var(--space-2); height: 40px; padding: 0 var(--space-3); border: var(--hairline) solid var(--line-strong); border-radius: var(--radius-sm); background: transparent; color: var(--ink); font: inherit; font-size: 14px; font-weight: 500; cursor: pointer; }
.ao-menu-btn__glyph { font-family: var(--font-mono); font-size: 18px; line-height: 1; }
.ao-menu { display: none; padding: var(--space-4); border: var(--hairline) solid var(--line); border-radius: var(--radius-md); background: var(--paper-raised); box-shadow: var(--shadow-float); }
.ao-header .ao-menu { margin-bottom: var(--space-3); }
.ao-menu-btn[aria-expanded="true"] + .ao-menu, .ao-menu[data-open="true"] { display: block; }
.ao-menu__group + .ao-menu__group { margin-top: var(--space-4); padding-top: var(--space-4); border-top: var(--hairline) solid var(--line); }
.ao-menu__label { font-size: 12px; line-height: 1.5; font-weight: 500; letter-spacing: 0.12em; color: var(--ink-muted); margin-bottom: var(--space-2); }
.ao-menu__link { display: block; padding-block: var(--space-2); font-size: 16px; font-weight: 500; color: var(--ink); text-decoration: none; }
.ao-menu__link[aria-current="page"] { color: var(--ai); }
@media (min-width: 768px) {
  .ao-nav { display: block; }
  .ao-menu-btn, .ao-menu { display: none; }
}

/* ---------- Footer ---------- */
.ao-footer { border-top: var(--hairline) solid var(--line); background: var(--paper-sunken); padding-block: var(--space-8); font-size: 14px; line-height: 1.75; }
.ao-footer__grid { display: grid; gap: var(--space-6); }
.ao-footer__about { max-width: 36em; color: var(--ink); }
.ao-footer__about a { margin-left: var(--space-2); }
.ao-footer__label { font-size: 12px; line-height: 1.5; font-weight: 500; letter-spacing: 0.12em; color: var(--ink-muted); margin-bottom: var(--space-2); }
.ao-footer__list li + li { margin-top: var(--space-1); }
.ao-footer__list a { color: var(--ink); text-decoration: none; }
.ao-footer__list a:hover { color: var(--ai); text-decoration: underline; }
.ao-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-7); padding-top: var(--space-4); border-top: var(--hairline) solid var(--line); color: var(--ink-muted); }
.ao-footer__bottom .ao-wordmark { font-size: 16px; }
@media (min-width: 768px) {
  .ao-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

/* ---------- Button / links ---------- */
.ao-btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); min-height: 44px; padding: 0 var(--space-5); border: var(--hairline) solid transparent; border-radius: var(--radius-sm); font: inherit; font-size: 15px; line-height: 1.4; font-weight: 500; letter-spacing: 0.02em; text-decoration: none; cursor: pointer; }
.ao-btn--primary { background: var(--ai); border-color: var(--ai); color: var(--on-ai); }
.ao-btn--primary:hover { background: var(--ai-deep); border-color: var(--ai-deep); color: var(--on-ai); }
.ao-btn--secondary { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.ao-btn--secondary:hover { border-color: var(--ink); color: var(--ink); }
.ao-btn[disabled], .ao-btn[aria-disabled="true"] { background: var(--paper-sunken); border-color: var(--line); color: var(--ink-muted); cursor: not-allowed; }
.ao-link { display: inline-flex; align-items: baseline; gap: var(--space-1); font-size: 15px; line-height: 1.4; font-weight: 500; letter-spacing: 0.02em; color: var(--ai); text-decoration: none; }
.ao-link:hover { color: var(--ai-deep); text-decoration: underline; }
.ao-link__arrow { font-family: var(--font-mono); }
.ao-ext::after { content: "\a0↗"; font-family: var(--font-mono); font-size: 0.85em; }
.ao-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3) var(--space-5); }

/* ---------- StatusChip（点と語。地色は敷かない） ---------- */
.ao-status { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-4); }
.ao-kind { font-size: 13px; line-height: 1.5; font-weight: 500; letter-spacing: 0.08em; color: var(--ink-muted); }
.ao-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; line-height: 1.5; font-weight: 500; letter-spacing: 0.04em; white-space: nowrap; color: var(--status-dormant); }
.ao-chip::before { content: ""; width: 7px; height: 7px; border-radius: var(--radius-full); background: currentColor; flex: none; }
.ao-chip--live { color: var(--status-live); }
.ao-chip--progress { color: var(--status-progress); }
.ao-chip--research { color: var(--status-research); }
.ao-chip--dormant { color: var(--status-dormant); }

/* ---------- DateStamp / 落款 ---------- */
.ao-stamp { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-mono); font-size: 12px; line-height: 1.6; letter-spacing: 0.02em; color: var(--ink-muted); }
.ao-stamp a { color: inherit; }
.ao-seal { display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; padding: 3px 5px 3px 7px; border: 1.5px solid var(--shu); border-radius: var(--radius-sm); color: var(--shu); font-family: var(--font-serif); font-size: 12px; line-height: 1; font-weight: 600; letter-spacing: 0.15em; white-space: nowrap; vertical-align: middle; }

/* ---------- Figure（挿絵の明暗：明るい紙用と暗い紙用の二枚を置き、地に合う方だけ見せる） ---------- */
:root, [data-theme="light"] { --ao-figure-light: block; --ao-figure-dark: none; }
[data-theme="dark"] { --ao-figure-light: none; --ao-figure-dark: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { --ao-figure-light: none; --ao-figure-dark: block; }
}
.ao-figure--light { display: var(--ao-figure-light, block) !important; }
.ao-figure--dark { display: var(--ao-figure-dark, none) !important; }

/* ---------- Hero（扉：中心文＋自己紹介。右にportraitが紙へ溶けて立つ） ---------- */
.ao-hero { padding-block: var(--space-7) var(--space-5); border-bottom: var(--hairline) solid var(--line); }
.ao-hero__grid { display: grid; gap: var(--space-4); }
.ao-hero__portrait { margin: 0; width: 240px; max-width: 100%; justify-self: end; }
.ao-hero__portrait img { display: block; width: 100%; height: auto; }
.ao-hero__copy { display: grid; gap: var(--space-3); max-width: 640px; align-content: center; padding-bottom: var(--space-4); }
.ao-hero__eyebrow { font-size: 13px; line-height: 1.5; font-weight: 500; letter-spacing: 0.2em; color: var(--ai); }
.ao-hero__title { font-family: var(--font-serif); font-size: 30px; line-height: 1.45; font-weight: 600; letter-spacing: 0.02em; font-feature-settings: "palt"; }
.ao-hero__title .ao-phrase { display: block; }
.ao-hero__sub { font-family: var(--font-serif); font-size: 18px; line-height: 1.6; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-muted); }
.ao-hero__intro { font-size: 17px; line-height: 1.9; max-width: var(--measure); margin-top: var(--space-5); }
.ao-hero__actions { margin-top: var(--space-5); }
.ao-hero__stamp { margin-top: var(--space-5); }
@media (min-width: 768px) {
  .ao-hero { padding-block: var(--space-8) var(--space-6); }
  .ao-hero__grid { grid-template-columns: minmax(0, 1fr) 360px; column-gap: var(--space-6); align-items: end; }
  .ao-hero__portrait { width: auto; order: 1; margin-bottom: calc(-1 * var(--space-5)); }
  .ao-hero__copy { gap: var(--space-4); padding-bottom: var(--space-7); }
  .ao-hero__title { font-size: 40px; }
  .ao-hero__sub { font-size: 20px; }
}

/* ---------- Split（本文＋脇） ---------- */
.ao-split { display: grid; gap: var(--space-6); }
.ao-split__aside { border-top: 0; padding-top: 0; }
@media (min-width: 768px) {
  .ao-split { grid-template-columns: minmax(0, 1fr) 280px; column-gap: var(--space-8); }
}

/* ---------- SectionHeader ---------- */
.ao-sec { display: grid; gap: var(--space-3); align-content: start; margin-bottom: var(--space-6); }
.ao-sec__eyebrow { font-size: 13px; line-height: 1.5; font-weight: 500; letter-spacing: 0.12em; color: var(--ai); }
.ao-sec__title { font-family: var(--font-serif); font-size: 26px; line-height: 1.5; font-weight: 600; letter-spacing: 0.01em; font-feature-settings: "palt"; text-wrap: balance; }
.ao-sec__lead { font-size: 15px; line-height: 1.85; max-width: var(--measure); }
.ao-sec__cta { margin-top: var(--space-1); }
@media (max-width: 767px) {
  .ao-sec__title { font-size: 22px; }
}

/* ---------- Entry（代表3件・代表記事・活動・indexの行） ---------- */
.ao-entries { display: grid; border-top: var(--hairline) solid var(--line); }
.ao-entry { display: grid; gap: var(--space-2); align-content: start; padding-block: var(--space-5) var(--space-6); border-bottom: var(--hairline) solid var(--line); }
.ao-entry__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-4); }
.ao-entry__date { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; letter-spacing: 0.02em; color: var(--ink-muted); }
.ao-entry__title { font-family: var(--font-serif); font-size: 22px; line-height: 1.55; font-weight: 600; letter-spacing: 0.01em; font-feature-settings: "palt"; }
.ao-entry__title a { color: var(--ink); text-decoration: none; }
.ao-entry__title a:hover { color: var(--ai); text-decoration: underline; }
.ao-entry__desc { font-size: 15px; line-height: 1.85; max-width: var(--measure); }
.ao-entry__note { font-size: 14px; line-height: 1.75; color: var(--ink-muted); max-width: var(--measure); }
.ao-entry__links { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); margin-top: var(--space-1); }
.ao-entry--lead .ao-entry__title { font-size: 28px; line-height: 1.5; }
.ao-entry--lead .ao-entry__desc { font-size: 16px; line-height: 1.9; }
.ao-entry__media { margin: 0 0 var(--space-3); border: var(--hairline) solid var(--line); background: var(--paper-raised); aspect-ratio: 1.91 / 1; overflow: hidden; max-width: 100%; }
.ao-entry__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ao-area { font-size: 13px; line-height: 1.5; font-weight: 500; letter-spacing: 0.1em; color: var(--ai); }
@media (max-width: 767px) {
  .ao-entry__title { font-size: 20px; }
  .ao-entry--lead .ao-entry__title { font-size: 22px; }
}
@media (min-width: 768px) {
  .ao-entries--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--space-7); }
  .ao-entries--2 .ao-entry--lead { grid-column: 1 / -1; }
}

/* ---------- AreaRail（領域の目次） ---------- */
.ao-rail { border-top: var(--hairline) solid var(--line-strong); }
.ao-rail__list { display: grid; }
.ao-rail__item { border-bottom: var(--hairline) solid var(--line); }
.ao-rail__link { display: grid; gap: var(--space-1); padding-block: var(--space-3); color: var(--ink); text-decoration: none; }
.ao-rail__label { font-family: var(--font-serif); font-size: 18px; line-height: 1.5; font-weight: 600; font-feature-settings: "palt"; color: var(--ink); }
.ao-rail__line { font-size: 14px; line-height: 1.75; color: var(--ink-muted); }
.ao-rail__link:hover .ao-rail__label { color: var(--ai); text-decoration: underline; }
@media (min-width: 768px) {
  .ao-rail__link { grid-template-columns: 8em minmax(0, 1fr); column-gap: var(--space-5); align-items: baseline; padding-block: var(--space-4); }
}

/* ---------- RelationList ---------- */
.ao-relations { border-top: var(--hairline) solid var(--line); padding-top: var(--space-4); }
.ao-relations__label { font-size: 13px; line-height: 1.5; font-weight: 500; letter-spacing: 0.12em; color: var(--ink-muted); margin-bottom: var(--space-3); }
.ao-relations__list { display: grid; gap: var(--space-3); }
.ao-relations__item { display: grid; grid-template-columns: 5.5em minmax(0, 1fr); gap: var(--space-3); align-items: baseline; }
.ao-relations__type { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; letter-spacing: 0.02em; color: var(--ai); }
.ao-relations__link { font-size: 16px; line-height: 1.7; color: var(--ink); }
.ao-relations__link:hover { color: var(--ai); }
.ao-relations__note { display: block; font-size: 14px; line-height: 1.75; color: var(--ink-muted); }

/* ---------- NowEntry ---------- */
.ao-now-list { display: grid; }
.ao-now { display: grid; gap: var(--space-3); padding-block: var(--space-6); border-top: var(--hairline) solid var(--line); }
.ao-now__head { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); }
.ao-now__date { font-family: var(--font-mono); font-size: 13px; line-height: 1.6; letter-spacing: 0.02em; color: var(--ink-muted); }
.ao-now--current .ao-now__date { color: var(--ink); }
.ao-now__lead { font-family: var(--font-serif); font-size: 20px; line-height: 1.6; font-weight: 600; font-feature-settings: "palt"; }
.ao-now__items { display: grid; gap: var(--space-3); counter-reset: now; }
.ao-now__item { display: grid; grid-template-columns: 1.5em minmax(0, 1fr); gap: var(--space-2); font-size: 16px; line-height: 1.9; max-width: var(--measure); }
.ao-now__item::before { counter-increment: now; content: counter(now); font-family: var(--font-mono); font-size: 12px; line-height: 2.5; color: var(--ink-muted); }
.ao-now__item strong { font-weight: 700; }
.ao-now--past .ao-now__lead { font-size: 16px; font-weight: 500; font-family: var(--font-sans); }
.ao-now--past .ao-now__items { color: var(--ink-muted); }
@media (min-width: 768px) {
  .ao-now { grid-template-columns: 180px minmax(0, 1fr); column-gap: var(--space-6); }
  .ao-now__head { grid-column: 1; grid-row: 1 / span 3; align-content: start; flex-direction: column; align-items: start; gap: var(--space-2); }
  .ao-now__lead, .ao-now__items, .ao-now__link { grid-column: 2; }
}

/* ---------- DetailBlocks ---------- */
.ao-blocks { border-top: var(--hairline) solid var(--line-strong); }
.ao-blocks__row { display: grid; gap: var(--space-2); padding-block: var(--space-4); border-bottom: var(--hairline) solid var(--line); }
.ao-blocks__term { font-size: 13px; line-height: 1.5; font-weight: 500; letter-spacing: 0.12em; color: var(--ink-muted); }
.ao-blocks__desc { font-size: 16px; line-height: 1.9; max-width: var(--measure); }
.ao-blocks__desc ul { display: grid; gap: var(--space-1); }
.ao-blocks__desc li { padding-left: 1em; text-indent: -1em; }
.ao-blocks__desc li::before { content: "・"; }
@media (min-width: 768px) {
  .ao-blocks__row { grid-template-columns: 160px minmax(0, 1fr); column-gap: var(--space-6); padding-block: var(--space-5); }
  .ao-blocks__term { padding-top: 0.5em; }
}

/* ---------- PageHeader ---------- */
.ao-page { display: grid; gap: var(--space-3); padding-block: var(--space-7) var(--space-6); border-bottom: var(--hairline) solid var(--line); }
.ao-page__eyebrow { display: flex; align-items: center; gap: var(--space-3); font-size: 13px; line-height: 1.5; font-weight: 500; letter-spacing: 0.12em; color: var(--ai); }
.ao-page__eyebrow a { color: inherit; text-decoration: none; }
.ao-page__eyebrow a:hover { text-decoration: underline; }
.ao-page__eyebrow .ao-sep { font-family: var(--font-mono); color: var(--line-strong); }
.ao-page__title { font-family: var(--font-serif); font-size: 26px; line-height: 1.5; font-weight: 600; letter-spacing: 0.01em; font-feature-settings: "palt"; max-width: 24em; }
.ao-page__one-line { font-size: 17px; line-height: 1.9; max-width: var(--measure); }
.ao-page__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-4); font-family: var(--font-mono); font-size: 12px; line-height: 1.6; letter-spacing: 0.02em; color: var(--ink-muted); }
.ao-page__actions { margin-top: var(--space-2); }
@media (min-width: 768px) {
  .ao-page { padding-block: var(--space-8) var(--space-7); }
  .ao-page__title { font-size: 32px; }
}

/* ---------- Prose ---------- */
.ao-prose { font-size: 16px; line-height: 1.9; max-width: var(--measure); }
.ao-prose > * + * { margin-top: var(--space-4); }
.ao-prose h2 { font-family: var(--font-serif); font-size: 24px; line-height: 1.5; font-weight: 600; letter-spacing: 0.01em; font-feature-settings: "palt"; margin-top: var(--space-7); }
.ao-prose h3 { font-family: var(--font-serif); font-size: 20px; line-height: 1.6; font-weight: 600; margin-top: var(--space-6); }
.ao-prose h2 + *, .ao-prose h3 + * { margin-top: var(--space-3); }
.ao-prose p.ao-prose__lead { font-size: 17px; }
.ao-prose ul, .ao-prose ol { padding-left: 1.4em; display: grid; gap: var(--space-1); }
.ao-prose ul { list-style: disc; }
.ao-prose ol { list-style: decimal; }
.ao-prose li::marker { color: var(--ink-muted); }
.ao-prose blockquote { margin: var(--space-6) 0; padding: var(--space-1) 0 var(--space-1) var(--space-5); border-left: var(--rule) solid var(--ai); font-family: var(--font-serif); font-size: 19px; line-height: 1.9; font-weight: 500; font-feature-settings: "palt"; }
.ao-prose blockquote p + p { margin-top: var(--space-1); }
.ao-prose blockquote cite { display: block; margin-top: var(--space-3); font-family: var(--font-mono); font-style: normal; font-size: 12px; color: var(--ink-muted); }
.ao-prose code { font-family: var(--font-mono); font-size: 13px; padding: 1px var(--space-1); border-radius: var(--radius-sm); background: var(--paper-sunken); }
.ao-prose pre { padding: var(--space-4); border-radius: var(--radius-none); background: var(--paper-sunken); font-family: var(--font-mono); font-size: 13px; line-height: 1.7; overflow-x: auto; }
.ao-prose pre code { padding: 0; background: transparent; }
.ao-prose hr { border: 0; border-top: var(--hairline) solid var(--line); margin: var(--space-7) 0; }
.ao-prose table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.7; }
.ao-prose th, .ao-prose td { text-align: left; vertical-align: top; padding: var(--space-2) var(--space-3); border-bottom: var(--hairline) solid var(--line); }
.ao-prose th { font-weight: 500; font-size: 12px; letter-spacing: 0.08em; color: var(--ink-muted); border-bottom-color: var(--line-strong); }
.ao-prose td:first-child { padding-left: 0; }
.ao-prose th:first-child { padding-left: 0; }
.ao-prose figure { margin: var(--space-6) 0; }
.ao-prose figure img { display: block; width: 100%; height: auto; border: var(--hairline) solid var(--line); }
.ao-prose figcaption { margin-top: var(--space-2); font-family: var(--font-mono); font-size: 12px; line-height: 1.6; color: var(--ink-muted); }
.ao-prose::after { content: ""; display: block; clear: both; }
.ao-prose .ao-portrait { width: 200px; margin: 0 0 var(--space-4); }
.ao-prose .ao-portrait img { border: 0; }
@media (min-width: 768px) { .ao-prose .ao-portrait { float: right; width: 220px; margin: 0 calc(-1 * var(--space-6)) var(--space-3) var(--space-5); } }
.ao-prose .ao-note { font-size: 14px; line-height: 1.75; color: var(--ink-muted); }
.ao-prose--wide { max-width: none; }
