/* ReaderMX: a quiet place for words. No font or CSS network dependencies. */

:root {
  --paper:#f7f6f2;
  --white:#fffefa;
  --ink:#202a26;
  --muted:#65716a;
  --green:#214d3d;
  --green-dark:#183c2f;
  --pale:#e9eee5;
  --orange:#cb6d41;
  --line:#dcded5;
  --serif:"Iowan Old Style","Palatino Linotype","Noto Serif CJK SC","Source Han Serif SC","Songti SC",SimSun,serif;
  --sans:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:28px
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:15px/1.7 var(--sans);
  -webkit-font-smoothing:antialiased
}

::selection {
  background:#dce6ca;
  color:var(--green-dark)
}

a {
  color:inherit;
  text-decoration:none;
  transition:color .18s ease
}

a:hover {
  color:var(--green)
}

button,input {
  font:inherit
}

button,a,input {
  -webkit-tap-highlight-color:transparent
}

button {
  cursor:pointer
}

img,svg {
  max-width:100%
}

img {
  display:block
}

h1,h2,h3,p {
  margin:0
}

h1,h2,h3 {
  overflow-wrap:anywhere
}

h1,h2,h3 {
  font-weight:600
}

h1,h2 {
  line-height:1.35
}

button {
  color:inherit
}

a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible {
  outline:3px solid var(--orange);
  outline-offset:5px
}

main:focus {
  outline:none
}

.container {
  width:min(1200px,calc(100% - 96px));
  margin-inline:auto
}

.visually-hidden {
  position:absolute!important;
  width:1px;
  height:1px;
  padding:0;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}

.skip-link {
  position:absolute;
  top:-80px;
  left:20px;
  background:var(--green);
  color:white;
  padding:12px 20px;
  z-index:20
}

.skip-link:focus {
  top:12px;
  color:white
}

.eyebrow {
  font-size:10px;
  font-weight:600;
  letter-spacing:.14em;
  line-height:1.6;
  color:var(--muted)
}

.status-dot {
  display:inline-block;
  width:7px;
  height:7px;
  background:var(--orange);
  border-radius:50%;
  margin-right:9px;
  vertical-align:1px
}

.site-header {
  border-bottom:1px solid var(--line)
}

.header-inner {
  min-height:94px;
  display:flex;
  align-items:center;
  gap:52px
}

.brand {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:25px;
  font-weight:700;
  letter-spacing:-1px;
  flex-shrink:0
}

.brand-mark {
  width:34px;
  height:34px;
  color:var(--green)
}

.brand-dot {
  color:var(--orange)
}

.main-nav {
  display:flex;
  align-items:center;
  gap:30px;
  font-size:13px;
  white-space:nowrap;
  align-self:stretch
}

.main-nav a {
  display:flex;
  align-items:center;
  position:relative;
  color:var(--muted)
}

.main-nav a:hover,.main-nav a[aria-current=page] {
  color:var(--green)
}

.main-nav a[aria-current=page]::after {
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:2px;
  background:var(--green)
}

.header-search {
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:auto;
  border-bottom:1px solid #bec5bc;
  padding:5px 0;
  width:215px
}

.header-search input {
  width:100%;
  min-width:0;
  background:none;
  border:0;
  outline:0;
  font-size:12px;
  color:var(--ink);
  padding:5px 0
}

.header-search input::placeholder {
  color:#7c847c
}

.header-search button {
  display:grid;
  place-items:center;
  padding:4px;
  background:none;
  border:0;
  color:var(--green);
  flex-shrink:0
}

.header-search svg {
  width:19px;
  height:19px
}

.home-hero {
  display:grid;
  grid-template-columns:1.35fr 1fr;
  gap:100px;
  padding:68px 0 72px;
  align-items:center
}

.hero-copy>.eyebrow {
  letter-spacing:.12em;
  font-size:11px;
  color:var(--green)
}

.hero-copy h1 {
  position:relative;
  display:inline-block;
  margin:23px 0 21px;
  font-family:var(--serif);
  font-size:clamp(46px,5.35vw,72px);
  font-weight:600;
  letter-spacing:-.04em;
  line-height:1.29
}

.hero-copy h1 em {
  font-style:normal;
  color:var(--green)
}

.hero-spark {
  position:absolute;
  color:var(--orange);
  font-family:var(--sans);
  font-size:51px;
  bottom:6px;
  right:-74px;
  font-weight:400;
  line-height:1
}

.hero-description {
  font-size:14px;
  line-height:1.9;
  color:var(--muted)
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:32px;
  min-height:46px;
  padding:11px 22px;
  font-size:12px;
  font-weight:500;
  border:1px solid transparent;
  border-radius:2px
}

.button span[aria-hidden] {
  font-size:18px;
  line-height:1
}

.button-dark {
  background:var(--green);
  color:white
}

.button-dark:hover {
  background:var(--green-dark);
  color:white
}

.button-outline {
  border-color:#bac4b8;
  color:var(--green)
}

.button-outline:hover {
  background:var(--pale)
}

.hero-copy>.button {
  margin-top:27px
}

.hero-note {
  padding:31px 33px 28px;
  background:#eeeee5;
  position:relative;
  border-radius:2px;
  min-height:295px
}

.hero-note::before {
  content:"";
  position:absolute;
  width:55px;
  height:16px;
  background:#dedfcf;
  opacity:.7;
  top:-7px;
  left:calc(50% - 27px);
  transform:rotate(-6deg)
}

.hero-note-top {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:15px
}

.hero-note-top .eyebrow {
  font-size:9px;
  letter-spacing:.13em
}

.hero-note-top svg {
  width:82px;
  height:82px;
  color:var(--green);
  margin-top:-6px;
  flex-shrink:0
}

.hero-note-quote {
  font-family:var(--serif);
  font-size:24px;
  line-height:1.7;
  letter-spacing:.015em;
  margin-top:-16px
}

