body {
  --accent: #a95a22;
  --bg: #faf5e9;
  --ink: #352820;
  --muted: #718094;
  --line: #d8e0e8;
  --panel: #fff;
  --button-ink: #fff;
  --footer: #edf1f5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    15px/1.75 Arial,
    "Microsoft YaHei",
    "PingFang SC",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.3;
  overflow-wrap: anywhere;
}
h1 {
  font-size: 54px;
}
h2 {
  font-size: 29px;
}
h3 {
  font-size: 20px;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.wrap {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  background: white;
  color: #18293b;
  padding: 10px;
  z-index: 80;
}
.skip:focus {
  top: 10px;
}
.site-header {
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
  background: var(--bg);
}
.header-row {
  height: 84px;
  display: flex;
  gap: 32px;
  align-items: center;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}
.brand img {
  width: 39px;
  height: 39px;
}
.brand strong {
  font-size: 24px;
  display: block;
  line-height: 1.2;
}
.brand small {
  font-size: 9px;
  line-height: 1.6;
  display: block;
  color: var(--muted);
}
.main-nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
}
.main-nav a[aria-current="page"] {
  color: var(--accent);
}
.header-link {
  border-left: 1px solid var(--line);
  padding-left: 25px;
  font-size: 11px;
}
.icon-button {
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: inherit;
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  border-radius: 5px;
  padding: 0;
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  padding: 10px 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
}
.kicker {
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.lede {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 560px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--button-ink, #fff);
  font-size: 12px;
  font-weight: 700;
  min-height: 44px;
  border-radius: 4px;
  line-height: 1.5;
}
.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}
.text-link svg {
  width: 16px;
}
.text-link:hover {
  color: var(--accent);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.section {
  padding: 50px 0;
}
.section-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 25px;
}
.section-title h2 {
  margin-top: 9px;
}
.section-title p {
  font-size: 12px;
  color: var(--muted);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chips button {
  padding: 7px 13px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  min-height: 36px;
}
.chips button[aria-pressed="true"] {
  background: var(--accent);
  color: var(--button-ink, #fff);
  border-color: var(--accent);
}
.note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
}
.empty {
  padding: 28px;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--footer, var(--bg));
  padding: 36px 0 22px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 65px;
}
.footer-top p {
  margin-top: 16px;
  font-size: 11px;
  color: var(--muted);
  max-width: 580px;
}
.footer-links {
  display: flex;
  justify-content: end;
  gap: 22px;
  font-size: 11px;
  align-items: start;
  flex-wrap: wrap;
}
.fine-print {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 10px;
  color: var(--muted);
}
.fine-print summary {
  cursor: pointer;
}
.fine-print p {
  max-width: 820px;
  margin-top: 10px;
}
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  color: var(--muted);
}
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  max-width: calc(100% - 32px);
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-size: 12px;
  box-shadow: 0 5px 30px #0003;
  border-radius: 5px;
}
.article-head {
  padding: 28px 0 42px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 30px;
}
.breadcrumb svg {
  width: 13px;
}
.article-head h1 {
  font-size: 43px;
  max-width: 980px;
  margin: 14px 0 22px;
}
.article-meta {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 790px) 240px;
  gap: 65px;
  padding: 36px 0 60px;
}
.article-cover {
  margin: 0 0 28px;
}
.article-cover img {
  width: 100%;
  height: 340px;
}
.article-cover figcaption {
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.article-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 2;
  margin: 0 0 16px;
}
.article-copy .intro {
  font-size: 18px;
  color: var(--ink);
}
.article-copy h2 {
  font-size: 26px;
  margin: 34px 0 18px;
}
.article-copy blockquote {
  border-left: 3px solid var(--accent);
  margin: 30px 0;
  padding: 8px 22px;
  font-size: 23px;
  line-height: 1.8;
}
.article-aside {
  border-top: 3px solid var(--accent);
  padding-top: 18px;
  position: sticky;
  top: 24px;
  align-self: start;
}
.article-aside h2 {
  font-size: 14px;
  margin-bottom: 14px;
}
.article-aside a {
  display: block;
  padding: 8px 0;
  font-size: 12px;
  color: var(--muted);
}
.article-aside img {
  width: 100%;
  height: 150px;
  margin-top: 22px;
}
.article-end {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.error-main {
  padding: 70px 0;
  min-height: 65vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.error-code {
  font-size: 140px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--accent);
  letter-spacing: -8px;
}
.error-main h1 {
  font-size: 31px;
  margin: 14px 0;
}
.error-main p {
  color: var(--muted);
  font-size: 14px;
  max-width: 450px;
}
.error-main img {
  width: 100%;
  height: 330px;
}
.error-main .actions {
  margin-top: 25px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
@media (max-width: 950px) {
  .wrap {
    width: calc(100% - 42px);
  }
  .header-link {
    display: none;
  }
  .header-row {
    gap: 18px;
  }
  .main-nav {
    gap: 18px;
  }
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 35px;
  }
  .error-main {
    gap: 35px;
  }
}
@media (max-width: 680px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .header-row {
    height: 70px;
  }
  .brand strong {
    font-size: 22px;
  }
  .brand img {
    width: 35px;
    height: 35px;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .section {
    padding: 35px 0;
  }
  .section-title {
    display: block;
  }
  .section-title .text-link {
    margin-top: 15px;
  }
  h2 {
    font-size: 25px;
  }
  .lede {
    font-size: 14px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-links {
    justify-content: start;
    gap: 19px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin: 6px 0;
  }
  .article-head {
    padding: 22px 0 30px;
  }
  .article-head h1 {
    font-size: 31px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 26px;
  }
  .article-aside {
    grid-row: 1;
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
  }
  .article-aside h2 {
    width: 100%;
    margin: 0;
  }
  .article-aside a {
    padding: 4px 0;
    font-size: 11px;
  }
  .article-aside img {
    display: none;
  }
  .article-cover img {
    height: 220px;
  }
  .article-copy .intro {
    font-size: 17px;
  }
  .article-copy h2 {
    font-size: 23px;
  }
  .article-copy blockquote {
    font-size: 21px;
  }
  .article-end {
    flex-wrap: wrap;
  }
  .error-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .error-code {
    font-size: 110px;
  }
  .error-main h1 {
    font-size: 27px;
  }
  .error-main img {
    height: 220px;
  }
  .article-meta {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  --muted: #796d60;
  --line: #dcd1bf;
  --panel: #fffcf5;
  --footer: #efe6d6;
}
.magazine .site-header {
  border-top: 4px solid var(--ink);
}
.journal-title {
  padding: 25px 0 20px;
  border-bottom: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.journal-title h1 {
  font-family: SimSun, serif;
  font-size: 49px;
  font-weight: 500;
}
.journal-title span {
  font:
    12px Georgia,
    serif;
}
.journal-feature {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.journal-feature img {
  width: 100%;
  height: 365px;
}
.journal-feature figure {
  margin: 0;
}
.journal-feature figcaption {
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.journal-lead {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
}
.journal-lead h2 {
  font-family: SimSun, serif;
  font-size: 37px;
  font-weight: 500;
  margin: 20px 0;
}
.journal-lead p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.journal-lead .actions {
  margin-top: 24px;
}
.journal-lead .issue {
  font-size: 10px;
  margin-top: auto;
  padding-top: 25px;
  color: var(--muted);
}
.journal-bottom {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  padding: 30px 0 50px;
}
.journal-stories article {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 15px;
}
.journal-stories article:first-child {
  padding-top: 0;
}
.journal-stories b {
  font:
    18px Georgia,
    serif;
  color: var(--accent);
}
.journal-stories h2 {
  font:
    23px/1.5 SimSun,
    serif;
}
.journal-stories p {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 12px;
}
.reader-poll {
  padding: 26px;
  background: #ece2cf;
  align-self: start;
}
.reader-poll h2 {
  font-family: SimSun, serif;
  font-size: 26px;
  font-weight: 500;
  margin: 10px 0 18px;
}
.reader-poll button {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cbbda6;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  text-align: left;
}
.reader-poll button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}
.reader-poll .note {
  margin-top: 16px;
}
.magazine .article-head h1,
.magazine .article-copy h2 {
  font-family: SimSun, serif;
  font-weight: 500;
}
.magazine .article-copy p {
  font-size: 17px;
  font-family: SimSun, "Microsoft YaHei", serif;
}
.magazine .article-layout {
  grid-template-columns: 220px minmax(0, 790px);
}
.magazine .article-aside {
  grid-column: 1;
  grid-row: 1;
}
.magazine .article-copy {
  grid-column: 2;
}
.magazine .error-main {
  grid-template-columns: 1fr 1.2fr;
}
.magazine .error-code {
  font-family: Georgia, serif;
}
@media (max-width: 680px) {
  .journal-title h1 {
    font-size: 36px;
  }
  .journal-title span {
    display: none;
  }
  .journal-feature {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  .journal-feature img {
    height: 230px;
  }
  .journal-lead {
    padding: 0;
  }
  .journal-lead h2 {
    font-size: 31px;
    margin: 15px 0;
  }
  .journal-bottom {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .reader-poll {
    padding: 22px;
  }
  .magazine .article-layout {
    grid-template-columns: 1fr;
  }
  .magazine .article-copy,
  .magazine .article-aside {
    grid-column: 1;
  }
  .magazine .error-main {
    grid-template-columns: 1fr;
  }
}
