:root {
  color-scheme: light;
  --bg: #f7f4ed;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --ink: #171411;
  --muted: #6e675d;
  --line: #d9d1c4;
  --accent: #b52a22;
  --accent-2: #0e6f5c;
  --gold: #b78a2e;
  --shadow: 0 20px 60px rgba(40, 31, 20, 0.11);
  --radius: 8px;
  --display: Georgia, "Times New Roman", "Noto Serif TC", serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", sans-serif;
}

/* COMIC site skin */
:root {
  --paper: #f7f3ea;
  --ink: #111111;
  --muted: #66615a;
  --line: #d8cdbc;
  --card: #fffdf8;
  --accent: #c9252d;
  --accent-2: #137547;
  --accent-3: #d59a22;
}

body {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--paper);
}

.top-strip {
  background: #111;
  color: #fff;
  border-bottom: 4px solid var(--accent);
}

.site-header {
  background: rgba(247, 243, 234, 0.96);
}

.brand-mark {
  border-color: #111;
  background: #111;
}

.brand strong,
.lead-card h1,
.article-body h1,
.section-head h2,
.panel h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.brand strong {
  letter-spacing: 0;
}

.filter-chip.active,
.subscribe-button,
.share-button,
.read-more:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.kicker {
  color: var(--accent);
  font-weight: 900;
}

.lead-card,
.side-card,
.article-card,
.panel,
.article-body,
.newsletter {
  border-radius: 8px;
}

.lead-card {
  border-bottom: 6px solid var(--accent-2);
}

.side-card:nth-child(2n) {
  border-bottom: 5px solid var(--accent-3);
}

.side-card:nth-child(2n + 1) {
  border-bottom: 5px solid var(--accent);
}

.article-card:hover,
.side-card:hover,
.lead-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.16);
}

.rank-no {
  color: var(--accent);
}

.newsletter {
  background: #111;
  color: #fff;
}

.newsletter .dek {
  color: rgba(255, 255, 255, 0.72);
}

.article-summary {
  border-left: 6px solid var(--accent-2);
}

body.dark {
  color-scheme: dark;
  --bg: #131313;
  --paper: #1a1917;
  --paper-strong: #22201d;
  --ink: #f8f0df;
  --muted: #b7ac9c;
  --line: #38332d;
  --accent: #ee6b5f;
  --accent-2: #44c0a4;
  --gold: #d7a84b;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 25% 0%, rgba(183, 138, 46, 0.12), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.top-strip {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.strip-inner,
.masthead,
.header-actions,
.brand,
.nav-scroll,
.meta-row,
.article-actions,
.share-strip,
.search-head {
  display: flex;
  align-items: center;
}

.strip-inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 16px;
}

.masthead {
  min-height: 84px;
  justify-content: space-between;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: #fff7f1;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(181, 42, 34, 0.14);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-actions {
  gap: 10px;
}

.plain-button,
.icon-button,
.subscribe-button,
.filter-chip,
.read-more,
.share-button {
  min-height: 40px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}

.plain-button {
  min-height: 28px;
  padding: 0 10px;
  color: var(--muted);
}

.icon-button {
  width: 42px;
  font-size: 1.35rem;
}

.subscribe-button,
.read-more,
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.subscribe-button {
  background: var(--accent);
  color: #fffaf0;
  border-color: var(--accent);
  font-weight: 700;
}

.category-nav {
  border-top: 1px solid var(--line);
}

.nav-scroll {
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
}

.nav-scroll::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  padding: 0 14px;
  color: var(--muted);
  white-space: nowrap;
}

.filter-chip.active,
.filter-chip:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

main {
  padding: 26px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.lead-card,
.side-card,
.article-card,
.panel,
.newsletter {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.image-frame {
  position: relative;
  min-height: 260px;
  background: #28231e;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) contrast(1.04);
}

.image-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.52));
}

.article-content {
  padding: clamp(18px, 3vw, 30px);
}

.kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.08;
  white-space: pre-line;
  text-wrap: pretty;
}