.hero-stats {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:20px;
  border-top:1px solid #d5d8cc;
  margin-top:27px;
  padding-top:21px
}

.hero-stats strong {
  display:block;
  font-family:Georgia,var(--serif);
  font-size:30px;
  font-weight:400;
  line-height:1.2;
  letter-spacing:-1px
}

.hero-stats span {
  display:block;
  font-size:10px;
  margin-top:6px;
  color:var(--muted)
}

.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:25px;
  margin-bottom:30px
}

.section-heading .eyebrow {
  margin-bottom:7px
}

.section-heading h2 {
  font-family:var(--serif);
  font-size:27px;
  letter-spacing:-.035em
}

.section-intro {
  font-size:12px;
  color:var(--muted);
  margin-top:9px
}

.text-link {
  display:inline-flex;
  align-items:center;
  gap:16px;
  font-size:12px;
  color:var(--green);
  white-space:nowrap
}

.text-link span[aria-hidden] {
  font-size:19px
}

.fresh-section {
  border-top:1px solid var(--ink);
  padding-top:26px
}

.lead-article {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:43px;
  align-items:center
}

.image-shell {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:var(--pale)
}

.image-shell img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
  background:transparent;
  transition:transform .4s ease
}

.image-shell:hover img {
  transform:scale(1.025)
}

.image-fallback {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--green);
  font-family:var(--serif);
  font-size:36px
}

.image-failed {
  display:none!important
}

.lead-image {
  aspect-ratio:1.58;
  border-radius:2px;
  display:block
}

.lead-fallback {
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  padding:28px 32px;
  background:#dbe3d3;
  color:var(--green)
}

.cover-kicker {
  font:10px/1.5 var(--sans);
  letter-spacing:.1em;
  max-width:85%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}

.cover-symbol {
  font:100px/.6 Georgia,serif;
  position:absolute;
  top:60px;
  right:35px;
  color:#a9bda0
}

.cover-word {
  font-family:var(--serif);
  font-size:clamp(20px,2.4vw,32px);
  line-height:1.65;
  letter-spacing:.03em;
  margin:auto 0;
  position:relative
}

.cover-bottom {
  display:flex;
  width:100%;
  align-items:center;
  justify-content:space-between;
  font:12px/1.5 var(--sans);
  border-top:1px solid #b9c8b1;
  padding-top:15px;
  font-weight:600;
  gap:15px
}

.cover-bottom span {
  font-size:8px;
  letter-spacing:.14em;
  font-weight:400
}

.article-meta {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  color:var(--muted);
  font-size:10px;
  line-height:1.6
}

.article-meta a {
  font-weight:500;
  color:var(--green);
  overflow-wrap:anywhere
}

.meta-dot {
  font-size:10px;
  color:#9da597
}

.lead-copy {
  padding:12px 0
}

.lead-copy h3 {
  font-family:var(--serif);
  font-size:30px;
  line-height:1.6;
  letter-spacing:-.025em;
  margin-top:16px
}

.lead-copy>p {
  font-size:13px;
  line-height:1.95;
  color:var(--muted);
  margin-top:17px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden
}

.read-link {
  display:inline-flex;
  align-items:center;
  gap:18px;
  color:var(--green);
  font-size:11px;
  font-weight:500
}

.read-link>span[aria-hidden] {
  font-size:18px;
  line-height:1
}

.lead-copy>.read-link {
  margin-top:26px
}

.recent-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:29px;
  margin-top:34px
}

.recent-card {
  border-top:1px solid var(--line);
  padding:23px 0 7px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  min-width:0
}

.recent-card .article-meta {
  gap:10px;
  justify-content:space-between;
  width:100%
}

.recent-card h3 {
  font-family:var(--serif);
  font-size:20px;
  line-height:1.65;
  margin-top:12px
}

.article-excerpt {
  color:var(--muted);
  font-size:12px;
  line-height:1.9;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden
}

.recent-card>.article-excerpt {
  margin-top:11px;
  margin-bottom:21px
}

.recent-card>.read-link {
  margin-top:auto
}

.home-sources {
  margin-top:65px;
  padding-top:31px;
  border-top:1px solid var(--ink)
}

.source-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:17px
}

.source-card {
  border:1px solid var(--line);
  border-radius:2px;
  min-width:0;
  background:rgba(255,255,255,.2)
}

.source-card-link {
  display:flex;
  flex-direction:column;
  height:100%;
  padding:23px 23px 18px;
  transition:background .2s ease
}

.source-card-link:hover {
  background:#edf0e7;
  color:var(--ink)
}

.source-card-top {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:15px
}

.avatar {
  display:inline-flex;
  flex-shrink:0;
  width:48px;
  height:48px;
  border-radius:50%;
  vertical-align:middle;
  background:#e4e9de
}

.avatar .image-fallback {
  font-size:19px
}

.avatar img {
  object-fit:cover
}

.source-kind {
  font-size:9px;
  line-height:1.6;
  display:inline-block;
  color:var(--muted);
  border:1px solid #d6dbd0;
  padding:2px 7px;
  border-radius:2px;
  align-self:flex-start
}

.source-card h2 {
  font-family:var(--serif);
  font-size:18px;
  margin-top:16px;
  line-height:1.5
}

.source-description {
  font-size:11px;
  color:var(--muted);
  margin:8px 0 24px;
  line-height:1.9;
  min-height:42px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden
}

.source-card-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:10px;
  color:var(--muted);
  margin-top:auto;
  border-top:1px solid var(--line);
  padding-top:13px
}

.source-card-bottom>span:last-child {
  font-size:19px;
  line-height:1;
  color:var(--green)
}

.home-more {
  margin-top:61px;
  padding-top:28px;
  border-top:1px solid var(--ink)
}

.article-list {
  border-top:1px solid var(--line)
}

.article-row {
  display:flex;
  gap:40px;
  align-items:center;
  padding:27px 0;
  border-bottom:1px solid var(--line)
}

