:root {
  --paper: #f3f0e9;
  --paper-2: #ebe6dc;
  --ink: #20211d;
  --muted: #5f625a;
  --line: #cfcac0;
  --accent: #9e3f29;
  --accent-soft: #d8a28f;
  --dark: #22251f;
  --serif: "Noto Serif SC", "Songti SC", serif;
  --mono: "DM Mono", "SFMono-Regular", monospace;
  --wrap: min(1180px, calc(100vw - 64px));
  --ease: cubic-bezier(.2,.7,.2,1);
}
[data-theme="dark"] {
  --paper: #1d1f1b;
  --paper-2: #252821;
  --ink: #ece9df;
  --muted: #b4b6ad;
  --line: #3e4139;
  --accent: #e07c60;
  --accent-soft: #855344;
  --dark: #11130f;
}
@view-transition { navigation: auto; }
@keyframes page-leave { to { opacity: 0; } }
@keyframes page-enter { from { opacity: 0; } }
@keyframes theme-leave { to { opacity: 0; } }
@keyframes theme-enter { from { opacity: 0; } }
::view-transition-old(root) { animation: page-leave .18s ease both; }
::view-transition-new(root) { animation: page-enter .34s var(--ease) both; }
html.theme-transition::view-transition-old(root) { animation: theme-leave .14s ease both; }
html.theme-transition::view-transition-new(root) { animation: theme-enter .24s ease both; }
* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 28px; scrollbar-gutter: stable; }
body { min-width: 0; margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: var(--serif); -webkit-font-smoothing: antialiased; transition: background .3s, color .3s; }
body.menu-open { overflow: hidden; }
main { min-width: 0; }
a { color: inherit; text-decoration: none; }
button, input, summary { font: inherit; }
button { color: inherit; }
.wrap { min-width: 0; }
.reveal-item { opacity: 1; transform: translateY(0); }
.reveal-ready .reveal-item:not(.is-revealed) { opacity: 0; transform: translateY(18px); }
.reveal-ready .reveal-item { transition: opacity .58s var(--ease), transform .58s var(--ease); transition-delay: calc(var(--reveal-order, 0) * 35ms); }
.reveal-ready .post-row.reveal-item { transition-property: padding, opacity, transform; transition-duration: .25s, .58s, .58s; transition-timing-function: var(--ease); }
.reading-progress { position: fixed; z-index: 110; inset: 0 0 auto; height: 2px; pointer-events: none; background: transparent; }
.reading-progress span { display: block; width: 100%; height: 100%; background: var(--accent); box-shadow: 0 0 8px color-mix(in srgb, var(--accent) 55%, transparent); transform: scaleX(0); transform-origin: left center; will-change: transform; }
.wrap { width: var(--wrap); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -50px; padding: 10px 16px; background: var(--ink); color: var(--paper); transition: top .2s; }
.skip-link:focus { top: 16px; }
.site-header { width: var(--wrap); height: 96px; margin: auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); view-transition-name: site-header; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: .08em; }
.brand-mark { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 16px; }
.site-nav { display: flex; align-items: center; gap: 36px; font-size: 14px; }
.site-nav a { position: relative; display: inline-flex; min-height: 44px; align-items: center; color: var(--muted); transition: color .2s; }
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.site-nav a.active::after { content: ""; position: absolute; left: 50%; bottom: -14px; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.theme-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0; width: 58px; height: 32px; padding: 3px; border: 1px solid var(--line); border-radius: 20px; background: transparent; cursor: pointer; transition: border-color .2s, background .2s; }
.theme-toggle:hover { border-color: var(--muted); }
.theme-toggle span { display: grid; place-items: center; font-family: sans-serif; font-size: 14px; border-radius: 50%; transition: color .2s, background .2s; }
.theme-toggle .sun { background: var(--ink); color: var(--paper); }
[data-theme="dark"] .theme-toggle .sun { background: transparent; color: var(--muted); }
[data-theme="dark"] .theme-toggle .moon { background: var(--ink); color: var(--paper); }
.menu-toggle { display: none; background: none; border: 0; }
.hero { padding: 104px 0 34px; min-height: 640px; }
.hero-kicker, .eyebrow, .post-meta, .section-no { font: 500 11px/1.5 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.hero-kicker { display: flex; align-items: center; gap: 10px; color: var(--muted); }
.hero-kicker span { width: 24px; height: 1px; background: var(--accent); }
.hero-grid { display: grid; grid-template-columns: 1fr 285px; gap: 60px; align-items: end; margin-top: 56px; }
.hero h1 { margin: 0; font-size: clamp(50px, 6.5vw, 94px); font-weight: 500; line-height: 1.25; letter-spacing: 0; }
.hero h1 em { color: var(--accent); font-weight: 400; font-style: normal; }
.hero-aside { padding-bottom: 13px; }
.hero-aside p { margin: 0 0 38px; color: var(--muted); font-size: 15px; line-height: 2; }
.text-link { display: inline-flex; align-items: center; gap: 20px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: 13px; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, 3px); }
.hero-rule { display: flex; align-items: center; gap: 18px; margin-top: 85px; font: 10px var(--mono); letter-spacing: .1em; color: var(--muted); }
.hero-rule i { height: 1px; flex: 1; background: var(--line); }
.hero-rule b { font-weight: 400; color: var(--ink); }
.section-space { padding-block: 110px; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 48px; }
.eyebrow { display: block; margin-bottom: 12px; color: var(--accent); }
.section-head h2, .newsletter h2, .rss-cta h2 { margin: 0; font-size: 34px; font-weight: 500; letter-spacing: 0; }
.section-no { color: var(--muted); }
.featured { border-top: 1px solid var(--line); }
.featured-card { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 490px; background: var(--paper-2); }
.featured-visual { position: relative; display: grid; place-items: center; min-height: 490px; overflow: hidden; background: #282d26; color: #eeeae0; }
.visual-grid { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.4) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.4) 1px,transparent 1px); background-size: 44px 44px; }
.visual-orbit { position: absolute; width: min(55%, 330px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; transition: transform .8s var(--ease); }
.orbit-one::before, .orbit-two::before { content: ""; position: absolute; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; left: 50%; top: -4px; }
.orbit-two { width: min(38%, 225px); transform: rotate(135deg); border-style: dashed; }
.featured-visual:hover .orbit-one { transform: rotate(40deg); }
.featured-visual:hover .orbit-two { transform: rotate(85deg); }
.visual-center { position: relative; z-index: 1; display: grid; width: 98px; height: 98px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 42px; }
.visual-caption { position: absolute; left: 28px; bottom: 24px; font: 10px var(--mono); letter-spacing: .16em; }
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px 64px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 17px; color: var(--muted); }
.post-meta span:first-child { color: var(--accent); }
.featured-copy h3 { margin: 28px 0 22px; font-size: clamp(28px, 3vw, 43px); font-weight: 500; line-height: 1.45; letter-spacing: 0; }
.featured-copy p, .post-body p { color: var(--muted); font-size: 14px; line-height: 2; }
.read-more { display: flex; align-items: center; justify-content: space-between; margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.read-more i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; transition: .25s var(--ease); }
.read-more:hover i { background: var(--ink); color: var(--paper); transform: rotate(45deg); }
.notes { border-top: 1px solid var(--line); }
.post-list { border-top: 1px solid var(--ink); }
.post-row { display: grid; grid-template-columns: 70px 1fr 52px; gap: 30px; align-items: center; padding: 38px 0; border-bottom: 1px solid var(--line); transition: padding .25s var(--ease); }
.post-row:hover { padding-left: 12px; }
.post-index { align-self: start; padding-top: 4px; font: 11px var(--mono); color: var(--muted); }
.post-body h3 { margin: 12px 0 8px; font-size: 25px; font-weight: 500; letter-spacing: 0; }
.post-body p { margin: 0; }
.round-arrow { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .25s var(--ease); }
.post-row:hover .round-arrow { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(45deg); }
.quote-band { background: var(--dark); color: #eeebe2; }
.quote-inner { position: relative; padding-block: 108px; text-align: center; }
.quote-mark { position: absolute; left: 3%; top: 45px; color: var(--accent); font-size: 100px; line-height: 1; }
blockquote { margin: 0 0 30px; font-size: clamp(24px, 3.3vw, 44px); line-height: 1.65; font-weight: 400; }
cite { font: 10px var(--mono); letter-spacing: .18em; color: #a7aa9e; font-style: normal; }
.newsletter { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; border-top: 1px solid var(--line); }
.newsletter-copy p { margin: 0 0 28px; color: var(--muted); line-height: 1.9; }
.subscribe-form { display: flex; border-bottom: 1px solid var(--ink); }
.subscribe-form input { flex: 1; min-width: 0; padding: 16px 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.subscribe-form input::placeholder { color: var(--muted); }
.subscribe-form button { padding: 0 4px 0 28px; border: 0; background: transparent; cursor: pointer; }
.subscribe-form button span { margin-left: 12px; }
.form-message { display: block; min-height: 22px; padding-top: 10px; color: var(--accent); }
.site-footer { padding: 65px 0 28px; background: var(--dark); color: #e9e6dc; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand .brand-mark { border-color: #e9e6dc; }
.footer-grid p { margin: 22px 0 0; color: #b3b7ac; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 13px; font-size: 13px; }
.footer-links > span { margin-bottom: 8px; font: 10px var(--mono); letter-spacing: .15em; color: #a5a99e; }
.footer-links a { display: inline-flex; align-items: center; gap: 5px; color: #c6c9c0; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-end { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; font: 9px var(--mono); letter-spacing: .1em; color: #adb1a6; }
.back-top { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #4a4e45; border-radius: 50%; background: transparent; color: #ddd; cursor: pointer; }
/* Inner pages */
.page-hero { padding: 100px 0 70px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(48px, 7vw, 88px); font-weight: 500; line-height: 1.22; letter-spacing: 0; }
.page-hero p { max-width: 580px; margin: 32px 0 0 auto; color: var(--muted); line-height: 2; }
.archive-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.filter-btn { min-height: 40px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 40px; background: transparent; color: var(--muted); font-size: 12px; cursor: pointer; transition: color .2s, background .2s, border-color .2s; }
.filter-btn.active, .filter-btn[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.archive-year { display: grid; grid-template-columns: 120px 1fr; padding: 55px 0; border-top: 1px solid var(--line); }
.archive-year h2 { margin: 0; font: 500 26px var(--mono); }
.archive-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 25px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.archive-item time, .archive-item span { font: 10px var(--mono); color: var(--muted); }
.archive-item a { font-size: 19px; }
.archive-item.hidden { display: none; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; padding-block: 100px; }
.portrait-placeholder { position: sticky; top: 30px; display: grid; aspect-ratio: 4/5; place-items: center; overflow: hidden; background: var(--dark); color: #eee; }
.portrait-placeholder::before { content: ""; width: 50%; aspect-ratio: 1; border: 1px solid #777; border-radius: 50%; box-shadow: 0 120px 0 40px #33382f; }
.portrait-placeholder span { position: absolute; bottom: 24px; left: 24px; font: 10px var(--mono); letter-spacing: .12em; }
img.portrait-placeholder { display: block; width: 100%; height: auto; aspect-ratio: 960/962; object-fit: cover; object-position: center; background: var(--paper-2); color: inherit; }
img.portrait-placeholder::before { content: none; }
.portrait-photo { position: sticky; top: 30px; display: block; width: 100%; height: auto; aspect-ratio: 960/962; object-fit: cover; object-position: center; background: var(--paper-2); }
.about-copy h2 { margin: 0 0 30px; font-size: 36px; font-weight: 500; }
.about-copy p { margin: 0 0 24px; color: var(--muted); line-height: 2.05; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px; padding-top: 38px; border-top: 1px solid var(--line); }
.about-facts span { display: block; margin-bottom: 8px; font: 10px var(--mono); color: var(--accent); }
.article-header { max-width: 900px; padding: 100px 0 68px; }
.article-header h1 { margin: 28px 0 32px; font-size: clamp(42px, 6vw, 72px); font-weight: 500; line-height: 1.3; letter-spacing: 0; }
.article-lead { max-width: 690px; color: var(--muted); font-size: 18px; line-height: 1.9; }
.article-cover { margin-bottom: 80px; min-height: 420px; }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, 680px); gap: 80px; justify-content: center; padding-bottom: 120px; }
.article-toc { position: sticky; top: 30px; align-self: start; font-size: 12px; }
.article-toc span { display: block; margin-bottom: 18px; font: 10px var(--mono); color: var(--muted); }
.article-toc a { display: block; margin-left: -10px; padding: 7px 0 7px 10px; border-left: 1px solid transparent; color: var(--muted); transition: color .2s, border-color .2s, transform .2s; }
.article-toc a:hover { color: var(--accent); }
.article-toc a.is-active, .article-toc a[aria-current="location"] { border-left-color: var(--accent); color: var(--accent); transform: translateX(4px); }
.article-content { min-width: 0; font-size: 17px; line-height: 2.1; overflow-wrap: break-word; }
.article-content [id] { scroll-margin-top: 28px; }
.article-content h2 { margin: 70px 0 25px; font-size: 30px; font-weight: 500; line-height: 1.5; }
.article-content p { margin: 0 0 28px; }
.article-content blockquote { margin: 50px 0; padding: 28px 32px; border-left: 2px solid var(--accent); background: var(--paper-2); font-size: 21px; line-height: 1.8; }
.article-content ul { padding-left: 1.2em; }
.article-content li { margin-bottom: 14px; padding-left: 8px; }
.article-end { margin-top: 70px; padding-top: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.mobile-toc { display: none; }
.article-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 54px; padding-top: 28px; border-top: 1px solid var(--line); }
.article-nav a, .article-content .article-nav a { display: flex; min-width: 0; min-height: 72px; flex-direction: column; justify-content: center; gap: 7px; padding: 14px 0; color: var(--ink); text-decoration: none; overflow-wrap: anywhere; transition: color .2s, transform .2s; }
.article-nav a:hover { color: var(--accent); }
.article-nav-prev { align-items: flex-start; }
.article-nav-next { grid-column: 2; align-items: flex-end; text-align: right; }
.article-nav a:only-child.article-nav-next { grid-column: 2; }
.article-nav span, .article-nav small { color: var(--muted); font: 10px/1.5 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.not-found { display: grid; min-height: 72vh; padding-block: 72px; place-items: center; text-align: center; }
.not-found-inner { max-width: 760px; }
.not-found-title { margin: 15px 0; color: var(--accent); font-size: clamp(70px, 15vw, 180px); font-weight: 400; line-height: 1; letter-spacing: 0; }
.not-found-copy { margin: 0 0 35px; color: var(--muted); line-height: 2; }
@media (max-width: 800px) {
  :root { --wrap: min(100% - 36px, 1180px); }
  .site-header { height: 76px; }
  .menu-toggle { position: relative; z-index: 20; display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-content: center; gap: 6px; padding: 10px; cursor: pointer; }
  .menu-toggle span { width: 22px; height: 1px; background: var(--ink); transition: .2s; }
  .menu-toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 10; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 22px; padding: 76px 24px 32px; background: var(--paper); visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), visibility 0s linear .3s; }
  .site-nav > a, .site-nav > button { opacity: 0; transform: translateY(10px); transition: opacity .25s var(--ease), transform .25s var(--ease), color .2s, background .2s, border-color .2s; }
  .site-nav > a { min-height: 48px; font-size: 18px; }
  .site-nav > button { height: 44px; }
  .site-nav.open { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
  .site-nav.open > a, .site-nav.open > button { opacity: 1; transform: translateY(0); }
  .site-nav.open > :nth-child(2) { transition-delay: 35ms; }
  .site-nav.open > :nth-child(3) { transition-delay: 70ms; }
  .site-nav.open > :nth-child(4) { transition-delay: 105ms; }
  .hero { padding-top: 72px; min-height: auto; }
  .hero-grid, .featured-card, .newsletter, .rss-cta, .about-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; margin-top: 38px; }
  .hero h1 { font-size: clamp(43px, 13vw, 68px); }
  .hero-aside { max-width: 360px; }
  .hero-rule { margin-top: 60px; }
  .section-space { padding-block: 75px; }
  .featured-copy { padding: 42px 26px; }
  .featured-visual { min-height: 350px; }
  .post-row { grid-template-columns: 35px 1fr; gap: 15px; }
  .round-arrow { display: none; }
  .post-body h3 { font-size: 21px; }
  .quote-mark { left: 0; }
  .newsletter { gap: 42px; }
  .text-link { min-height: 44px; padding-block: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-end { align-items: flex-start; gap: 30px; }
  .footer-links a { display: inline-flex; min-height: 40px; align-items: center; }
  .archive-year { grid-template-columns: 1fr; gap: 25px; }
  .archive-item { grid-template-columns: 75px 1fr; }
  .archive-item span { display: none; }
  .about-grid { gap: 50px; padding-block: 70px; }
  .portrait-placeholder { position: relative; top: 0; max-height: 520px; }
  img.portrait-placeholder, .portrait-photo { position: relative; top: 0; max-height: none; }
  .article-cover { min-height: 330px; }
  .article-layout { width: var(--wrap); grid-template-columns: minmax(0, 1fr); margin-inline: auto; padding-inline: 0; }
  .article-toc { display: none; }
  .mobile-toc { display: block; width: var(--wrap); margin: -42px auto 50px; border-block: 1px solid var(--line); }
  .mobile-toc summary { position: relative; display: flex; min-height: 52px; align-items: center; justify-content: space-between; padding: 10px 2px; color: var(--ink); cursor: pointer; list-style: none; }
  .mobile-toc summary::-webkit-details-marker { display: none; }
  .mobile-toc summary::after { content: "+"; display: grid; width: 30px; height: 30px; place-items: center; color: var(--accent); font: 20px/1 var(--mono); transition: transform .25s var(--ease); }
  .mobile-toc[open] summary::after { transform: rotate(45deg); }
  .mobile-toc nav { display: grid; gap: 2px; padding: 2px 0 18px; }
  .mobile-toc nav a { min-height: 42px; padding: 10px 2px; color: var(--muted); font-size: 13px; line-height: 1.6; }
  .mobile-toc nav a.is-active, .mobile-toc nav a[aria-current="location"] { color: var(--accent); }
  .article-nav { gap: 14px; }
  .article-nav a, .article-content .article-nav a { min-height: 84px; }
}
@media (max-width: 500px) {
  .hero h1 br { display: none; }
  .section-head { align-items: start; }
  .section-head .text-link { border: 0; padding: 5px 0; }
  .featured-copy h3 { font-size: 29px; }
  .post-row { padding-block: 30px; }
  blockquote { font-size: 23px; }
  .quote-inner { padding-block: 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .article-nav { grid-template-columns: 1fr; }
  .article-nav-next, .article-nav a:only-child.article-nav-next { grid-column: 1; align-items: flex-start; text-align: left; }
  .not-found { min-height: 68vh; padding-block: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .reveal-item, .reveal-ready .reveal-item:not(.is-revealed) { opacity: 1 !important; transform: none !important; }
  .text-link:hover span, .post-row:hover, .post-row:hover .round-arrow, .read-more:hover i, .article-toc a.is-active, .featured-visual:hover .orbit-one, .featured-visual:hover .orbit-two { transform: none !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
}

/* Markdown article enhancements */
.article-content img { display: block; max-width: 100%; height: auto; margin: 42px auto 14px; border-radius: 2px; }
.article-content p > img + em { display: block; color: var(--muted); text-align: center; font-size: 12px; }
.article-content pre { max-width: 100%; margin: 36px 0; padding: 24px 26px; overflow-x: auto; border: 1px solid var(--line); background: var(--dark); color: #e9e6dc; font: 13px/1.75 var(--mono); -webkit-overflow-scrolling: touch; }
.article-content code { padding: .12em .35em; background: var(--paper-2); color: var(--accent); font: .86em var(--mono); overflow-wrap: anywhere; }
.article-content pre code { padding: 0; background: transparent; color: inherit; overflow-wrap: normal; word-break: normal; }
.article-content table { display: block; width: 100%; max-width: 100%; margin: 36px 0; overflow-x: auto; border-collapse: collapse; font-size: 14px; -webkit-overflow-scrolling: touch; }
.article-content th, .article-content td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.article-content th { background: var(--paper-2); font-weight: 600; }
.article-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.subscribe-form { transition: border-color .2s; }
.subscribe-form:focus-within { border-bottom-color: var(--accent); }
:where(a, button, input, summary, [tabindex]):focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.subscribe-form input:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
::selection { background: var(--accent); color: #fff; }