.lead-card h1 {
  max-width: 860px;
  margin-top: 10px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.dek {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.meta-row {
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.meta-row span:not(:last-child)::after {
  margin-left: 14px;
  color: var(--line);
  content: "/";
}

.side-stack {
  display: grid;
  gap: 28px;
}

.side-card {
  display: block;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.side-card:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.side-card .image-frame {
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 0;
  background: #dedede;
}

.side-card .article-content {
  padding: 10px 0 0;
}

.side-card .kicker {
  color: #009eb3;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.side-card h2 {
  margin: 8px 0 0;
  font-family: var(--body);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.34;
}

.side-byline {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.3;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 40px 0 16px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  box-shadow: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.article-card .image-frame {
  min-height: 188px;
}

.article-card h3 {
  margin-top: 8px;
  font-size: 1.42rem;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.panel {
  padding: 20px;
  box-shadow: none;
}

.panel h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.rank-list,
.tag-list {
  display: grid;
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.rank-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.rank-no {
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
}

.rank-item strong {
  display: block;
  line-height: 1.25;
}

.rank-item small {
  color: var(--muted);
}

.tag-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tag-list a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.newsletter {
  margin-top: 38px;
  padding: clamp(24px, 5vw, 44px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 44%),
    var(--paper);
}

.newsletter h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 620px;
  margin-top: 20px;
}

.newsletter-form input,
.search-box input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0 14px;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.article-page {
  display: grid;
  grid-template-columns: minmax(0, 760px) 330px;
  gap: 40px;
  align-items: start;
}

.article-body {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.article-body h1 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  line-height: 1.15;
}

.story-copy {
  padding: 0 clamp(20px, 4vw, 42px) 38px;
  font-size: 1.08rem;
}

.story-copy p {
  margin: 1.1em 0;
}

.story-section {
  margin-top: 28px;
  scroll-margin-top: 180px;
}

.story-section:first-child {
  margin-top: 0;
}

.story-section h2 {
  margin: 0 0 14px;
  font-family: var(--body);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 850;
  line-height: 1.25;
  white-space: normal;
}

.article-inline-image {
  margin: 28px 0 6px;
}

.article-inline-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.article-inline-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.video-embed {
  position: relative;
  margin: 28px 0;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.story-copy blockquote {
  margin: 28px 0;
  padding-left: 20px;
  border-left: 4px solid var(--accent);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.28;
}

.source-notice {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.source-notice p {
  margin: 0.45em 0;
}

.source-notice a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-actions {
  gap: 10px;
  margin-top: 22px;
}

.share-strip {
  gap: 6px;
  margin-top: 22px;
}

.share-count {
  display: grid;
  min-width: 68px;
  padding-right: 12px;
  border-right: 1px solid var(--line);
  line-height: 1;
}

.share-count strong {
  color: #e31b2f;
  font-size: 1.55rem;
  font-weight: 800;
}

.share-count span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.social-share,
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 3px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.social-share {
  flex: 1 1 220px;
  gap: 10px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.social-share span,
.social-icon {
  font-size: 1.12rem;
}

.social-icon {
  flex: 0 0 44px;
}

.social-share.fb {
  background: #4267a9;
}

.social-share.tw {
  background: #050505;
}

.social-icon.tg {
  background: #1da7df;
}

.social-icon.line {
  background: #b7b7b7;
}

.article-summary {
  margin-top: 26px;
  padding: 26px 18px;
  border-left: 5px solid #ff2c14;
  color: #8d8880;
  background: color-mix(in srgb, var(--paper-strong) 76%, transparent);
  font-size: 1.02rem;
  line-height: 2;
}

.article-summary p {
  margin: 0;
}

.article-summary p + p {
  margin-top: 4px;
  color: #ff4a13;
}

.toc-box {
  width: min(100%, 360px);
  margin-top: 20px;
  padding: 12px 12px 14px;
  border: 1px solid #adb9c3;
  border-radius: 4px;
  background: #eaf3fb;
  color: #34404a;
}

body.dark .toc-box {
  background: #202832;
  color: var(--ink);
}

.toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.toc-head h2 {
  font-family: var(--body);
  font-size: 1.25rem;
  line-height: 1.2;
}

.toc-toggle {
  width: 34px;
  height: 32px;
  border: 1px solid #9ba7b2;
  border-radius: 5px;
  background: color-mix(in srgb, var(--paper-strong) 65%, transparent);
  color: inherit;
  cursor: pointer;
}

.toc-box ol {
  margin: 10px 0 0;
  padding-left: 22px;
  font-weight: 700;
  line-height: 1.55;
}

.toc-box.collapsed ol {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-family: var(--body);
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.footer-links,
.site-footer div:last-child {
  display: grid;
  gap: 8px;
}

.search-dialog {
  width: min(760px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
}

.search-box {
  padding: 20px;
}

.search-head {
  justify-content: space-between;
  margin-bottom: 12px;
}

.search-head label {
  font-family: var(--display);
  font-size: 1.6rem;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.search-result {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-result strong {
  display: block;
}

.empty-state {
  padding: 40px 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .masthead {
    min-height: 72px;
  }

  .hero-grid,
  .content-layout,
  .article-page,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 22px, 1180px);
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1.35rem;
  }

  .subscribe-button {
    display: none;
  }

  .lead-card h1 {
    font-size: 2.35rem;
  }

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

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

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

/* 漫漫新聞 bright premiere palette */
:root {
  --bg: #f4f9ff;
  --paper: #ffffff;
  --paper-strong: #ffffff;
  --ink: #0b1f3a;
  --muted: #5a6b80;
  --line: #cfe0f4;
  --accent: #e1263f;
  --accent-2: #1769e0;
  --gold: #ffbf3f;
  --shadow: 0 18px 48px rgba(23, 105, 224, 0.13);
}

body {
  background:
    radial-gradient(circle at 16% 4%, rgba(23, 105, 224, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 8%, rgba(225, 38, 63, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 52%, #fff7f8 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #cfe0f4;
}

.top-strip {
  background: linear-gradient(90deg, #1769e0, #0b4fb6 55%, #e1263f);
  border-bottom: 0;
  color: #ffffff;
}

.plain-button {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
}

.brand-mark {
  background: #ffffff;
  border: 3px solid #1769e0;
  box-shadow: 0 12px 28px rgba(23, 105, 224, 0.2);
}

.brand small {
  color: #1769e0;
}

.category-nav {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 249, 255, 0.78));
}

.filter-chip {
  background: #ffffff;
  border-color: #bfd7f4;
  color: #24476f;
}

.filter-chip.active,
.filter-chip:hover {
  background: #1769e0;
  border-color: #1769e0;
  color: #ffffff;
}

.subscribe-button,
.share-button,
.read-more:hover,
.newsletter-form button {
  background: #e1263f;
  border-color: #e1263f;
  color: #ffffff;
}

.icon-button,
.plain-button:not(#themeToggle) {
  background: #ffffff;
  border-color: #bfd7f4;
  color: #1769e0;
}

.kicker,
.rank-no {
  color: #e1263f;
}

.lead-card,
.side-card,
.article-card,
.panel,
.article-body,
.toc-box,
.search-box {
  background: #ffffff;
  border-color: #cfe0f4;
  box-shadow: 0 18px 44px rgba(23, 105, 224, 0.12);
}

.lead-card {
  border-bottom: 7px solid #1769e0;
}

.side-card:nth-child(2n) {
  border-bottom: 5px solid #e1263f;
}

.side-card:nth-child(2n + 1) {
  border-bottom: 5px solid #ffbf3f;
}

.article-card:hover,
.side-card:hover,
.lead-card:hover {
  box-shadow: 0 22px 54px rgba(23, 105, 224, 0.2);
}

.section-head {
  border-color: #cfe0f4;
}

.section-head p,
.dek,
.meta-row,
.side-byline,
.panel small,
.empty-state {
  color: #5a6b80;
}

.newsletter {
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 191, 63, 0.35), transparent 15rem),
    linear-gradient(135deg, #1769e0 0%, #0b4fb6 58%, #e1263f 100%);
  border-color: transparent;
  color: #ffffff;
}

.newsletter .dek {
  color: rgba(255, 255, 255, 0.82);
}

.newsletter-form input {
  border-color: rgba(255, 255, 255, 0.55);
  background: #ffffff;
}

.tag-list a {
  background: #eaf3ff;
  color: #1769e0;
}

.share-strip {
  background: #f4f9ff;
  border-color: #cfe0f4;
}

.article-summary {
  background: #f4f9ff;
  border-left: 6px solid #1769e0;
}

.source-notice {
  background: #fff7f8;
  border-color: #f6bdc7;
}

.social-share.fb {
  background: #1769e0;
}

.social-share.tw {
  background: #0b1f3a;
}

.social-icon.tg {
  background: #2498e8;
}

.social-icon.line {
  background: #20b15a;
}

body.dark {
  --bg: #07111f;
  --paper: #0f1b2d;
  --paper-strong: #14243a;
  --ink: #f5f8ff;
  --muted: #a9b7ca;
  --line: #263a58;
  --accent: #ff5d73;
  --accent-2: #5aa2ff;
  --gold: #ffd36a;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.45);
  background:
    radial-gradient(circle at 16% 4%, rgba(90, 162, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 8%, rgba(255, 93, 115, 0.14), transparent 22rem),
    linear-gradient(180deg, #06101d 0%, #07111f 52%, #100b18 100%);
  color: var(--ink);
}

body.dark .site-header {
  background: rgba(8, 18, 32, 0.94);
  border-bottom-color: var(--line);
}

body.dark .category-nav {
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.88), rgba(8, 18, 32, 0.88));
}

body.dark .brand-mark {
  background: #ffffff;
  border-color: var(--accent-2);
  box-shadow: 0 12px 30px rgba(90, 162, 255, 0.22);
}

body.dark .brand small,
body.dark .filter-chip,
body.dark .icon-button,
body.dark .plain-button:not(#themeToggle),
body.dark .tag-list a {
  color: #c9dcff;
}

body.dark .filter-chip,
body.dark .icon-button,
body.dark .plain-button:not(#themeToggle),
body.dark .tag-list a {
  background: #13243a;
  border-color: var(--line);
}

body.dark .filter-chip.active,
body.dark .filter-chip:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #06101d;
}

body.dark .lead-card,
body.dark .side-card,
body.dark .article-card,
body.dark .panel,
body.dark .article-body,
body.dark .toc-box,
body.dark .search-box {
  background: var(--paper);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

body.dark .section-head,
body.dark .share-strip,
body.dark .newsletter-form input {
  border-color: var(--line);
}

body.dark .section-head p,
body.dark .dek,
body.dark .meta-row,
body.dark .side-byline,
body.dark .panel small,
body.dark .empty-state,
body.dark .article-inline-image figcaption {
  color: var(--muted);
}

body.dark .share-strip,
body.dark .article-summary {
  background: var(--paper-strong);
  border-color: var(--line);
}

body.dark .source-notice {
  background: #201727;
  border-color: #573349;
}

body.dark .newsletter-form input {
  background: #0b1728;
  color: var(--ink);
}
