:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --panel: #ffffff;
  --panel-soft: #f1f0eb;
  --text: #242424;
  --muted: #6f716f;
  --quiet: #9a9b97;
  --line: #dfded8;
  --line-strong: #cac8c0;
  --accent: #9b3a2f;
  --accent-2: #1d6f68;
  --code-bg: #20211f;
  --code-text: #f1eee8;
  --shadow: 0 12px 28px rgba(25, 25, 22, 0.06);
  --content-width: 1100px;
  --article-width: 760px;
  --radius: 8px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #171816;
  --panel: #20211f;
  --panel-soft: #262824;
  --text: #ece9e1;
  --muted: #b2b0a8;
  --quiet: #818178;
  --line: #393a35;
  --line-strong: #505149;
  --accent: #d77962;
  --accent-2: #70bbb1;
  --code-bg: #0f100f;
  --code-text: #f5f1e9;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family:
    ui-serif,
    "Songti SC",
    "Noto Serif CJK SC",
    "Source Han Serif SC",
    Georgia,
    serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration: underline;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  touch-action: manipulation;
}

img,
svg,
video {
  max-width: 100%;
}

code,
pre,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

::selection {
  background: color-mix(in srgb, var(--accent-2), transparent 76%);
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
}

.shell.has-right-sidebar {
  grid-template-columns: 16rem minmax(0, 1fr) 18rem;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem 1.4rem;
  border-right: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg), var(--panel) 62%);
}

.right-sidebar {
  align-self: start;
  position: sticky;
  top: 0;
  min-height: 100vh;
  padding: 2rem 1.2rem;
  border-left: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg), var(--panel) 48%);
}