.article-row-copy {
  flex:1;
  min-width:0
}

.article-row h2 {
  font-family:var(--serif);
  font-size:23px;
  line-height:1.6;
  margin:9px 0 9px;
  letter-spacing:-.015em
}

.article-row .read-link {
  margin-top:12px
}

.row-image {
  display:block;
  width:190px;
  aspect-ratio:1.5;
  flex-shrink:0;
  border-radius:2px
}

.center-action {
  display:flex;
  justify-content:center;
  margin-top:33px
}

.archive-strip {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  background:var(--pale);
  padding:37px 40px;
  margin:67px 0 72px;
  border-radius:2px;
  align-items:center
}

.archive-strip h2 {
  font-family:var(--serif);
  font-size:27px;
  line-height:1.5;
  margin-top:8px
}

.archive-strip p:not(.eyebrow) {
  font-size:12px;
  color:var(--muted);
  margin-top:11px
}

.archive-links {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px 24px
}

.archive-links a {
  display:flex;
  justify-content:space-between;
  gap:14px;
  font-family:Georgia,serif;
  font-size:23px;
  padding-bottom:9px;
  border-bottom:1px solid #c8d0c1
}

.archive-links a>span {
  font-family:var(--sans);
  font-size:15px;
  align-self:center
}

.site-footer {
  border-top:1px solid var(--line);
  margin-top:75px
}

.home-hero~.archive-strip:last-child {
  margin-bottom:0
}

.footer-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  padding-top:34px;
  padding-bottom:29px
}

.footer-brand {
  font-size:21px;
  font-weight:700;
  letter-spacing:-.8px
}

.footer-top p {
  font-size:11px;
  color:var(--muted);
  margin-top:8px
}

.footer-top nav {
  display:flex;
  gap:27px;
  font-size:11px;
  color:var(--muted)
}

.footer-bottom {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:25px;
  padding:19px 0 26px;
  border-top:1px solid var(--line);
  font-size:9px;
  color:var(--muted)
}

.footer-bottom>span {
  white-space:nowrap
}

.footer-bottom>p {
  flex:1
}

.footer-bottom>a {
  white-space:nowrap
}

.footer-bottom>a span {
  margin-left:7px
}

.page-heading {
  padding:58px 0 41px;
  max-width:850px
}

.page-heading h1 {
  font-family:var(--serif);
  font-size:45px;
  line-height:1.45;
  letter-spacing:-.025em;
  margin-top:15px
}

.page-heading>p:not(.eyebrow) {
  color:var(--muted);
  font-size:14px;
  margin-top:17px
}

.listing-toolbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:19px 0;
  border-top:1px solid var(--ink);
  font-size:12px
}

.listing-toolbar strong {
  font-weight:600
}

.toolbar-muted {
  font-size:11px;
  color:var(--muted)
}

.year-filters {
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  font-size:11px
}

.year-filters a {
  padding:4px 9px;
  color:var(--muted);
  border-radius:2px
}

.year-filters a:hover {
  background:var(--pale)
}

.year-filters a[aria-current=page] {
  background:var(--green);
  color:white
}

.reading-list .article-row {
  padding:29px 0
}

.reading-list .article-row h2 {
  font-size:25px
}

.reading-list .article-excerpt {
  max-width:820px
}

.reading-list .row-image {
  width:210px
}

.directory-grid {
  border-top:1px solid var(--line);
  padding-top:22px
}

.pagination {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:35px;
  padding-top:37px;
  font-size:12px
}

.page-direction {
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green)
}

.page-direction.disabled {
  color:#979f94
}

.page-numbers {
  display:flex;
  gap:8px;
  align-items:center
}

.page-numbers>a,.page-numbers>span {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:2px
}

.page-numbers>a:hover {
  background:var(--pale)
}

.page-numbers>a[aria-current=page] {
  background:var(--green);
  color:white
}

.mobile-page-count {
  display:none
}

.breadcrumbs {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  color:var(--muted);
  font-size:11px;
  line-height:1.8;
  margin:29px 0 0
}

.breadcrumbs>span[aria-current] {
  overflow-wrap:anywhere
}

.breadcrumbs>span[aria-hidden] {
  color:#a8afa3
}

.source-profile {
  display:flex;
  align-items:flex-start;
  gap:26px;
  max-width:800px;
  padding:41px 0 48px
}

.profile-avatar {
  width:88px;
  height:88px;
  margin-top:7px
}

.profile-avatar .image-fallback {
  font-size:32px
}

.source-profile-copy {
  min-width:0
}

.source-profile h1 {
  font-family:var(--serif);
  font-size:38px;
  line-height:1.45;
  margin:9px 0 12px
}

.source-profile-copy>p {
  font-size:14px;
  color:var(--muted);
  line-height:1.95;
  overflow-wrap:anywhere
}

.profile-meta {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  font-size:11px;
  color:var(--muted);
  margin-top:19px
}

.profile-meta a {
  color:var(--green)
}

.profile-meta a>span[aria-hidden] {
  margin-left:4px
}

.section-heading.compact {
  padding-top:26px;
  border-top:1px solid var(--ink);
  margin-bottom:20px
}

.section-heading.compact h2 {
  font-size:24px
}

.year-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  border-top:1px solid var(--ink);
  padding-top:28px
}

.year-card {
  display:block;
  padding:27px;
  background:var(--pale);
  border:1px solid #dce2d4;
  border-radius:2px;
  transition:background .2s ease
}

.year-card:hover {
  background:#dce6d5
}

.year-card h2 {
  font-family:Georgia,var(--serif);
  font-weight:400;
  font-size:64px;
  letter-spacing:-2px;
  line-height:1.35;
  margin:22px 0 23px
}

.year-card h2>span {
  font:12px/1 var(--sans);
  letter-spacing:0;
  color:var(--muted);
  margin-left:11px
}

