:root {
  --paper: #f6f1e7;
  --paper-deep: #efe7d8;
  --ink: #171513;
  --muted: #62584d;
  --line: #201d18;
  --line-soft: rgba(32, 29, 24, 0.18);
  --accent: #7a1f1f;
  --shadow: 0 10px 30px rgba(30, 24, 16, 0.08);
  --max: 1120px;
  --mouse-x: 50vw;
  --mouse-y: 20vh;
  --cursor-x: 50vw;
  --cursor-y: 20vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.03), transparent 28%),
    linear-gradient(180deg, #f8f4ec 0%, var(--paper) 100%);
  font-family: Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", "STSong", serif;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    260px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06) 32%,
    transparent 72%
  );
  transition: opacity 0.22s ease;
}

body.mouse-effects::before {
  opacity: 1;
}

.print-loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.28), transparent 40%),
    rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  transition: opacity 0.36s ease, visibility 0.36s ease;
}

.print-loader[hidden] {
  display: none;
}

body.page-ready .print-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.print-loader-stage {
  width: min(360px, calc(100vw - 48px));
  text-align: center;
}

.print-loader-kicker {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.print-loader-machine {
  position: relative;
  width: 220px;
  margin: 0 auto 18px;
  padding-top: 24px;
}

.print-loader-top {
  position: relative;
  height: 54px;
  border: 2px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(239,231,216,0.95));
  box-shadow: var(--shadow);
}

.print-loader-top::before,
.print-loader-top::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(122, 31, 31, 0.28);
}

.print-loader-top::before {
  left: 16px;
}

.print-loader-top::after {
  right: 16px;
}

.print-loader-slot {
  position: relative;
  z-index: 2;
  width: 162px;
  height: 10px;
  margin: -6px auto 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.print-loader-paper {
  position: relative;
  z-index: 1;
  width: 152px;
  margin: -2px auto 0;
  padding: 18px 14px 20px;
  border: 1px solid rgba(32, 29, 24, 0.22);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 22px rgba(30, 24, 16, 0.08);
  animation: print-sheet 1.8s ease-in-out infinite;
  transform-origin: top center;
}

.print-loader-paper-head {
  width: 72%;
  height: 10px;
  margin: 0 auto 14px;
  background: rgba(122, 31, 31, 0.18);
}

.print-loader-paper-line {
  height: 2px;
  margin-bottom: 10px;
  background: rgba(32, 29, 24, 0.22);
}

.print-loader-paper-line.short {
  width: 68%;
}

.print-loader-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

@keyframes print-sheet {
  0% {
    transform: translateY(-28px) scaleY(0.92);
    opacity: 0.72;
  }
  35% {
    transform: translateY(8px) scaleY(1);
    opacity: 1;
  }
  100% {
    transform: translateY(42px) scaleY(1);
    opacity: 0.9;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate3d(-50%, -50%, 0);
  transition: opacity 0.18s ease, transform 0.18s ease, width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(122, 31, 31, 0.88);
  box-shadow: 0 0 0 1px rgba(122, 31, 31, 0.1);
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(122, 31, 31, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1px);
}

body.mouse-effects.cursor-visible .cursor-dot,
body.mouse-effects.cursor-visible .cursor-ring {
  opacity: 1;
}

body.mouse-effects.cursor-hover .cursor-dot {
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0) translate3d(-50%, -50%, 0) scale(1.25);
  background: rgba(122, 31, 31, 1);
}

body.mouse-effects.cursor-hover .cursor-ring {
  width: 42px;
  height: 42px;
  border-color: rgba(122, 31, 31, 0.52);
  background: rgba(255, 255, 255, 0.14);
}

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

p {
  margin: 0 0 1rem;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 4px double var(--line);
  border-bottom: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-meta {
  color: var(--muted);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-weight: 700;
}

.menu a,
.menu .current {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 2px 2px 6px;
}

.menu .current::after,
.menu a:hover::after {
  transform: scaleX(1);
}

.menu .current {
  color: var(--ink);
}

.menu a::after,
.menu .current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.18s ease;
}

.menu .current::after {
  transform: scaleX(1);
}

.menu a {
  color: var(--muted);
  transition: color 0.18s ease;
}

.menu a:hover {
  color: var(--ink);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  padding: 3px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.32);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  background: transparent;
  color: var(--muted);
  padding: 5px 10px;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
}

