﻿:root {
  --bg: #f2ede5;
  --bg-soft: #fbf8f2;
  --panel: #fffdf9;
  --panel-alt: #f7f2ea;
  --line: rgba(35, 42, 48, 0.12);
  --line-strong: rgba(35, 42, 48, 0.24);
  --text: #1f262b;
  --muted: #68737b;
  --accent: #ca683f;
  --accent-deep: #9d4728;
  --accent-blue: #5f8396;
  --accent-green: #7f9b6b;
  --shadow: 0 18px 40px rgba(35, 42, 48, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.68;
  background:
    radial-gradient(circle at top left, rgba(95, 131, 150, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0, rgba(255, 255, 255, 0) 220px),
    repeating-linear-gradient(0deg, rgba(31, 38, 43, 0.03) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, #faf7f0 0%, #f2ede5 50%, #fbf8f2 100%);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.narrow-shell {
  width: min(1120px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.site-logo::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding: 34px 0 92px;
}

.eyebrow-note {
  display: inline-flex;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-rule,
.page-caption-block {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}

.section-rule::after,
.page-caption-block::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 96px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue), transparent);
}

.section-rule h1,
.section-rule h2,
.page-caption-block h1,
.page-caption-block h2,
.authorfolio-copy h1,
.essay-mainblock h1 {
  margin: 0;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-rule h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.4rem);
  max-width: 14ch;
}

.page-caption-block h1,
.authorfolio-copy h1 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.essay-mainblock h1 {
  font-size: clamp(1.2rem, 4vw, 2.5rem);
}

.section-rule h2,
.page-caption-block h2 {
  font-size: clamp(1.32rem, 2vw, 2rem);
}

.section-rule-compact h2 {
  font-size: 1.24rem;
}

.center-head,
.center-head .page-caption-block {
  justify-content: center;
  text-align: center;
}

.no-top-gap {
  margin-top: 0;
}

.ledger-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.ledger-tags a,
.ledger-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(95, 131, 150, 0.18);
  background: rgba(95, 131, 150, 0.08);
  color: var(--accent-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ledger-tags a:hover {
  border-color: rgba(202, 104, 63, 0.24);
  color: var(--accent-deep);
}

.journal-shell {
  padding-top: 6px;
}

.crumb-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crumb-note a:hover {
  color: var(--accent-deep);
}

.journal-layout,
.authorfolio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.journal-main,
.journal-side,
.authorfolio-main {
  min-width: 0;
}

.note-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 78px;
}

.note-panel,
.single-sheet,
.essay-sheet-1762,
.comment-sheet-1762,
.related-ledger-zone,
.article-content-sheet {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7f2ea 100%);
  box-shadow: var(--shadow);
}

.note-panel {
  padding: 22px;
}

.single-sheet,
.essay-sheet-1762,
.article-content-sheet {
  padding: 34px 36px;
}

.comment-sheet-1762,
.related-ledger-zone {
  margin-top: 28px;
  padding: 24px 26px;
}

.note-panel::before,
.single-sheet::before,
.essay-sheet-1762::before,
.comment-sheet-1762::before,
.related-ledger-zone::before,
.article-content-sheet::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
}

.single-sheet::before,
.essay-sheet-1762::before,
.article-content-sheet::before {
  left: 36px;
}
.note-panel-head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.note-panel-head h3,
.comment-sheet-1762 h2,
.related-ledger-zone h2,
.author-note-band h2 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 900;
}

.editor-strip {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.editor-strip-media {
  display: block;
  width: 88px;
  height: 88px;
  padding: 5px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
}

.editor-strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.editor-strip-body h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 900;
}

.editor-strip-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.ribbon-links,
.mini-story-stack,
.topic-ledger,
.ledger-stream,
.compact-ledger-stream,
.related-ledger,
.timeline-sheet {
  display: grid;
  gap: 14px;
}