.year-card-bottom {
  border-top:1px solid #cad3c3;
  padding-top:13px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:11px;
  color:var(--green)
}

.year-card-bottom>span {
  font-size:22px;
  line-height:1
}

.search-heading {
  max-width:800px
}

.large-search {
  display:flex;
  width:100%;
  border:1px solid #a5b2a1;
  background:var(--white);
  margin-top:30px;
  border-radius:2px;
  overflow:hidden
}

.large-search input {
  width:100%;
  min-width:0;
  background:transparent;
  border:0;
  padding:17px 20px;
  font-size:14px;
  color:var(--ink)
}

.large-search input:focus-visible {
  outline-offset:-4px
}

.large-search button {
  background:var(--green);
  color:white;
  padding:15px 23px;
  border:0;
  white-space:nowrap;
  font-size:12px
}

.large-search button:hover {
  background:var(--green-dark)
}

.large-search button>span {
  margin-left:18px;
  font-size:17px
}

.search-suggestion {
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  font-size:12px;
  padding-top:25px;
  border-top:1px solid var(--line)
}

.search-suggestion>.eyebrow {
  width:100%;
  letter-spacing:.08em
}

.search-suggestion>a {
  color:var(--green)
}

.search-suggestion>a>span {
  margin-left:12px
}

.empty-state {
  text-align:center;
  padding:70px 20px 75px;
  border-top:1px solid var(--line)
}

.empty-symbol {
  display:block;
  font-size:38px;
  line-height:1;
  color:var(--orange);
  margin-bottom:23px
}

.empty-state h2 {
  font-family:var(--serif);
  font-size:25px
}

.empty-state p {
  font-size:13px;
  color:var(--muted);
  margin-top:14px
}

.empty-state .button,.empty-state .text-link {
  margin-top:27px
}

.error-page {
  padding:66px 0 70px;
  max-width:670px;
  margin:auto;
  text-align:center
}

.error-number {
  display:block;
  font:150px/1.35 Georgia,serif;
  letter-spacing:-10px;
  color:#c7d4bd
}

.error-page h1 {
  font-family:var(--serif);
  font-size:34px
}

.error-page>p:not(.eyebrow) {
  font-size:14px;
  color:var(--muted);
  margin-top:19px
}

.error-actions {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:27px;
  margin-top:30px
}

.article-heading {
  max-width:900px;
  margin:47px auto 38px
}

.article-source-label {
  font-size:12px;
  color:var(--green)
}

.article-source-label .status-dot {
  width:6px;
  height:6px;
  vertical-align:1px
}

.article-heading h1 {
  font-family:var(--serif);
  font-size:43px;
  line-height:1.6;
  letter-spacing:-.025em;
  margin:15px 0 24px
}

.article-byline {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:13px;
  font-size:11px;
  color:var(--muted)
}

.byline-source {
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--ink)
}

.byline-avatar {
  width:33px;
  height:33px
}

.byline-avatar .image-fallback {
  font-size:15px
}

.byline-separator {
  color:#a6ae9f
}

.article-layout {
  display:grid;
  grid-template-columns:180px minmax(0,740px);
  gap:49px;
  justify-content:center;
  align-items:start;
  padding-top:39px;
  border-top:1px solid var(--line)
}

.article-layout.without-toc {
  display:block
}

.article-reading-column {
  min-width:0;
  max-width:740px;
  margin-inline:auto;
  width:100%
}

.article-toc {
  height:100%;
  min-width:0
}

.toc-inner {
  position:sticky;
  top:30px;
  max-height:calc(100vh - 60px);
  overflow-y:auto;
  padding-right:10px
}

.toc-inner>.eyebrow {
  font-size:9px
}

.toc-inner h2 {
  font-family:var(--serif);
  font-size:17px;
  margin:7px 0 16px
}

.toc-inner nav {
  display:flex;
  flex-direction:column;
  gap:11px;
  border-left:1px solid var(--line)
}

.toc-inner nav a {
  font-size:11px;
  line-height:1.7;
  color:var(--muted);
  padding-left:15px;
  overflow-wrap:anywhere
}

.toc-inner nav a:hover {
  color:var(--green)
}

.toc-inner nav .toc-level-3,.toc-inner nav .toc-level-4 {
  padding-left:25px
}

.toc-top {
  display:inline-block;
  font-size:10px;
  color:var(--muted);
  margin-top:27px
}

.article-prose {
  font-size:17px;
  line-height:2.05;
  overflow-wrap:anywhere;
  word-break:normal;
  color:#303a34
}

.article-prose>*:first-child {
  margin-top:0
}

.article-prose p {
  margin:0 0 1.5em
}

.article-prose h1,.article-prose h2,.article-prose h3,.article-prose h4,.article-prose h5,.article-prose h6 {
  font-family:var(--serif);
  font-weight:600;
  line-height:1.65;
  margin:1.8em 0 .8em;
  color:var(--ink);
  scroll-margin-top:28px
}

.article-prose h1 {
  font-size:30px
}

.article-prose h2 {
  font-size:27px
}

.article-prose h3 {
  font-size:23px
}

.article-prose h4 {
  font-size:20px
}

.article-prose h5,.article-prose h6 {
  font-size:18px
}

.article-prose a {
  color:var(--green);
  text-decoration:underline;
  text-decoration-color:#9aaf8c;
  text-underline-offset:4px
}

.article-prose a:hover {
  text-decoration-color:var(--green)
}

.article-prose img {
  height:auto;
  max-width:100%;
  margin:1.7em auto;
  object-fit:contain;
  border-radius:2px
}

.article-prose figure {
  margin:1.8em 0;
  max-width:100%
}

.article-prose figure img {
  margin-bottom:.6em
}

.article-prose figcaption {
  font-size:12px;
  color:var(--muted);
  text-align:center;
  line-height:1.8
}