.lang-switch a.active {
  background: var(--line);
  color: var(--paper);
}

.masthead {
  padding: 22px 0 16px;
  border-bottom: 3px double var(--line);
}

.edition {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}

.nameplate {
  text-align: center;
  padding: 20px 0 8px;
}

.nameplate .cn {
  margin: 0;
  font-size: clamp(42px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.nameplate .en {
  margin-top: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted);
}

.lead-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.lead-strip div {
  text-align: center;
}

.lead-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-note {
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  color: var(--muted);
}

.not-found-page {
  padding: 28px 0 40px;
}

.not-found-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr;
  gap: 20px;
}

.not-found-main,
.not-found-aside {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
}

.not-found-code {
  font-size: clamp(86px, 15vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  font-weight: 800;
}

.not-found-deck {
  max-width: 18em;
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.5;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.not-found-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.48);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease;
}

.not-found-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.8);
}

.not-found-aside h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.08;
}

.not-found-aside p {
  margin-bottom: 0;
  font-size: 15px;
}

.share-poster-page {
  min-height: 100vh;
}

.share-poster-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 28px 20px 44px;
}

.share-poster-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.share-poster {
  position: relative;
  width: min(100%, 920px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  padding: 42px 42px 34px;
  border: 2px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.64), transparent 42%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.share-poster-corner {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.share-poster-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.share-poster-issue {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.share-poster-brand {
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.share-poster-headline {
  margin: 0;
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.share-poster-deck {
  margin: 26px 0 0;
  max-width: 16em;
  font-size: clamp(18px, 2.1vw, 30px);
  line-height: 1.52;
}

.share-poster-divider {
  margin-top: auto;
  border-top: 3px double var(--line);
  padding-top: 18px;
}

.share-poster-foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 24px;
  align-items: end;
}

.share-poster-foot {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
}

.share-poster-source-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.share-poster-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.share-poster-sources span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  line-height: 1.4;
}

.share-poster-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.share-poster-qr-box {
  width: 148px;
  height: 148px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.share-poster-qr-box img {
  display: block;
  width: 100%;
  height: 100%;
}

.share-poster-qr-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.share-poster-site {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.share-poster-note {
  margin: 14px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .share-poster {
    aspect-ratio: auto;
    min-height: 0;
    padding: 34px 24px 26px;
  }

  .share-poster-corner {
    position: static;
    width: fit-content;
    margin: 0 0 18px auto;
  }

  .share-poster-foot-grid {
    grid-template-columns: 1fr;
  }

  .share-poster-foot {
    grid-template-columns: 1fr;
  }

  .share-poster-qr {
    align-items: flex-start;
  }
}

.not-found-divider {
  margin: 18px 0;
  border-top: 1px dashed var(--line-soft);
}

.frontpage {
  display: grid;
  grid-template-columns: 1.45fr 0.92fr;
  gap: 22px;
  padding: 22px 0 30px;
  align-items: start;
}

.printing-frontpage .body-copy {
  margin-bottom: 16px;
}

.printing-frontpage {
  padding-bottom: 92px;
}

.printing-inline-machine {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 360px;
  padding: 36px 0 46px;
  margin: 0 auto;
}

.printing-inline-machine .print-loader-machine {
  width: 320px;
  margin: 0 auto;
  transform: scale(1.18);
  transform-origin: center top;
}

.printing-inline-machine .print-loader-top {
  height: 64px;
}

.printing-inline-machine .print-loader-slot {
  width: 230px;
}

.printing-inline-machine .print-loader-paper {
  width: 212px;
  min-height: 116px;
}

.printing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.printing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 16px;
  margin-top: 0;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(246, 240, 230, 0.44));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 4px 14px rgba(35, 29, 20, 0.05);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-transform: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.printing-cta:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 243, 235, 0.66));
  border-color: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 20px rgba(35, 29, 20, 0.07);
}

.printing-cta::before {
  display: none;
}

@media (max-width: 640px) {
  .printing-actions {
    grid-template-columns: 1fr;
  }
}

.paper-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow);
}