.ribbon-link,
.topic-ledger-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.ribbon-link span,
.topic-ledger-num {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.ribbon-link strong,
.topic-ledger-name {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.24;
}

.mini-story {
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}

.mini-story:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mini-story time {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.briefing-desk,
.topic-ledger-section,
.bulletin-section,
.authorfolio-list {
  margin-top: 0;
}

.topic-ledger-section,
.bulletin-section,
.authorfolio-list {
  margin-top: 56px;
}

.briefing-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(0, 1.3fr) minmax(240px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.briefing-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.briefing-lead,
.briefing-snip,
.ledger-row,
.timeline-row {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdfa 0%, #f7f2ea 100%);
  box-shadow: var(--shadow);
}

.briefing-lead {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
}

.briefing-lead-media {
  display: block;
  overflow: hidden;
  background: #dfe7ea;
  aspect-ratio: 4 / 2.8;
}

.briefing-lead-media img,
.ledger-thumb img,
.related-ledger-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.briefing-lead-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  padding: 22px;
}

.briefing-lead h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.briefing-lead p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.74;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.briefing-lead-meta,
.briefing-snip-meta,
.ledger-meta,
.related-ledger-meta,
.timeline-copy small {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.briefing-lead-meta {
  margin-top: 16px;
}



.briefing-snip {
  display: flex;
  flex: 1 1 0;
  min-height: 0;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
  padding: 18px;
  border-radius: 20px;
}

.briefing-snip-index {
  display: none;
}

.briefing-snip-media {
  flex-shrink: 0;
  width: 140px;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #dfe7ea;
}

.briefing-snip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.briefing-snip-body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.briefing-snip h3 {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.22;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.briefing-snip-meta {
  margin-top: auto;
}
.ledger-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
}

.ledger-stamp {
  display: grid;
  justify-items: start;
  gap: 4px;
  padding-right: 8px;
  border-right: 1px dashed var(--line-strong);
}

.ledger-stamp span,
.timeline-date span {
  color: var(--accent-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ledger-stamp strong,
.timeline-date strong {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.ledger-stamp small,
.timeline-date small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.ledger-copy {
  min-width: 0;
}

.ledger-title {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.ledger-title a:hover,
.briefing-lead h2 a:hover,
.briefing-snip h3 a:hover,
.related-ledger h3 a:hover,
.timeline-copy h2 a:hover,
.author-note-copy h2 a:hover,
.footer-link:hover,
.mini-story a:hover {
  color: var(--accent-deep);
}

.ledger-brief,
.related-ledger p,
.authorfolio-copy p,
.author-note-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.74;
}

.ledger-thumb,
.related-ledger-media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #dfe7ea;
  aspect-ratio: 4 / 3;
}

.home-ledger-stream .ledger-row:nth-child(even) {
  grid-template-columns: 220px minmax(0, 1fr) 110px;
}

.home-ledger-stream .ledger-row:nth-child(even) .ledger-stamp {
  order: 3;
  justify-items: end;
  padding-right: 0;
  padding-left: 8px;
  border-right: 0;
  border-left: 1px dashed var(--line-strong);
}

.home-ledger-stream .ledger-row:nth-child(even) .ledger-thumb {
  order: 1;
}

.home-ledger-stream .ledger-row:nth-child(even) .ledger-copy {
  order: 2;
}

.essay-rack {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.essay-facts {
  display: grid;
  gap: 14px;
}

.essay-fact-block,
.essay-author-card,
.switch-note,
.author-note-band {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.essay-fact-block {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.essay-fact-label,
.author-note-label {
  color: var(--accent-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.essay-fact-block strong {
  font-size: 1rem;
  line-height: 1.4;
  white-space: nowrap;
}

.essay-author-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 16px;
  text-align: center;
}

.essay-author-card img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
}

.essay-author-card span {
  font-weight: 800;
  line-height: 1.3;
}

.essay-mainblock {
  min-width: 0;
}

.article-content {
  margin-top: 30px;
  font-size: 0.985rem;
  letter-spacing: 0.2px;
  color: #171717;
  line-height: 1.75;
  word-break: normal;
  overflow-wrap: normal;
}

.article-content p {
  margin: 0 0 1.2em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 1.6em 0 0.65em;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--text);
}

.article-content h2 {
  font-size: 1.72rem;
}

.article-content h3 {
  font-size: 1.36rem;
}

.article-content h4 {
  font-size: 1.12rem;
}

.article-content a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.35em;
}

.article-content blockquote {
  margin: 1.6em 0;
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  background: rgba(202, 104, 63, 0.08);
}

.article-content img {
  height: auto;
  margin: 28px auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.author-note-band {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  margin-top: 28px;
  padding: 20px;
}

.author-note-media img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 18px;
}

.share-inline-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(247, 242, 234, 0.98));
}

.share-inline-copy span {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
}

.share-inline-copy p {
  margin: 8px 0 0;
  color: var(--muted);
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.share-btn,
.submit-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(95, 131, 150, 0.18);
}

.share-btn:hover,
.submit-btn:hover,
.briefing-lead:hover,
.briefing-snip:hover,
.ledger-row:hover,
.topic-ledger-item:hover,
.ribbon-link:hover,
.related-ledger-item:hover,
.timeline-row:hover {
  transform: translateY(-2px);
}

.briefing-snip:hover .briefing-snip-media img {
  transform: scale(1.05);
}
.switch-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.switch-note {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
}

.switch-note span {
  color: var(--accent-blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.switch-note strong {
  line-height: 1.34;
}

.comment-form-static {
  display: grid;
  gap: 14px;
}

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

.comment-form-static input,
.comment-form-static textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  outline: none;
}

.comment-form-static input:focus,
.comment-form-static textarea:focus {
  border-color: rgba(202, 104, 63, 0.42);
  box-shadow: 0 0 0 4px rgba(202, 104, 63, 0.1);
}

.related-ledger-item,
.timeline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
}

.related-ledger-copy,
.timeline-copy {
  min-width: 0;
}

.related-ledger h3,
.timeline-copy h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.22;
}

.related-ledger p {
  margin: 10px 0 0;
}

.related-ledger-meta {
  margin-top: 12px;
}

.authorfolio {
  grid-template-columns: 320px minmax(0, 1fr);
}

.authorfolio-profile {
  position: sticky;
  top: 78px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7f2ea 100%);
  box-shadow: var(--shadow);
}

.authorfolio-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.authorfolio-copy p {
  margin: 12px 0 0;
}

.timeline-sheet {
  position: relative;
}

.timeline-sheet::before {
  content: "";
  position: absolute;
  left: 88px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
}

.timeline-row {
  position: relative;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  padding-left: 18px;
}

.timeline-row::before {
  content: "";
  position: absolute;
  left: 82px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 0 6px rgba(95, 131, 150, 0.12);
}

.timeline-date {
  display: grid;
  justify-items: start;
  gap: 4px;
}

.pager-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pager-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.pager-chip:hover,
.pager-chip.is-current {
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  border-color: transparent;
  color: #fff;
}

.pager-chip.is-disabled,
.pager-chip.is-gap {
  color: var(--muted);
}

.pager-chip.is-hidden {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(251, 248, 242, 0.92);
}

.footer-inner {
  padding: 24px 0 34px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

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

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(95, 131, 150, 0.18);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1180px) {
  .journal-layout,
  .authorfolio {
    grid-template-columns: 1fr;
  }

  .note-sidebar,
  .authorfolio-profile {
    position: static;
  }
}

@media (max-width: 900px) {
  .briefing-board,
  .ledger-row,
  .related-ledger-item {
    grid-template-columns: 1fr;
  }

  .briefing-lead {
    order: -1;
    height: auto;
  }

  .briefing-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .briefing-snip {
    flex-direction: column;
    align-items: stretch;
  }

  .briefing-snip-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .home-ledger-stream .ledger-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .home-ledger-stream .ledger-row:nth-child(even) .ledger-stamp,
  .ledger-stamp {
    order: 0;
    justify-items: start;
    padding: 0 0 12px;
    border: 0;
    border-bottom: 1px dashed var(--line-strong);
  }

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

  .share-inline-panel {
    grid-template-columns: 1fr;
  }

  .share-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .container,
  .narrow-shell {
    width: min(100%, calc(100% - 20px));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  main {
    padding: 28px 0 78px;
  }

  .section-rule h1 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    max-height: 150px;
  }

  .page-caption-block h1,
  .page-caption-block h2,
  .authorfolio-copy h1,
  .section-rule h2,
  .essay-mainblock h1 {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
    max-height: 150px;
  }

  .briefing-column,
  .topic-ledger,
  .switch-shelf,
  .comment-row {
    grid-template-columns: 1fr;
  }

  .briefing-snip {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
  }

  .briefing-snip-media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .single-sheet,
  .essay-sheet-1762,
  .article-content-sheet,
  .comment-sheet-1762,
  .related-ledger-zone {
    padding-left: 18px;
    padding-right: 18px;
  }

  .single-sheet,
  .essay-sheet-1762,
  .article-content-sheet {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .single-sheet::before,
  .essay-sheet-1762::before,
  .article-content-sheet::before,
  .comment-sheet-1762::before,
  .related-ledger-zone::before {
    left: 18px;
  }

  .essay-fact-block strong {
    white-space: normal;
  }

  .essay-author-card,
  .author-note-band,
  .editor-strip {
    grid-template-columns: 1fr;
  }

  .editor-strip-media,
  .author-note-media img {
    margin: 0 auto;
  }

  .timeline-sheet::before {
    left: 18px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 0 18px 38px;
  }

  .timeline-row::before {
    left: 12px;
    top: 8px;
  }

  .pager-chip {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}






/* detail-mobile-tune-1762 */
.essay-rack-detail {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.essay-rack-detail .essay-mainblock {
  min-width: 0;
}

.essay-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  overflow-x: auto;
  white-space: nowrap;
}

.essay-author-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(99, 135, 163, 0.18);
  background: rgba(99, 135, 163, 0.08);
  color: var(--accent-blue);
  white-space: nowrap;
}

.essay-author-chip img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.essay-author-prefix {
  color: inherit;
}

@media (max-width: 768px) {
  .detail-crumb-note {
    display: none;
  }

  .essay-meta-row {
    padding-bottom: 6px;
  }

  .essay-author-chip img {
    display: none;
  }
}


/* author-list-simplify-1762 */
.page-author-1762 .authorfolio-list .author-ledger-row {
  grid-template-columns: 110px minmax(0, 1fr);
}

@media (max-width: 900px) {
  .page-author-1762 .authorfolio-list .author-ledger-row {
    grid-template-columns: 1fr;
  }
}