.article-prose blockquote {
  margin:1.7em 0;
  padding:17px 23px;
  background:#ecefe6;
  border-left:3px solid #749266;
  font-family:var(--serif);
  font-size:18px;
  color:#45543f
}

.article-prose blockquote p:last-child {
  margin-bottom:0
}

.article-prose ul,.article-prose ol {
  padding-left:1.5em;
  margin:1em 0 1.5em
}

.article-prose li {
  margin:.45em 0
}

.article-prose li>p {
  margin-bottom:.65em
}

.article-prose pre {
  display:block;
  max-width:100%;
  overflow:auto;
  padding:22px;
  background:#e9ece3;
  border:1px solid #d9dfd2;
  border-radius:3px;
  font:13px/1.9 "SFMono-Regular",Consolas,"Liberation Mono",monospace;
  white-space:pre;
  tab-size:4;
  margin:1.5em 0;
  overscroll-behavior-x:contain
}

.article-prose code {
  font-family:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
  font-size:.83em;
  background:#e9ece3;
  padding:.15em .35em;
  border-radius:2px
}

.article-prose pre code {
  padding:0;
  font-size:inherit;
  background:none;
  white-space:inherit;
  overflow-wrap:normal
}

.article-prose table {
  display:block;
  overflow-x:auto;
  max-width:100%;
  border-collapse:collapse;
  font-size:14px;
  margin:1.5em 0;
  overscroll-behavior-x:contain
}

.article-prose th,.article-prose td {
  padding:10px 13px;
  border:1px solid #cdd5c6;
  min-width:90px;
  text-align:left
}

.article-prose th {
  background:#e9eee2;
  font-weight:600
}

.article-prose hr {
  height:1px;
  border:0;
  background:var(--line);
  margin:2em 0
}

.article-prose video,.article-prose audio {
  max-width:100%;
  height:auto
}

.article-prose section,.article-prose div,.article-prose span {
  max-width:100%
}

.prose-image-fallback {
  display:block;
  padding:22px;
  background:var(--pale);
  color:var(--muted);
  text-align:center;
  font-size:12px;
  margin:20px 0;
  border-radius:2px
}

.article-end {
  margin-top:47px;
  padding:33px 0 13px;
  text-align:center;
  border-top:1px solid var(--line)
}

.end-mark {
  color:var(--orange);
  font-size:28px
}

.article-end>p {
  font-family:var(--serif);
  font-size:25px;
  margin-top:7px
}

.attribution {
  font-size:11px;
  color:var(--muted);
  margin-top:15px;
  line-height:1.9
}

.attribution a {
  color:var(--green)
}

.original-link {
  margin-top:25px
}

.related-section {
  border-top:1px solid var(--ink);
  padding-top:30px;
  margin-top:67px
}

.related-section .recent-grid {
  margin-top:0
}

.related-section .recent-card {
  padding-top:22px
}

@media(min-width:1500px) {
  .container {
    width:min(1260px,calc(100% - 128px))
  }
  .home-hero {
    gap:145px
  }
  .hero-copy h1 {
    font-size:76px
  }
  .hero-note {
    padding:35px 38px 29px
  }
  .hero-note-quote {
    font-size:26px
  }
}

@media(max-width:1100px) {
  .container {
    width:calc(100% - 64px)
  }
  .header-inner {
    gap:31px
  }
  .main-nav {
    gap:22px
  }
  .header-search {
    width:175px
  }
  .home-hero {
    gap:55px
  }
  .hero-note {
    padding:26px
  }
  .hero-note-quote {
    font-size:22px
  }
  .hero-note-top svg {
    width:66px;
    height:66px
  }
  .hero-note-top .eyebrow {
    font-size:8px
  }
  .hero-spark {
    right:-58px;
    font-size:41px
  }
  .lead-article {
    gap:30px
  }
  .lead-copy h3 {
    font-size:26px
  }
  .lead-copy>p {
    font-size:12px;
    -webkit-line-clamp:2
  }
  .archive-strip {
    gap:30px;
    padding:32px
  }
  .article-layout {
    grid-template-columns:150px minmax(0,740px);
    gap:32px
  }
  .article-heading {
    max-width:800px
  }
  .article-heading h1 {
    font-size:39px
  }
  .reading-list .row-image {
    width:185px
  }
}