.headline-box {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
}

.headline {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.deck {
  margin: 16px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  color: #302a23;
  max-width: 30em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.body-copy {
  margin-top: 20px;
  column-count: 2;
  column-gap: 28px;
  font-size: 16px;
}

.body-copy p:first-child::first-letter {
  float: left;
  font-size: 4.1em;
  line-height: 0.78;
  padding-right: 10px;
  padding-top: 6px;
  font-weight: 700;
}

.note-box {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.note-box h2,
.section h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.bullet-item {
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.bullet-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.bullet-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.side-guide {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.side-guide-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.side-guide-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed var(--line-soft);
  color: inherit;
}

.side-guide-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.side-guide-item:hover .side-guide-text strong {
  color: var(--accent);
}

.side-guide-no {
  padding-top: 2px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.side-guide-text strong {
  display: block;
  margin-bottom: 2px;
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.side-guide-text span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: #2a251f;
}

.section {
  margin-top: 8px;
  padding-top: 4px;
  border-top: 3px double var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.section-head span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.three-grid,
.two-grid {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.col {
  min-height: 100%;
  padding: 18px 18px 20px;
  border-right: 1px solid var(--line-soft);
}

.col:last-child {
  border-right: 0;
}

.stamp {
  display: inline-block;
  padding: 5px 8px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}

.col-title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.1;
}

.project-card + .project-card,
.archive-item + .archive-item {
  border-top: 1px dashed var(--line-soft);
}

.project-link {
  display: inline-block;
  margin: 6px 0 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

.muted {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 9px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.archive-list,
.project-list {
  display: grid;
}

.archive-item,
.project-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.archive-item h3,
.project-card h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.1;
}

.column-card h3,
.module-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.mini-meta {
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  transition: color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.cta-link.printing-cta {
  display: inline-flex;
  margin-top: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.news-sheet {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: start;
}

.news-column-note {
  position: sticky;
  top: 92px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.brief-card {
  position: relative;
  height: 100%;
}

.brief-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.brief-card-featured {
  background: rgba(255, 255, 255, 0.22);
  padding: 24px 22px 22px;
  border-bottom: 1px solid var(--line-soft);
  grid-column: 1 / -1;
}

.brief-card-featured h3 {
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.brief-card-featured p {
  font-size: 16px;
  line-height: 1.72;
}

.brief-card-standard {
  background: rgba(255, 255, 255, 0.16);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 18px 20px;
}

.brief-card-standard:nth-child(2n) {
  border-right: 0;
}

.brief-card-standard h3 {
  font-size: 24px;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.brief-card-standard p {
  font-size: 15px;
  line-height: 1.68;
}

.brief-card-no {
  margin-bottom: 10px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brief-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dotted var(--line-soft);
}

.brief-note .stamp {
  margin-bottom: 8px;
}

.brief-note-text {
  font-size: 14px;
  color: #2a251f;
  line-height: 1.6;
}

.column-grid,
.module-grid,
.guide-grid {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.module-grid {
  grid-template-columns: repeat(3, 1fr);
}

.guide-grid {
  grid-template-columns: repeat(5, 1fr);
}

.column-card,
.module-card {
  min-height: 100%;
  padding: 20px 18px 22px;
  background: rgba(255, 255, 255, 0.12);
  border-right: 1px solid var(--line-soft);
}

.column-card:last-child,
.module-card:last-child {
  border-right: 0;
}

.column-card p,
.module-card p {
  margin-bottom: 0;
}

.guide-card {
  display: block;
  min-height: 100%;
  padding: 18px 16px 20px;
  background: rgba(255, 255, 255, 0.14);
  border-right: 1px solid var(--line-soft);
  transition: background 0.18s ease, transform 0.18s ease;
}

.guide-card:last-child {
  border-right: 0;
}

.guide-card:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.guide-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.guide-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #2a251f;
}

.wire-ledger {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.wire-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px dashed var(--line-soft);
  border-right: 1px solid var(--line-soft);
}

.wire-item:nth-child(-n + 2) {
  border-top: 0;
}

.wire-item:nth-child(2n) {
  border-right: 0;
}

.wire-no {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-top: 2px;
}

.wire-body h3 {
  margin: 0 0 4px;
  font-size: 21px;
  line-height: 1.15;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.wire-body p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

.wire-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dotted var(--line-soft);
}

.wire-note .stamp {
  margin-bottom: 8px;
}

.wire-body .cta-link {
  margin-top: 8px;
}

.good-news-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.good-news-item {
  padding: 18px 18px 20px;
  background: rgba(255, 255, 255, 0.12);
  border-right: 1px solid var(--line-soft);
}

.good-news-item:last-child {
  border-right: 0;
}

.good-news-item h3 {
  margin: 6px 0 8px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.good-news-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.good-news-item .cta-link {
  margin-top: 10px;
}

.front-index {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 0;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.14);
}

.front-index-single {
  grid-template-columns: 1fr;
}

.front-index-main,
.front-index-side {
  padding: 18px;
  font-size: 12px;
}

.front-index-main {
  border-right: 1px solid var(--line-soft);
}

.front-index-single .front-index-main {
  border-right: 0;
}

.front-index-side h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.front-index-list {
  display: grid;
  gap: 0;
  font-size: 12px;
}

.front-index-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px dashed var(--line-soft);
}

.front-index-item[hidden],
.archive-item[hidden] {
  display: none !important;
}

.front-index-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.front-index-no {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.front-index-item .cta-link,
.front-index-side p,
.front-index-side .cta-link {
  font-size: 12px;
  line-height: 1.65;
}

.source-archive-backlink {
  display: inline-block;
  margin-top: 16px;
}

.source-archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.source-pagination-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 1px dashed var(--line-soft);
  font-size: 12px;
}

.source-page-btn {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.source-page-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
}

.source-page-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.archive-ledger {
  display: grid;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.archive-entry {
  display: grid;
  grid-template-columns: 140px 1.25fr 0.8fr;
  gap: 0;
  border-top: 1px dashed var(--line-soft);
  background: rgba(255, 255, 255, 0.1);
}

.archive-entry:first-child {
  border-top: 0;
}

.archive-entry-tag,
.archive-entry-body,
.archive-entry-sources {
  padding: 18px;
}

.archive-entry-tag {
  border-right: 1px solid var(--line-soft);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.archive-entry-body {
  border-right: 1px solid var(--line-soft);
}

.archive-entry-body h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.archive-entry-sources {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.archive-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer {
  margin-top: 22px;
  padding: 24px 0 42px;
  border-top: 3px double var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-align: center;
}

.footer a {
  margin-left: 10px;
  border-bottom: 1px solid currentColor;
}

.stats-page {
  margin-top: 14px;
}

.stats-intro {
  display: grid;
  gap: 12px;
  padding: 18px 0 6px;
}

.stats-note {
  color: var(--muted);
  font-size: 14px;
}

.stats-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stats-card {
  min-height: 100%;
  padding: 18px;
  border-right: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.12);
}

.stats-card:last-child {
  border-right: 0;
}

.stats-card strong {
  display: block;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

.stats-dimension-card {
  min-width: 0;
}

.stats-dimension-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.stats-metric-list {
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stats-metric-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px dashed var(--line-soft);
}

.stats-metric-item:first-child {
  border-top: 0;
}

.stats-metric-copy {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.stats-metric-share {
  font-size: 12px;
  color: var(--muted);
}

.stats-metric-track {
  position: relative;
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  overflow: hidden;
}

.stats-metric-bar {
  position: absolute;
  left: 0;
  top: 50%;
  height: 22px;
  transform: translateY(-50%);
  border: 1px solid rgba(190, 75, 227, 0.42);
  border-radius: 6px;
  background: rgba(246, 224, 252, 0.32);
}

.stats-metric-track strong {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
  font-size: 15px;
  line-height: 1.15;
}

.stats-metric-count {
  font-size: 16px;
}

.stats-summary-copy,
.stats-summary-list {
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stats-summary-copy {
  padding: 14px 16px;
}

.stats-summary-copy p {
  margin: 0;
  padding: 10px 0;
  border-top: 1px dashed var(--line-soft);
}

.stats-summary-copy p:first-child {
  padding-top: 0;
  border-top: 0;
}

.stats-summary-copy p:last-child {
  padding-bottom: 0;
}

.stats-summary-list {
  display: grid;
}

.stats-summary-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px dashed var(--line-soft);
  align-items: start;
}

.stats-summary-item:first-child {
  border-top: 0;
}

.stats-summary-item span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-summary-item strong {
  font-size: 17px;
  line-height: 1.25;
}

.stats-hourly-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border: 1px solid var(--line-soft);
  border-top: 0;
}

.stats-hour {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  min-height: 168px;
  padding: 14px 8px 12px;
  border-right: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}

.stats-hour:nth-child(12n) {
  border-right: 0;
}

.stats-hour-bar-wrap {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 92px;
}

.stats-hour-bar {
  width: 100%;
  min-height: 4px;
  background: linear-gradient(180deg, rgba(122, 31, 31, 0.82), rgba(122, 31, 31, 0.34));
}

.stats-hour strong {
  font-size: 14px;
}

.stats-hour span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.stats-bottom-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.stats-trend-list,
.stats-page-list {
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stats-trend-item,
.stats-page-item {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-top: 1px dashed var(--line-soft);
}

.stats-trend-item:first-child,
.stats-page-item:first-child {
  border-top: 0;
}

.stats-trend-item {
  grid-template-columns: 1fr auto;
}

.stats-page-item {
  grid-template-columns: 38px 1fr auto;
}

.stats-page-rank {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-page-copy strong {
  display: block;
  margin-bottom: 2px;
  font-size: 18px;
  line-height: 1.15;
}

.stats-page-copy span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.stats-page-count {
  font-size: 18px;
}

.stats-empty {
  padding: 20px 16px;
  border: 1px solid var(--line-soft);
  border-top: 0;
  color: var(--muted);
}

.source-card .section-head {
  align-items: center;
}

.source-card .stats-summary-item {
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.source-card .stats-summary-item span {
  display: block;
  line-height: 1.35;
}

.source-card .stats-summary-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.source-card .stats-summary-copy p {
  overflow-wrap: anywhere;
}

.source-card .stats-actions {
  flex-wrap: wrap;
}

.source-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 4px 10px;
  border: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.source-status.ok {
  color: var(--accent);
  border-color: rgba(122, 31, 31, 0.28);
  background: rgba(122, 31, 31, 0.05);
}

.source-status.error {
  color: #8c5b00;
  border-color: rgba(140, 91, 0, 0.28);
  background: rgba(140, 91, 0, 0.06);
}

.source-run-error {
  border-top: 0;
  color: #8c5b00;
}

.section-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 28;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(10px);
}

.section-dock.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.section-dock-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dock-link:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 1);
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 72px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover {
  background: rgba(255, 255, 255, 1);
}

.floating-index-trigger {
  position: fixed;
  right: 18px;
  bottom: 124px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.floating-index-trigger.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-index-trigger:hover {
  background: rgba(255, 255, 255, 1);
}

@media (hover: hover) and (pointer: fine) {
  .headline-box,
  .news-column-note,
  .brief-card-featured,
  .brief-card-standard,
  .wire-item,
  .good-news-item,
  .front-index,
  .archive-entry,
  .stats-card,
  .floating-index-panel {
    transition:
      transform 0.18s ease,
      background 0.18s ease,
      box-shadow 0.18s ease,
      border-color 0.18s ease;
  }

  .news-column-note:hover,
  .brief-card-featured:hover,
  .brief-card-standard:hover,
  .wire-item:hover,
  .good-news-item:hover,
  .front-index:hover,
  .archive-entry:hover,
  .stats-card:hover,
  .floating-index-panel:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 36px rgba(30, 24, 16, 0.1);
  }

  .headline-box:hover {
    transform: translateY(-1px);
  }

  .menu a:hover,
  .lang-switch a:hover,
  .cta-link:hover,
  .source-page-btn:hover:not(:disabled),
  .to-top:hover,
  .floating-index-trigger:hover {
    transform: translateY(-1px);
  }

  .cta-link:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  .source-page-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--line);
  }

  .lang-switch a {
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  }

  .lang-switch a:not(.active):hover {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
  }
}

.floating-index[hidden] {
  display: none;
}

.floating-index {
  position: fixed;
  inset: 0;
  z-index: 34;
}

.floating-index-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 13, 10, 0.18);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.floating-index-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100vw - 28px));
  max-height: min(70vh, 640px);
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(248, 244, 236, 0.98);
  box-shadow: var(--shadow);
}

.floating-index-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.floating-index-close {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 8px;
  cursor: pointer;
}

.floating-index-list {
  display: grid;
}

.floating-index-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px dashed var(--line-soft);
}

.floating-index-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.floating-index-no {
  padding-top: 2px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-index-copy strong {
  display: block;
  margin-bottom: 2px;
  font-size: 20px;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.floating-index-copy span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: #2a251f;
}

html[lang="en"] .topbar-inner {
  font-size: 11px;
  letter-spacing: 0.1em;
}

html[lang="en"] .headline {
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

html[lang="en"] .deck {
  max-width: 34em;
  font-size: clamp(17px, 1.7vw, 22px);
}

html[lang="en"] .body-copy {
  column-gap: 24px;
  font-size: 15px;
}

html[lang="en"] .note-box h2,
html[lang="en"] .section h2 {
  font-size: 24px;
}

html[lang="en"] .news-column-note {
  font-size: 13px;
  line-height: 1.65;
}

html[lang="en"] .brief-card-featured h3 {
  font-size: 26px;
  line-height: 1.08;
}

html[lang="en"] .brief-card-standard h3 {
  font-size: 21px;
  line-height: 1.12;
}

html[lang="en"] .brief-card-featured p,
html[lang="en"] .brief-card-standard p,
html[lang="en"] .brief-note-text,
html[lang="en"] .wire-body p,
html[lang="en"] .good-news-item p {
  font-size: 14px;
  line-height: 1.66;
}

html[lang="en"] .wire-body h3 {
  font-size: 19px;
}

html[lang="en"] .good-news-item h3,
html[lang="en"] .front-index-side h3,
html[lang="en"] .archive-entry-body h3 {
  font-size: 22px;
  line-height: 1.1;
}

@media (max-width: 920px) {
  .frontpage,
  .lead-strip,
  .three-grid,
  .two-grid,
  .not-found-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "meta meta"
      "menu actions";
    align-items: center;
    gap: 10px 12px;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .topbar-inner > .top-meta {
    grid-area: meta;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .menu {
    grid-area: menu;
    justify-content: flex-start;
    gap: 14px;
    font-size: 14px;
  }

  .menu a,
  .menu .current {
    min-height: 24px;
    padding: 0 1px 4px;
  }

  .news-sheet,
  .front-index,
  .archive-entry,
  .brief-card-grid,
  .column-grid,
  .module-grid,
  .guide-grid,
  .wire-ledger,
  .stats-overview,
  .stats-bottom-grid,
  .stats-hourly-grid,
  .stats-dimensions {
    grid-template-columns: 1fr;
  }

  .good-news-ledger {
    grid-template-columns: 1fr;
  }

  .brief-card-featured,
  .brief-card-standard {
    border-right: 0;
  }

  .brief-card-featured,
  .brief-card-standard {
    padding: 18px;
  }

  .front-index-main,
  .archive-entry-tag,
  .archive-entry-body {
    border-right: 0;
  }

  .guide-card {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .guide-card:last-child {
    border-bottom: 0;
  }

  .news-column-note {
    position: static;
  }

  .topbar-actions {
    grid-area: actions;
    justify-content: flex-end;
    gap: 0;
  }

  .topbar-actions .top-meta {
    display: none;
  }

  .lang-switch {
    gap: 4px;
    padding: 2px;
  }

  .lang-switch a {
    min-width: 48px;
    padding: 5px 9px;
  }

  .to-top {
    right: 12px;
    bottom: 74px;
  }

  .floating-index-trigger {
    right: 12px;
    bottom: 126px;
  }

  .section-dock {
    width: calc(100% - 24px);
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: translateX(0) translateY(10px);
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section-dock.visible {
    transform: translateX(0) translateY(0);
  }

  .section-dock-link {
    flex: 0 0 auto;
  }

  .floating-index-panel {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 12px;
  }

  .body-copy {
    column-count: 1;
  }

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

  .edition {
    gap: 6px;
    padding-bottom: 8px;
  }

  .col {
    border-right: 0;
    border-top: 1px solid var(--line-soft);
  }

  .column-card,
  .module-card,
  .good-news-item,
  .wire-item,
  .stats-card {
    border-right: 0;
    border-top: 1px solid var(--line-soft);
  }

  .three-grid .col:first-child,
  .two-grid .col:first-child,
  .column-card:first-child,
  .module-card:first-child,
  .good-news-item:first-child,
  .wire-item:first-child,
  .stats-card:first-child {
    border-top: 0;
  }

  .stats-hour {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: relative;
    top: auto;
    backdrop-filter: blur(8px);
  }

  .topbar-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "meta meta"
      "actions actions"
      "menu menu";
    gap: 8px 10px;
  }

  .topbar-inner > .top-meta {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .topbar-actions {
    justify-content: space-between;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    order: 2;
  }

  .lang-switch {
    order: 1;
  }

  .menu {
    display: none;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0 2px;
    border-top: 1px solid var(--line-soft);
  }

  body.menu-open .menu {
    display: flex;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .edition {
    display: none;
  }

  .page-note {
    margin-top: 10px;
  }

  .print-loader-machine {
    width: 188px;
  }

  .print-loader-note {
    font-size: 13px;
  }

  .not-found-main,
  .not-found-aside {
    padding: 22px 18px;
  }

  .not-found-deck {
    font-size: 18px;
  }

  .printing-inline-machine {
    min-height: 248px;
    padding: 22px 0 34px;
  }

  .printing-inline-machine .print-loader-machine {
    width: 236px;
    transform: scale(1);
  }

  .printing-inline-machine .print-loader-slot {
    width: 180px;
  }

  .printing-inline-machine .print-loader-paper {
    width: 164px;
    min-height: 96px;
  }

  .stats-metric-item,
  .stats-metric-copy {
    grid-template-columns: 1fr;
  }

  .stats-metric-share {
    margin-bottom: 4px;
  }
}