.brand {
  display: inline-flex;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.brand:hover {
  color: var(--accent);
  text-decoration: none;
}

.sidebar-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.nav {
  display: grid;
  gap: 0.1rem;
  margin: 0.4rem 0 auto;
}

.nav a {
  display: flex;
  align-items: center;
  min-height: 2.25rem;
  border-radius: var(--radius);
  padding: 0.38rem 0.55rem;
  color: var(--text);
}

.nav a:hover {
  background: var(--panel-soft);
  color: var(--accent);
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.42rem 0.75rem;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.button:hover {
  border-color: var(--accent-2);
  background: color-mix(in srgb, var(--accent-2), transparent 92%);
  text-decoration: none;
}

.sidebar-theme-toggle {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.sidebar-theme-toggle:hover {
  border-color: var(--accent-2);
  background: color-mix(in srgb, var(--accent-2), transparent 92%);
}

.sidebar-theme-toggle span {
  font-size: 1rem;
  line-height: 1;
}

.main {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 4vw, 3.25rem);
}

.main-utility {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.page-search {
  position: relative;
  width: min(100%, 34rem);
}

.site-search-results {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  display: none;
  width: 100%;
  max-height: min(70vh, 32rem);
  overflow: auto;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: color-mix(in srgb, var(--bg), var(--panel) 84%);
  box-shadow: var(--shadow);
  z-index: 20;
}

.site-search-results.is-open {
  display: grid;
}

.site-search-results .card {
  padding: 0.9rem;
}

.search-empty {
  margin: 0;
  padding: 0.25rem 0.15rem;
}

.topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 3.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 1rem;
  background: color-mix(in srgb, var(--bg), var(--panel) 74%);
  backdrop-filter: blur(16px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 18rem);
  gap: clamp(1.2rem, 4vw, 2.75rem);
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding: clamp(0.85rem, 3vw, 1.6rem) 0 clamp(1.5rem, 4vw, 2.8rem);
}

.hero-copy {
  max-width: 46rem;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  max-width: 15em;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.6rem);
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: clamp(1.38rem, 2.4vw, 2rem);
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.lead,
.article-summary {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.lead {
  max-width: 42rem;
  margin: 0.8rem 0 0;
}

.hero-stats {
  display: grid;
  gap: 0.6rem;
}

.stat-card {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.62rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-card strong {
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
}

.section-block {
  margin-top: clamp(1.5rem, 4vw, 2.75rem);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
}

.search-head {
  align-items: center;
  gap: 1.25rem;
}

.search-head > div {
  flex: 0 1 auto;
  min-width: 0;
}

.search-head .search-input {
  flex: 1 1 22rem;
  max-width: 34rem;
}

.text-link {
  flex: 0 0 auto;
  color: var(--muted);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.9rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 0.9rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1rem;
  box-shadow: none;
}

.card:hover {
  border-color: var(--line-strong);
}

.article-card {
  display: flex;
  min-height: 13rem;
  flex-direction: column;
}

.article-card h3 {
  margin-top: 0.25rem;
}

.article-card h3 a {
  color: var(--text);
}

.article-card h3 a:hover {
  color: var(--accent);
}

.card-summary {
  color: var(--muted);
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-card .chips {
  margin-top: auto;
  padding-top: 1rem;
}

.meta,
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.meta {
  margin: 0 0 0.45rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 0;
}

.chip {
  display: inline-flex;
  flex: 0 0 auto;
  max-width: 100%;
  min-height: 1.8rem;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.2rem 0.55rem;
  background: var(--panel);
  color: var(--text);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.8rem;
  line-height: 1.2;
  white-space: nowrap;
}

.chip:hover {
  border-color: var(--accent-2);
  background: color-mix(in srgb, var(--accent-2), transparent 92%);
  color: var(--accent-2);
  text-decoration: none;
}

.search-panel .grid {
  margin-top: 0.75rem;
}

.search-input,
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.68rem 0.82rem;
  background: var(--panel);
  color: var(--text);
}

.search-input:focus,
input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent-2), transparent 35%);
  outline-offset: 2px;
}

.page-head {
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.page-head h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.93rem;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 0.82rem 0.9rem;
  text-align: left;
  vertical-align: top;
}

tr:last-child td {
  border-bottom: 0;
}

th {
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

tbody tr:hover {
  background: color-mix(in srgb, var(--panel-soft), transparent 45%);
}

td a {
  color: var(--text);
  font-weight: 650;
}

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

td .meta {
  max-width: 42rem;
  margin: 0.28rem 0 0;
}

.article-layout {
  display: block;
}

.article {
  max-width: var(--article-width);
  margin: 0 auto;
}

.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.4rem;
}

.article-header h1 {
  max-width: none;
  margin-top: 0.6rem;
  font-size: clamp(2rem, 4.5vw, 3.65rem);
}

.article-path {
  color: var(--quiet);
}

.article-summary {
  margin: 1rem 0 0;
}

.article-taxonomy {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.article-taxonomy .chips {
  margin: 0;
  gap: 0.55rem;
}

.article-taxonomy .chip {
  min-height: 2rem;
  border-color: var(--line);
  padding: 0.28rem 0.72rem;
  background: color-mix(in srgb, var(--panel), var(--panel-soft) 18%);
}

.article-body {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.95;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  margin: 2.2em 0 0.7em;
  scroll-margin-top: 1.5rem;
}

.article-body h2 {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 1.55rem;
}

.article-body h3 {
  font-size: 1.2rem;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body table {
  margin: 0 0 1.15rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.35rem;
}

.article-body li + li {
  margin-top: 0.3rem;
}

.article-body blockquote {
  border-left: 3px solid var(--accent-2);
  margin-left: 0;
  padding: 0.1rem 0 0.1rem 1rem;
  color: var(--muted);
}

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

.article-body code:not(pre code) {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0.08rem 0.28rem;
  background: var(--panel-soft);
  color: var(--accent);
  font-size: 0.88em;
}

.article-body pre {
  position: relative;
  overflow-x: auto;
  border-radius: var(--radius);
  margin: 1.4rem 0;
  padding: 1rem;
  background: var(--code-bg);
  color: var(--code-text);
  line-height: 1.65;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.article-body pre code {
  color: inherit;
  font-size: 0.9rem;
}

.copy-code {
  position: absolute;
  right: 0.55rem;
  top: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  padding: 0.38rem 0.55rem;
}

.copy-code:hover,
.copy-code.is-copied {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 1.4rem auto;
}

.article-body table {
  display: block;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-body table th,
.article-body table td {
  min-width: 8rem;
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2rem 0;
}

.nav-card {
  display: grid;
  gap: 0.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem;
  background: var(--panel);
  color: var(--text);
}

.nav-card:hover {
  border-color: var(--accent-2);
  text-decoration: none;
}

.nav-card span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-card strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.nav-card.is-disabled {
  color: var(--muted);
}

.related-section {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.related-section h2 {
  margin-bottom: 1rem;
}

.related-block + .related-block {
  margin-top: 1.3rem;
}

.related-block h3 {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.9rem;
}

.article-toc {
  display: grid;
  gap: 0.2rem;
}

.article-toc-link {
  display: block;
  border-radius: 6px;
  padding: 0.28rem 0.4rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.article-toc-link:hover {
  background: var(--panel-soft);
  color: var(--accent-2);
  text-decoration: none;
}

.article-toc-level-2 {
  margin-left: 0.6rem;
  color: var(--muted);
}

.article-toc-level-3 {
  margin-left: 1.2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.article-aside {
  display: grid;
  gap: 1rem;
}

.toc-sidebar,
.comment-sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 0.95rem;
}

.toc-sidebar {
  border-top: 3px solid var(--accent-2);
}

.comment-sidebar {
  border-top: 3px solid var(--accent);
}

.toc-sidebar summary,
.comment-sidebar summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  margin-bottom: 0.75rem;
}

.toc-sidebar summary::-webkit-details-marker,
.comment-sidebar summary::-webkit-details-marker {
  display: none;
}

.toc-sidebar summary::after,
.comment-sidebar summary::after {
  content: "收起";
  float: right;
  color: var(--quiet);
  font-size: 0.82rem;
  font-weight: 400;
}

.toc-sidebar:not([open]) summary::after,
.comment-sidebar:not([open]) summary::after {
  content: "展开";
}

.toc-sidebar:not([open]) summary,
.comment-sidebar:not([open]) summary {
  margin-bottom: 0;
}

.comment-sidebar h3 {
  margin: 1rem 0 0.6rem;
}

.comment-toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.comment-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
  white-space: nowrap;
  min-width: 0;
}

.comment-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.like-button {
  flex: 0 0 auto;
  min-width: 2.8rem;
  padding-inline: 0.7rem;
}

.like-icon {
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1;
}

.comment-sidebar textarea {
  margin: 0.75rem 0;
  resize: vertical;
}

.comment-list {
  display: grid;
  gap: 0.65rem;
}

.comment-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel-soft), transparent 40%);
  padding: 0.65rem 0.75rem;
}

.comment-card.is-reply {
  margin-left: 0.75rem;
  border-left: 3px solid var(--accent-2);
}

.comment-card p {
  margin: 0.35rem 0;
  line-height: 1.5;
}

.reply-context {
  margin-top: 0.25rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  line-height: 1.3;
}

.comment-head {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 0.82rem;
}

.comment-head strong {
  min-width: 0;
  font-size: 0.84rem;
}

.comment-head .meta {
  flex: 0 1 auto;
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comment-reply,
.reply-bar button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
}

.reply-bar {
  margin: 0.75rem 0 0.35rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent-2), transparent 88%);
  padding: 0.45rem 0.6rem;
  line-height: 1.35;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 1.2rem 0;
}