@media(max-width:850px) {
  .container {
    width:calc(100% - 48px)
  }
  .header-inner {
    min-height:82px;
    gap:23px;
    flex-wrap:wrap;
    padding-top:19px;
    padding-bottom:0
  }
  .brand {
    font-size:23px
  }
  .brand-mark {
    width:31px;
    height:31px
  }
  .header-search {
    order:2;
    width:210px;
    margin-left:auto;
    margin-bottom:13px
  }
  .brand {
    margin-bottom:13px
  }
  .main-nav {
    order:3;
    width:100%;
    justify-content:flex-start;
    gap:30px;
    height:43px;
    font-size:12px
  }
  .home-hero {
    grid-template-columns:1.2fr 1fr;
    gap:35px;
    padding:46px 0 50px
  }
  .hero-copy h1 {
    font-size:43px
  }
  .hero-description {
    font-size:12px
  }
  .hero-note {
    padding:23px 21px;
    min-height:265px
  }
  .hero-note-top .eyebrow {
    font-size:7px;
    letter-spacing:.08em
  }
  .hero-note-top svg {
    width:55px;
    height:55px
  }
  .hero-note-quote {
    font-size:20px;
    margin-top:0
  }
  .hero-stats {
    gap:15px;
    margin-top:25px;
    padding-top:20px
  }
  .hero-stats strong {
    font-size:25px
  }
  .hero-stats span {
    font-size:8px
  }
  .hero-spark {
    right:-44px;
    font-size:33px;
    bottom:8px
  }
  .hero-copy>.eyebrow {
    font-size:9px;
    letter-spacing:.07em
  }
  .hero-copy h1 {
    margin-top:18px
  }
  .hero-copy>.button {
    margin-top:23px
  }
  .source-grid {
    gap:14px
  }
  .source-card-link {
    padding:20px 17px 15px
  }
  .source-card h2 {
    font-size:16px
  }
  .source-description {
    font-size:10px
  }
  .section-heading h2 {
    font-size:25px
  }
  .recent-grid {
    gap:22px
  }
  .recent-card h3 {
    font-size:18px
  }
  .recent-card .article-meta {
    font-size:9px;
    gap:5px
  }
  .lead-copy h3 {
    font-size:23px;
    margin-top:11px
  }
  .lead-copy>.read-link {
    margin-top:18px
  }
  .lead-article {
    gap:25px
  }
  .lead-image {
    aspect-ratio:1.25
  }
  .cover-bottom span {
    display:none
  }
  .lead-fallback {
    padding:24px
  }
  .cover-word {
    font-size:25px
  }
  .cover-symbol {
    right:15px
  }
  .home-sources,.home-more {
    margin-top:46px
  }
  .article-row {
    gap:28px
  }
  .article-row h2 {
    font-size:21px
  }
  .row-image {
    width:160px
  }
  .article-row .article-excerpt {
    font-size:11px
  }
  .archive-strip {
    margin-top:50px;
    grid-template-columns:1fr 1fr;
    gap:20px;
    padding:28px
  }
  .archive-strip h2 {
    font-size:23px
  }
  .archive-links {
    gap:13px 18px
  }
  .archive-links a {
    font-size:20px
  }
  .archive-strip p:not(.eyebrow) {
    font-size:11px
  }
  .footer-bottom {
    gap:15px;
    flex-wrap:wrap
  }
  .footer-bottom>p {
    min-width:55%
  }
  .page-heading {
    padding:43px 0 32px
  }
  .page-heading h1 {
    font-size:38px
  }
  .listing-toolbar {
    flex-wrap:wrap;
    gap:12px
  }
  .reading-list .article-row h2 {
    font-size:23px
  }
  .reading-list .row-image {
    width:160px
  }
  .year-grid {
    gap:16px
  }
  .year-card {
    padding:23px
  }
  .year-card h2 {
    font-size:52px
  }
  .year-card .eyebrow {
    font-size:8px
  }
  .article-heading {
    margin-top:34px
  }
  .article-heading h1 {
    font-size:35px
  }
  .article-layout {
    display:flex;
    flex-direction:column;
    padding-top:27px;
    gap:30px
  }
  .article-toc {
    width:100%;
    height:auto
  }
  .toc-inner {
    position:static;
    max-height:none;
    padding:18px 20px;
    border:1px solid var(--line);
    background:#eeefe7
  }
  .toc-inner>.eyebrow {
    display:none
  }
  .toc-inner h2 {
    font-size:15px;
    margin:0 0 12px
  }
  .toc-inner nav {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px 24px;
    border:0
  }
  .toc-inner nav a {
    padding:0;
    font-size:11px
  }
  .toc-inner nav .toc-level-3,.toc-inner nav .toc-level-4 {
    padding-left:10px
  }
  .toc-top {
    display:none
  }
  .article-prose {
    font-size:16px
  }
  .source-profile h1 {
    font-size:33px
  }
}

@media(max-width:600px) {
  .container {
    width:calc(100% - 36px)
  }
  .header-inner {
    gap:12px;
    padding-top:16px
  }
  .brand {
    font-size:22px;
    gap:8px
  }
  .brand-mark {
    width:30px;
    height:30px
  }
  .header-search {
    width:145px;
    margin-bottom:13px;
    gap:0
  }
  .header-search input {
    font-size:10px
  }
  .header-search button {
    padding-left:2px
  }
  .header-search svg {
    width:17px;
    height:17px
  }
  .main-nav {
    gap:29px;
    justify-content:space-between;
    font-size:11px;
    height:40px
  }
  .home-hero {
    grid-template-columns:1fr;
    padding:38px 0 38px;
    gap:34px
  }
  .hero-copy>.eyebrow {
    font-size:9px;
    letter-spacing:.12em
  }
  .hero-copy h1 {
    font-size:53px;
    margin-top:20px;
    margin-bottom:17px
  }
  .hero-spark {
    font-size:42px;
    right:-62px;
    bottom:9px
  }
  .hero-description {
    font-size:13px;
    line-height:1.85
  }
  .hero-copy>.button {
    margin-top:23px
  }
  .button {
    min-height:44px;
    padding:10px 19px;
    font-size:11px;
    gap:30px
  }
  .hero-note {
    min-height:0;
    padding:21px 23px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px 25px
  }
  .hero-note::before {
    display:none
  }
  .hero-note-top {
    grid-column:1/-1
  }
  .hero-note-top .eyebrow {
    font-size:7px;
    letter-spacing:.15em
  }
  .hero-note-top svg {
    display:none
  }
  .hero-note-quote {
    font-size:17px;
    margin-top:2px;
    align-self:center;
    line-height:1.75
  }
  .hero-stats {
    margin:0;
    border:0;
    padding:0;
    gap:16px;
    align-items:center
  }
  .hero-stats strong {
    font-size:26px
  }
  .hero-stats span {
    font-size:8px;
    line-height:1.6;
    margin-top:4px
  }
  .section-heading {
    margin-bottom:21px;
    gap:15px
  }
  .section-heading .eyebrow {
    font-size:8px;
    margin-bottom:7px
  }
  .section-heading h2 {
    font-size:23px
  }
  .section-heading .text-link {
    font-size:10px;
    gap:7px
  }
  .section-heading .text-link>span[aria-hidden] {
    font-size:17px
  }
  .fresh-section {
    padding-top:22px
  }
  .lead-article {
    grid-template-columns:1fr;
    gap:0
  }
  .lead-image {
    aspect-ratio:1.65
  }
  .lead-copy {
    padding:21px 0 0
  }
  .lead-copy .article-meta {
    font-size:10px
  }
  .lead-copy h3 {
    font-size:26px;
    line-height:1.55;
    margin-top:12px
  }
  .lead-copy>p {
    font-size:12px;
    -webkit-line-clamp:3;
    margin-top:13px
  }
  .lead-copy>.read-link {
    margin-top:17px
  }
  .cover-word {
    font-size:29px
  }
  .cover-symbol {
    top:44px;
    right:31px;
    font-size:90px
  }
  .cover-bottom span {
    display:inline;
    font-size:7px
  }
  .lead-fallback {
    padding:23px 26px
  }
  .recent-grid {
    grid-template-columns:1fr;
    gap:0;
    margin-top:26px
  }
  .recent-card {
    padding:21px 0
  }
  .recent-card:last-child {
    padding-bottom:0
  }
  .recent-card h3 {
    font-size:22px;
    line-height:1.6;
    margin-top:10px
  }
  .recent-card .article-meta {
    justify-content:flex-start;
    gap:15px;
    font-size:9px
  }
  .recent-card>.article-excerpt {
    font-size:12px;
    margin:10px 0 14px
  }
  .recent-card>.read-link {
    font-size:10px
  }
  .home-sources {
    margin-top:39px;
    padding-top:24px
  }
  .source-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px
  }
  .source-card-link {
    padding:17px 15px 12px
  }
  .source-card-top {
    gap:8px
  }
  .source-card .avatar {
    width:39px;
    height:39px
  }
  .source-card .source-kind {
    font-size:8px;
    padding:1px 5px
  }
  .source-card h2 {
    font-size:17px;
    line-height:1.5;
    margin-top:12px
  }
  .source-description {
    font-size:10px;
    line-height:1.85;
    min-height:37px;
    margin:7px 0 16px
  }
  .source-card-bottom {
    font-size:9px;
    padding-top:10px
  }
  .source-card-bottom>span:last-child {
    font-size:17px
  }
  .section-intro {
    font-size:10px;
    line-height:1.8;
    max-width:215px;
    margin-top:8px
  }
  .home-sources .section-heading {
    align-items:center
  }
  .home-sources .section-heading h2 {
    font-size:21px
  }
  .home-more {
    margin-top:39px;
    padding-top:24px
  }
  .article-row,.reading-list .article-row {
    gap:16px;
    padding:23px 0;
    align-items:flex-start
  }
  .article-row h2,.reading-list .article-row h2 {
    font-size:20px;
    line-height:1.6;
    margin-top:9px;
    margin-bottom:7px
  }
  .article-row .article-meta {
    font-size:9px;
    gap:6px
  }
  .article-row .article-excerpt {
    font-size:11px;
    line-height:1.85
  }
  .article-row .read-link {
    font-size:10px;
    gap:10px;
    margin-top:11px
  }
  .row-image,.reading-list .row-image {
    width:94px;
    aspect-ratio:1.1;
    margin-top:25px
  }
  .article-row-copy {
    width:100%
  }
  .archive-strip {
    grid-template-columns:1fr;
    gap:27px;
    padding:26px;
    margin-top:42px;
    margin-bottom:0
  }
  .archive-strip .eyebrow {
    font-size:8px
  }
  .archive-strip h2 {
    font-size:25px;
    margin-top:10px
  }
  .archive-strip p:not(.eyebrow) {
    font-size:11px
  }
  .archive-links {
    grid-template-columns:repeat(3,1fr);
    gap:18px
  }
  .archive-links a {
    font-size:22px;
    padding-bottom:8px
  }
  .site-footer {
    margin-top:48px
  }
  .footer-top {
    padding-top:27px;
    padding-bottom:24px;
    flex-direction:column;
    align-items:flex-start;
    gap:22px
  }
  .footer-top p {
    font-size:10px;
    margin-top:5px
  }
  .footer-top nav {
    font-size:10px;
    gap:26px
  }
  .footer-bottom {
    font-size:8px;
    padding-top:17px;
    padding-bottom:22px;
    gap:11px
  }
  .footer-bottom>p {
    order:3;
    flex-basis:100%;
    line-height:1.85
  }
  .footer-bottom>a {
    margin-left:auto
  }
  .page-heading {
    padding:36px 0 27px
  }
  .page-heading .eyebrow {
    font-size:8px
  }
  .page-heading h1 {
    font-size:34px;
    line-height:1.5;
    margin-top:13px
  }
  .page-heading>p:not(.eyebrow) {
    font-size:12px;
    line-height:1.85;
    margin-top:14px
  }
  .listing-toolbar {
    padding:16px 0;
    font-size:11px;
    gap:12px
  }
  .toolbar-muted {
    font-size:10px
  }
  .year-filters {
    gap:4px;
    font-size:10px
  }
  .year-filters a {
    padding:4px 8px
  }
  .listing-toolbar .year-filters {
    width:100%
  }
  .directory-grid {
    padding-top:18px
  }
  .pagination {
    justify-content:space-between;
    gap:15px;
    font-size:11px;
    padding-top:27px
  }
  .page-numbers {
    display:none
  }
  .mobile-page-count {
    display:block;
    color:var(--muted);
    font-size:10px
  }
  .page-direction {
    gap:7px
  }
  .breadcrumbs {
    font-size:10px;
    margin-top:21px;
    gap:9px
  }
  .source-profile {
    gap:17px;
    padding:31px 0 31px
  }
  .profile-avatar {
    width:62px;
    height:62px;
    margin-top:5px
  }
  .profile-avatar .image-fallback {
    font-size:26px
  }
  .source-profile h1 {
    font-size:28px;
    margin:7px 0 10px
  }
  .source-profile-copy>p {
    font-size:12px;
    line-height:1.9
  }
  .profile-meta {
    font-size:10px;
    gap:12px;
    margin-top:14px
  }
  .source-profile .source-kind {
    font-size:8px
  }
  .section-heading.compact {
    padding-top:21px;
    margin-bottom:18px
  }
  .section-heading.compact h2 {
    font-size:22px
  }
  .year-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:13px;
    padding-top:20px
  }
  .year-card {
    padding:20px 17px
  }
  .year-card h2 {
    font-size:45px;
    margin:21px 0 19px
  }
  .year-card h2>span {
    font-size:9px;
    margin-left:7px
  }
  .year-card .eyebrow {
    font-size:7px;
    letter-spacing:.08em
  }
  .year-card-bottom {
    font-size:9px;
    padding-top:11px;
    gap:8px
  }
  .year-card-bottom>span {
    font-size:19px
  }
  .large-search {
    margin-top:22px
  }
  .large-search input {
    font-size:12px;
    padding:14px 14px
  }
  .large-search button {
    padding:13px 16px;
    font-size:11px
  }
  .large-search button>span {
    margin-left:8px;
    font-size:15px
  }
  .search-suggestion {
    gap:18px;
    font-size:11px;
    padding-top:20px
  }
  .search-suggestion>.eyebrow {
    font-size:9px
  }
  .empty-state {
    padding:47px 15px
  }
  .empty-state h2 {
    font-size:22px
  }
  .empty-state p {
    font-size:12px;
    line-height:1.9
  }
  .error-page {
    padding:43px 0 45px
  }
  .error-number {
    font-size:125px
  }
  .error-page h1 {
    font-size:27px
  }
  .error-page>p:not(.eyebrow) {
    font-size:12px;
    line-height:1.9
  }
  .error-actions {
    gap:20px;
    margin-top:24px
  }
  .error-actions .text-link {
    font-size:11px
  }
  .article-heading {
    margin:28px 0 27px
  }
  .article-source-label {
    font-size:11px
  }
  .article-heading h1 {
    font-size:29px;
    line-height:1.65;
    margin:14px 0 19px
  }
  .article-byline {
    font-size:9px;
    gap:9px
  }
  .byline-source {
    gap:7px
  }
  .byline-avatar {
    width:29px;
    height:29px
  }
  .article-layout {
    padding-top:24px;
    gap:25px
  }
  .toc-inner {
    padding:16px 17px
  }
  .toc-inner nav {
    grid-template-columns:1fr;
    gap:8px
  }
  .toc-inner nav a {
    font-size:11px
  }
  .article-prose {
    font-size:16px;
    line-height:2;
    letter-spacing:.01em
  }
  .article-prose p {
    margin-bottom:1.35em
  }
  .article-prose h1 {
    font-size:27px
  }
  .article-prose h2 {
    font-size:24px
  }
  .article-prose h3 {
    font-size:21px
  }
  .article-prose h4 {
    font-size:19px
  }
  .article-prose blockquote {
    font-size:16px;
    padding:14px 18px
  }
  .article-prose pre {
    font-size:11px;
    padding:16px
  }
  .article-prose table {
    font-size:12px
  }
  .article-prose th,.article-prose td {
    padding:8px 11px
  }
  .article-prose img {
    margin:1.4em auto
  }
  .article-end {
    margin-top:33px;
    padding-top:26px
  }
  .article-end>p {
    font-size:23px
  }
  .attribution {
    font-size:10px;
    line-height:1.9
  }
  .related-section {
    margin-top:43px;
    padding-top:23px
  }
  .related-section .section-heading h2 {
    font-size:23px
  }
  .related-section .recent-card {
    padding-top:20px
  }
}