.pagination a,
.pagination strong,
.pagination span {
  display: inline-flex;
  min-width: 2.2rem;
  min-height: 2.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.32rem 0.68rem;
  background: var(--panel);
  color: var(--text);
}

.pagination a:hover {
  border-color: var(--accent-2);
  text-decoration: none;
}

.pagination strong {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination span {
  color: var(--muted);
}

.footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 0;
  color: var(--muted);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 0.86rem;
}

.footer div + div {
  margin-top: 0.25rem;
}

.footer-filings {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.footer-filings a,
.footer-filings span {
  white-space: nowrap;
}

.footer-police {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-beian-icon {
  width: 18px;
  height: auto;
  flex: 0 0 auto;
}

.footer-separator {
  color: var(--muted);
}

.admin-layout {
  display: grid;
  gap: 1rem;
}

@media (max-width: 1180px) {
  .shell.has-right-sidebar {
    grid-template-columns: 15rem minmax(0, 1fr);
  }

  .right-sidebar {
    grid-column: 2;
    min-height: auto;
    position: static;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .topbar {
    display: flex;
  }

  .shell,
  .shell.has-right-sidebar {
    display: block;
  }

  .sidebar {
    display: none;
    position: fixed;
    z-index: 40;
    inset: 3.75rem auto 0 0;
    width: min(19rem, 86vw);
    height: calc(100vh - 3.75rem);
    box-shadow: var(--shadow);
  }

  .sidebar.open {
    display: flex;
  }

  .right-sidebar {
    padding: 1rem;
  }

  .main {
    padding: 1.4rem 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .stat-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.75rem;
    background: var(--panel);
  }

  .stat-card strong {
    display: block;
    margin-top: 0.35rem;
  }

  .article {
    max-width: none;
  }

  .article-aside {
    margin-top: 1rem;
  }

  .article-path {
    display: block;
    margin-top: 0.2rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .main-utility,
  .search-head {
    align-items: stretch;
    justify-content: stretch;
    gap: 0.85rem;
  }

  .page-search {
    width: 100%;
  }

  .site-search-results {
    max-height: min(60vh, 24rem);
  }

  .search-head .search-input {
    max-width: none;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: auto;
  }

  .article-body {
    font-size: 1rem;
    line-height: 1.88;
  }

  .comment-card.is-reply {
    margin-left: 0;
  }

  .footer {
    font-size: 0.8rem;
  }
}