@media(max-width:370px) {
  .container {
    width:calc(100% - 28px)
  }
  .header-search {
    width:120px
  }
  .brand {
    font-size:20px
  }
  .main-nav {
    gap:17px
  }
  .hero-copy h1 {
    font-size:47px
  }
  .hero-spark {
    right:-47px;
    font-size:35px
  }
  .hero-note {
    padding:19px;
    gap:8px 15px
  }
  .hero-stats {
    gap:10px
  }
  .hero-stats strong {
    font-size:23px
  }
  .hero-note-quote {
    font-size:16px
  }
  .hero-stats span {
    font-size:7px
  }
  .source-grid {
    gap:9px
  }
  .source-card-link {
    padding:15px 12px 11px
  }
  .source-card .source-kind {
    font-size:7px
  }
  .source-card h2 {
    font-size:16px
  }
  .source-card .avatar {
    width:35px;
    height:35px
  }
  .article-row h2,.reading-list .article-row h2 {
    font-size:18px
  }
  .row-image,.reading-list .row-image {
    width:79px
  }
  .article-heading h1 {
    font-size:27px
  }
  .section-heading .text-link {
    font-size:9px
  }
  .home-sources .section-heading {
    gap:10px
  }
  .home-sources .section-heading h2 {
    font-size:20px
  }
  .year-card {
    padding:18px 14px
  }
  .year-card h2 {
    font-size:39px
  }
  .year-card-bottom {
    font-size:8px
  }
  .page-heading h1 {
    font-size:31px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*::before,*::after {
    transition:none!important;
    animation:none!important
  }
  .image-shell:hover img {
    transform:none
  }
}

@media print {
  body {
    background:white;
    color:black
  }
  .container {
    width:100%;
    max-width:none
  }
  .site-header,.site-footer,.breadcrumbs,.article-toc,.related-section,.skip-link,.original-link {
    display:none!important
  }
  .article-heading {
    margin-top:0
  }
  .article-heading h1 {
    font-size:28px
  }
  .article-layout {
    display:block;
    border:0;
    padding:0
  }
  .article-prose {
    font-size:12pt;
    line-height:1.8
  }
  .article-reading-column {
    max-width:none
  }
  .article-prose a {
    text-decoration:underline
  }
  .article-prose pre,.article-prose blockquote {
    break-inside:avoid
  }
  .article-prose img {
    max-height:20cm
  }
  .article-end {
    padding-top:20px
  }
}
