:root {
  --paper: #f4f0e7;
  --paper-deep: #ebe5da;
  --ink: #171a1d;
  --ink-soft: #4f5558;
  --navy: #102733;
  --navy-light: #1c3e4a;
  --brass: #9a7642;
  --teal: #3f7374;
  --brick: #9a4f45;
  --navy-wash: rgba(16, 39, 51, .12);
  --brass-wash: rgba(154, 118, 66, .16);
  --teal-wash: rgba(63, 115, 116, .14);
  --brick-wash: rgba(154, 79, 69, .14);
  --line: #d6d0c5;
  --line-dark: #b8b0a4;
  --white: #fffdf8;
  --serif: "Gowun Batang", "Batang", serif;
  --sans: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.paper-grain {
  background-image:
    radial-gradient(circle at 14% 18%, rgba(154, 118, 66, .045) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 34%, rgba(16, 39, 51, .038) 0 1px, transparent 1px);
  background-size: 17px 19px, 23px 29px;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.site-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 30px;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: flex;
  height: 96px;
  justify-content: space-between;
}

.masthead {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  min-width: 0;
}

.brand-symbol {
  display: block;
  flex: 0 0 auto;
  height: 44px;
  transition: transform 180ms ease;
  width: 44px;
}

.masthead:hover .brand-symbol {
  transform: translateY(-1px);
}

.masthead-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.masthead-copy strong {
  align-items: baseline;
  display: flex;
  font-family: var(--serif);
  font-size: 22px;
  gap: 7px;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.masthead-copy .brand-prefix {
  font-size: .8em;
  font-weight: 400;
}

.masthead-copy .brand-focus {
  color: var(--navy);
  font-weight: 700;
}

.masthead-copy small {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .18em;
  margin-top: 5px;
}

.search-link {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  gap: 10px;
  letter-spacing: .18em;
  padding: 10px 0 10px 10px;
}

.search-link svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.4;
  width: 19px;
}

.section-kicker {
  color: var(--brass);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  margin: 0 0 13px;
}

.issue-intro {
  display: grid;
  gap: 70px;
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 520px;
  padding: 88px 0 80px;
}

.issue-rail {
  align-items: flex-start;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding-top: 8px;
}

.issue-rail > span {
  font-size: 12px;
  letter-spacing: .2em;
}

.issue-rail > strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  margin-top: 7px;
}

.issue-rail time {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .15em;
  margin-top: auto;
  padding-bottom: 8px;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: bottom left;
  white-space: nowrap;
}

.issue-lede {
  max-width: 840px;
}

.issue-lede h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.28;
  margin: 0;
}

.issue-lede h1 em {
  color: var(--navy-light);
  font-style: normal;
  position: relative;
}

.issue-lede h1 em::after {
  background: var(--brass);
  bottom: 2px;
  content: "";
  height: 2px;
  left: 2px;
  opacity: .65;
  position: absolute;
  right: 2px;
}

.issue-lede > p:not(.section-kicker) {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.9;
  margin: 33px 0 0;
  max-width: 620px;
}

.issue-proof {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 27px;
  margin-top: 50px;
  padding-top: 18px;
}

.issue-proof span {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: .08em;
}

.issue-proof i {
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin-right: 8px;
  position: relative;
  top: -1px;
  width: 6px;
}

.latest-edition {
  border-top: 2px solid var(--ink);
  padding: 35px 0 90px;
}

.edition-heading,
.archive-heading,
.section-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 27px;
}

.edition-heading h2,
.archive-heading h2,
.section-heading h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin: 0;
}

.edition-heading > p,
.archive-heading > p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 0 3px;
  text-align: right;
}

.report-feed {
  border-top: 1px solid var(--line-dark);
}

.feed-item {
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 80px minmax(0, 1fr) 145px;
  min-height: 192px;
  transition: background-color .18s ease;
}

.feed-item:hover {
  background: rgba(255, 253, 248, .48);
}

.feed-date {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding-top: 33px;
}

.feed-date span {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .16em;
}

.feed-date strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.feed-content {
  align-self: center;
  display: block;
  padding: 28px 0;
}

.feed-identity {
  color: var(--brass);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  margin: 0 0 12px;
}

.feed-content h3 {
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.4;
  margin: 0;
  max-width: 760px;
}

.feed-dek {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0 0;
  max-width: 720px;
}

.feed-meta {
  align-items: flex-end;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
  padding-left: 24px;
}

.feed-meta > span:not(.stance):not(.feed-arrow) {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .14em;
}

.feed-arrow {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 12px;
  transform: translate(0, 0);
  transition: transform .18s ease;
}

.feed-item:hover .feed-arrow {
  transform: translate(4px, -4px);
}

.stance {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
}

.stance::before {
  border-radius: 50%;
  content: "";
  height: 6px;
  margin-right: 7px;
  width: 6px;
}

.stance-conditional_positive::before {
  background: var(--teal);
}

.stance-watch::before,
.stance-neutral::before {
  background: var(--brass);
}

.stance-conditional_negative::before {
  background: var(--brick);
}

.feed-loading,
.empty-copy {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 12px;
  gap: 12px;
  min-height: 150px;
}

.feed-loading span {
  animation: pulse 1.4s ease-in-out infinite;
  background: var(--brass);
  height: 7px;
  width: 7px;
}

@keyframes pulse {
  50% { opacity: .25; }
}

.newsletter-band {
  align-items: center;
  background: var(--navy);
  color: var(--paper);
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  margin: 0 -30px;
  overflow: hidden;
  padding: 55px 60px;
  position: relative;
}

.newsletter-band::after {
  border: 1px solid rgba(244, 240, 231, .13);
  border-radius: 50%;
  content: "";
  height: 250px;
  position: absolute;
  right: -120px;
  top: -130px;
  width: 250px;
}

.newsletter-band h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.3;
  margin: 0;
}

.newsletter-band > div > p:last-child {
  color: rgba(244, 240, 231, .62);
  font-size: 12px;
  margin: 10px 0 0;
}

.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-field {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(244, 240, 231, .52);
  display: flex;
  padding: 4px;
}

.newsletter-field input {
  background: transparent;
  border: 0;
  color: var(--paper);
  min-width: 0;
  outline: 0;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.newsletter-field input::placeholder {
  color: rgba(244, 240, 231, .42);
}

.newsletter-field button {
  background: var(--brass);
  border: 1px solid #b58a4c;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  min-width: 108px;
  padding: 0 17px;
  transition: background .2s ease, transform .2s ease;
}

.newsletter-field button:hover {
  background: #ab8146;
  transform: translateY(-1px);
}

.newsletter-field button:disabled {
  opacity: .45;
  transform: none;
}

.newsletter-privacy-note {
  color: rgba(244, 240, 231, .62);
  font-size: 12px;
  line-height: 1.65;
  margin: 12px 0 0;
}

.newsletter-consent {
  align-items: flex-start;
  color: rgba(244, 240, 231, .82);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  gap: 9px;
  line-height: 1.55;
  margin-top: 9px;
}

.newsletter-consent input {
  accent-color: var(--brass);
  flex: 0 0 auto;
  height: 17px;
  margin: 2px 0 0;
  width: 17px;
}

.newsletter-consent strong {
  color: #e1b976;
}

.newsletter-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note,
.form-status {
  color: rgba(244, 240, 231, .52);
  font-size: 12px;
  margin: 10px 0 0;
}

.form-status {
  color: #e1b976;
  min-height: 17px;
}

.form-status.is-success {
  color: #9fc9c1;
}

.archive-section {
  padding: 100px 0 120px;
}

.archive-month {
  border-top: 1px solid var(--ink);
  margin-top: 47px;
}

.archive-month-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 20px 0 13px;
}

.archive-month-heading h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  margin: 0;
}

.archive-month-heading span {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .15em;
}

.archive-list {
  border-top: 1px solid var(--line);
}

.archive-list a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 70px 150px minmax(0, 1fr) 25px;
  min-height: 71px;
  transition: padding .16s ease;
}

.archive-list a:hover {
  padding-left: 7px;
}

.archive-list time {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .12em;
}

.archive-list strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
}

.archive-list > a > span {
  font-family: var(--serif);
  font-size: 15px;
}

.archive-list i {
  color: var(--brass);
  font-style: normal;
}

.site-footer {
  align-items: start;
  border-top: 1px solid var(--ink);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 42px 0 35px;
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -.025em;
}

.footer-brand-name {
  align-items: center;
  display: flex;
  gap: 10px;
}

.footer-brand-name .brand-symbol {
  height: 28px;
  width: 28px;
}

.site-footer p {
  color: var(--ink-soft);
  font-size: 12px;
  margin: 7px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer nav a {
  color: var(--ink-soft);
  font-size: 12px;
}

.site-footer .copyright {
  grid-column: 1 / -1;
  letter-spacing: .1em;
  margin-top: 26px;
}

.search-dialog {
  background: var(--paper);
  border: 0;
  color: var(--ink);
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  width: 100%;
}

.search-dialog::backdrop {
  background: rgba(16, 39, 51, .3);
}

.search-dialog-inner {
  margin: 0 auto;
  max-width: 1020px;
  padding: 80px 35px;
}

.search-top {
  align-items: flex-end;
  border-bottom: 1px solid var(--ink);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding-bottom: 18px;
}

.search-top label {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.search-top label > span {
  color: var(--brass);
  font-size: 12px;
  letter-spacing: .2em;
}

.search-top input {
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 54px);
  outline: 0;
  padding: 16px 0 0;
  width: 100%;
}

.search-top button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .15em;
  padding: 12px 0;
}

.search-results {
  padding-top: 20px;
}

.search-results > p {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
}

.search-results a {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 23px 0;
}

.search-results a span {
  color: var(--brass);
  font-size: 12px;
  letter-spacing: .15em;
}

.search-results a strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-top: 7px;
}

/* Report */

.reading-progress {
  background: transparent;
  height: 2px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.reading-progress span {
  background: var(--brass);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

.report-article {
  margin: 0 auto;
  max-width: 1080px;
  padding: 58px 0 110px;
}

.report-page .section-kicker {
  font-size: 12px;
}

.report-page .stance {
  font-size: 13px;
}

.text-emphasis {
  -webkit-box-decoration-break: clone;
  background: transparent;
  border-radius: 2px;
  box-decoration-break: clone;
  color: inherit;
  font-weight: 700;
  padding: 0 .08em;
  white-space: nowrap;
}

.text-emphasis.tone-key {
  background: linear-gradient(transparent 47%, var(--navy-wash) 47%);
  color: var(--navy);
}

.text-emphasis.tone-positive {
  background: linear-gradient(transparent 47%, var(--teal-wash) 47%);
  color: #2f6667;
}

.text-emphasis.tone-watch {
  background: linear-gradient(transparent 47%, var(--brass-wash) 47%);
  color: #805d2e;
}

.text-emphasis.tone-risk {
  background: linear-gradient(transparent 47%, var(--brick-wash) 47%);
  color: #8b3f36;
}

.glossary-term {
  border-bottom: 1px dotted color-mix(in srgb, var(--brass) 78%, transparent);
  color: inherit;
  cursor: help;
  font-style: normal;
  font-weight: 700;
  outline: 0;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.glossary-label::after {
  align-items: center;
  background: var(--brass-wash);
  border: 1px solid color-mix(in srgb, var(--brass) 56%, transparent);
  border-radius: 50%;
  color: #775326;
  content: "i";
  display: inline-flex;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  height: 13px;
  justify-content: center;
  line-height: 1;
  margin-left: 3px;
  position: relative;
  top: -.38em;
  width: 13px;
}

.glossary-popover {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .14);
  bottom: auto;
  box-shadow: 0 18px 48px rgba(12, 34, 43, .22);
  color: var(--paper);
  display: grid;
  font-family: var(--sans);
  font-style: normal;
  gap: 7px;
  left: 50%;
  max-width: calc(100vw - 40px);
  opacity: 0;
  padding: 17px 18px 15px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  top: calc(100% + 13px);
  transform: translate(-50%, -7px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  visibility: hidden;
  white-space: normal;
  width: 310px;
  z-index: 10020;
}

@supports selector(:popover-open) {
  .glossary-popover[popover]:not(:popover-open) {
    display: none;
  }
}

.glossary-popover:popover-open {
  bottom: auto;
  display: grid;
  inset: auto;
  left: var(--glossary-left, 20px);
  margin: 0;
  opacity: 1;
  position: fixed;
  right: auto;
  top: var(--glossary-top, 20px);
  transform: none;
  visibility: visible;
}

.glossary-popover:popover-open::after {
  display: none;
}

.glossary-popover::after {
  border-bottom: 7px solid var(--navy);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  left: 50%;
  position: absolute;
  bottom: 100%;
  top: auto;
  transform: translateX(-50%);
}

.glossary-popover strong {
  color: #e4bb7a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.glossary-popover > span {
  color: #f6f0e4;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

@supports not selector(:popover-open) {
  .glossary-term:hover .glossary-popover,
  .glossary-term:focus .glossary-popover {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
  }
}

.glossary-term:focus-visible {
  border-radius: 2px;
  box-shadow: 0 0 0 3px var(--brass-wash);
}

.glossary-hint {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-family: var(--sans);
  font-size: 12px;
  gap: 7px;
  line-height: 1.6;
  margin: 18px 0 0;
}

.glossary-hint > span {
  align-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: #775326;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  height: 16px;
  justify-content: center;
  width: 16px;
}

.report-hero {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 34px;
}

.report-identity {
  align-items: center;
  display: flex;
  gap: 11px;
}

.report-identity span {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .16em;
}

.report-identity strong {
  background: var(--navy);
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 3px 8px;
}

.report-date {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: .06em;
  margin: 25px 0 0;
}

.report-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.33;
  margin: 25px 0 0;
  max-width: 840px;
}

.report-dek {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.8;
  margin: 20px 0 0;
  max-width: 800px;
}

.report-trust {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 25px;
}

.market-snapshot {
  border-bottom: 1px solid var(--line-dark);
  padding: 31px 0 0;
}

.snapshot-heading,
.module-heading {
  align-items: flex-end;
  display: flex;
  gap: 35px;
  justify-content: space-between;
}

.snapshot-heading h2,
.module-heading h2 {
  font-family: var(--serif);
  font-size: clamp(25px, 3.4vw, 36px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.4;
  margin: 6px 0 0;
}

.snapshot-heading > p,
.module-heading > p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 6px;
  max-width: 310px;
  text-align: right;
}

.module-heading > p {
  flex-shrink: 0;
  max-width: none;
  white-space: nowrap;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 25px;
}

.snapshot-cell {
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 158px;
  padding: 19px 16px 17px;
  position: relative;
}

.snapshot-cell::before {
  background: var(--ink-soft);
  content: "";
  height: 3px;
  left: 16px;
  position: absolute;
  top: 0;
  width: 20px;
}

.snapshot-cell:first-child {
  border-left: 0;
  padding-left: 0;
}

.snapshot-cell:first-child::before {
  left: 0;
}

.snapshot-cell.tone-positive::before { background: var(--teal); }
.snapshot-cell.tone-watch::before { background: var(--brass); }
.snapshot-cell.tone-negative::before { background: var(--brick); }

.snapshot-cell.tone-positive > strong { color: var(--teal); }
.snapshot-cell.tone-watch > strong { color: #805d2e; }
.snapshot-cell.tone-negative > strong { color: var(--brick); }

.snapshot-cell > span {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 12px;
  gap: 6px;
  letter-spacing: .04em;
}

.snapshot-cell > strong {
  font-family: var(--serif);
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 13px;
}

.snapshot-cell > small {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
  margin-top: auto;
}

.report-jump {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  min-height: 47px;
  overflow-x: auto;
  white-space: nowrap;
}

.report-jump::before {
  color: var(--brass);
  content: "QUICK NAV";
  font-size: 12px;
  letter-spacing: .16em;
}

.report-jump a {
  color: var(--ink-soft);
  font-size: 13px;
}

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

.report-trust > span:not(.stance) {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .06em;
}

.one-minute {
  background:
    linear-gradient(90deg, rgba(16, 39, 51, .035), transparent 50%),
    var(--white);
  border-left: 3px solid var(--brass);
  display: grid;
  gap: 33px 40px;
  grid-template-columns: 210px minmax(0, 1fr);
  margin-top: 34px;
  padding: 33px 36px;
}

.one-minute-title h2 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  margin: 0;
}

.one-minute-headline {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
}

.one-minute dl {
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  margin: 0;
}

.one-minute dl > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 105px minmax(0, 1fr);
  padding: 14px 0;
}

.one-minute .summary-row {
  position: relative;
}

.one-minute .summary-verdict dt { color: var(--navy); }
.one-minute .summary-why dt { color: var(--brass); }

.one-minute .summary-confirm dt { color: var(--teal); }
.one-minute .summary-invalidate dt { color: var(--brick); }

.one-minute dt {
  color: var(--brass);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
}

.one-minute dd {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.key-numbers {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.number-cell {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 158px;
  padding: 23px 18px;
}

.number-cell:last-child {
  border-right: 0;
}

.number-cell span {
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: .08em;
}

.number-cell strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  margin-top: 14px;
}

.number-cell small {
  color: var(--brass);
  font-size: 12px;
  margin-top: auto;
}

.ad-slot {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex;
  justify-content: center;
  margin: 38px 0 48px;
  min-height: 96px;
  text-align: center;
}

.ad-slot span {
  font-size: 12px;
  letter-spacing: .18em;
}

.ad-slot p {
  display: none;
}

.report-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 52px 0;
}

.report-body {
  margin: 0 auto;
  max-width: 890px;
}

.research-module {
  border-top: 2px solid var(--ink);
  padding: 38px 0 58px;
  scroll-margin-top: 20px;
}

.price-analysis-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr);
  margin-top: 28px;
}

.price-chart-card,
.checkpoint-panel,
.timeline-panel,
.data-panel {
  background: rgba(255, 253, 248, .58);
  border: 1px solid var(--line);
  margin: 0;
  min-width: 0;
}

.price-chart-card figcaption {
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 20px 14px;
}

.price-chart-card h3,
.subheading h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin: 3px 0 0;
}

.price-chart-card figcaption > span,
.subheading > span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-align: right;
}

.price-chart-viewport {
  overflow: hidden;
  scrollbar-color: rgba(16, 39, 51, .26) transparent;
  scrollbar-width: thin;
}

.price-chart-viewport:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.price-chart {
  color: var(--teal);
  display: block;
  height: auto;
  overflow: visible;
  width: 100%;
}

.chart-grid line {
  stroke: var(--line);
  stroke-width: 1;
}

.chart-grid text,
.chart-x-label {
  fill: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13px;
}

.chart-grid text {
  dominant-baseline: middle;
  text-anchor: end;
}

.chart-x-label { text-anchor: middle; }

.chart-area { fill: url(#price-area); }

.chart-line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.chart-event-stem {
  stroke: rgba(74, 83, 86, .36);
  stroke-dasharray: 3 5;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.chart-point {
  color: var(--ink-soft);
}

.chart-point.is-last {
  color: var(--navy);
}

.chart-point.tone-positive { color: var(--teal); }
.chart-point.tone-watch { color: var(--brass); }
.chart-point.tone-negative { color: var(--brick); }

.chart-point circle {
  fill: var(--white);
  stroke: currentColor;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.chart-point.is-peak circle,
.chart-point.is-trough circle,
.chart-point.is-last circle {
  stroke-width: 3;
}

.chart-value-label {
  fill: var(--ink-soft);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}

.chart-point.is-peak .chart-value-label,
.chart-point.is-trough .chart-value-label,
.chart-point.is-last .chart-value-label {
  fill: var(--ink);
  font-weight: 700;
}

.chart-caption {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
  padding: 12px 20px 14px;
}

.inline-sources {
  display: inline-flex;
  gap: 3px;
  margin-left: 6px;
  vertical-align: baseline;
}

.inline-sources a {
  border: 1px solid rgba(154, 118, 66, .38);
  color: var(--brass);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  padding: 1px 4px;
}

.price-levels {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.price-levels-head {
  color: var(--ink-soft);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  letter-spacing: .13em;
  padding: 10px 0;
}

.price-level {
  border-top: 1px solid var(--line);
  padding: 17px 14px 17px 17px;
  position: relative;
}

.price-level::before {
  background: var(--ink-soft);
  bottom: 14px;
  content: "";
  left: 0;
  position: absolute;
  top: 14px;
  width: 3px;
}

.price-level.tone-positive::before { background: var(--teal); }
.price-level.tone-watch::before { background: var(--brass); }
.price-level.tone-negative::before { background: var(--brick); }

.price-level.tone-positive strong { color: var(--teal); }
.price-level.tone-watch strong { color: #805d2e; }
.price-level.tone-negative strong { color: var(--brick); }

.price-level > div {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

.price-level strong {
  font-family: var(--serif);
  font-size: 17px;
}

.price-level span {
  color: var(--brass);
  font-size: 12px;
}

.price-level p,
.price-level small {
  color: var(--ink-soft);
  display: block;
  font-size: 13px;
  line-height: 1.65;
  margin: 6px 0 0;
}

.checkpoint-panel,
.timeline-panel,
.financial-grid {
  margin-top: 28px;
}

.subheading {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 15px 18px;
}

.table-wrap {
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.research-table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}

.research-table th,
.research-table td {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.7;
  padding: 15px 14px;
  text-align: left;
  vertical-align: top;
}

.research-table thead th {
  background: rgba(16, 39, 51, .055);
  color: var(--navy-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .035em;
}

.research-table tbody th {
  font-family: var(--serif);
  font-size: 14px;
  white-space: nowrap;
}

.research-table tbody tr:last-child > * { border-bottom: 0; }

.research-table td > strong {
  color: var(--navy);
  font-weight: 700;
}

.signal-badge {
  border: 1px solid var(--line-dark);
  display: inline-block;
  font-size: 12px;
  min-width: 58px;
  padding: 4px 7px;
  text-align: center;
  white-space: nowrap;
}

.signal-badge.tone-positive { border-color: var(--teal); color: var(--teal); }
.signal-badge.tone-watch { border-color: var(--brass); color: var(--brass); }
.signal-badge.tone-negative { border-color: var(--brick); color: var(--brick); }

.thesis-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.thesis-column {
  background: rgba(255, 253, 248, .58);
  border-top: 4px solid var(--teal);
  padding: 22px 24px 20px;
}

.thesis-short { border-color: var(--brick); }

.thesis-title {
  align-items: baseline;
  display: flex;
  gap: 12px;
}

.thesis-title span {
  color: var(--teal);
  font-size: 12px;
  letter-spacing: .13em;
}

.thesis-short .thesis-title span { color: var(--brick); }

.thesis-title h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0;
}

.thesis-column ol {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.thesis-column li {
  border-top: 1px solid var(--line);
  padding: 15px 0 13px;
}

.thesis-column li > strong {
  font-family: var(--serif);
  font-size: 15px;
}

.thesis-long li > strong { color: var(--teal); }
.thesis-short li > strong { color: var(--brick); }

.thesis-column li p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  margin: 5px 0 0;
}

.issue-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.issue-card {
  background: rgba(255, 253, 248, .58);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ink-soft);
  display: flex;
  flex-direction: column;
  min-height: 490px;
  padding: 22px 21px;
}

.issue-card.tone-positive { border-top-color: var(--teal); }
.issue-card.tone-watch { border-top-color: var(--brass); }
.issue-card.tone-negative { border-top-color: var(--brick); }

.issue-card.tone-positive h3 { color: var(--teal); }
.issue-card.tone-watch h3 { color: #805d2e; }
.issue-card.tone-negative h3 { color: var(--brick); }

.issue-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  margin: 9px 0 0;
}

.issue-lead {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  margin: 13px 0 0;
}

.issue-card ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 17px 0 0;
  padding: 8px 0 0;
}

.issue-card li {
  font-size: 13px;
  line-height: 1.65;
  padding: 7px 0 7px 14px;
  position: relative;
}

.issue-card li::before {
  background: var(--brass);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 14px;
  width: 3px;
}

.issue-watch {
  border-top: 1px solid var(--line-dark);
  margin-top: auto;
  padding-top: 12px;
}

.issue-watch span {
  color: var(--brass);
  font-size: 12px;
  letter-spacing: .08em;
}

.issue-watch p {
  font-size: 13px;
  line-height: 1.7;
  margin: 7px 0 0;
}

.timeline-panel ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-panel li {
  border-left: 1px solid var(--line);
  min-height: 150px;
  padding: 18px 15px;
}

.timeline-panel li:first-child { border-left: 0; }

.timeline-date {
  align-items: baseline;
  display: flex;
  gap: 8px;
}

.timeline-date strong {
  font-family: var(--serif);
  font-size: 14px;
}

.timeline-date span {
  color: var(--brass);
  font-size: 12px;
}

.timeline-copy h4 {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  margin: 18px 0 0;
}

.timeline-copy p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
  margin: 6px 0 0;
}

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

.data-panel .research-table { min-width: 640px; }

.section-number {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 13px;
  padding-top: 4px;
}

.section-content h2 {
  font-family: var(--serif);
  font-size: clamp(25px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.45;
  margin: 0 0 25px;
}

.section-content > p:not(.section-kicker) {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2;
  margin: 0 0 18px;
}

.section-content ul {
  background: rgba(255, 253, 248, .62);
  list-style: none;
  margin: 30px 0 0;
  padding: 14px 24px;
}

.section-content li {
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.75;
  padding: 11px 0 11px 17px;
  position: relative;
}

.section-content li:last-child {
  border-bottom: 0;
}

.section-content li::before {
  background: var(--brass);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 20px;
  width: 4px;
}

.scenario-section,
.source-section {
  border-top: 2px solid var(--ink);
  margin-top: 30px;
  padding: 36px 0 60px;
}

.scenario-grid {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.scenario {
  border-right: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  min-height: 210px;
  padding: 25px 22px;
}

.scenario-bear {
  background: linear-gradient(180deg, var(--brick-wash), transparent 48%);
  border-top-color: var(--brick);
}

.scenario-base {
  background: linear-gradient(180deg, var(--navy-wash), transparent 48%);
}

.scenario-bull {
  background: linear-gradient(180deg, var(--teal-wash), transparent 48%);
  border-top-color: var(--teal);
}

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

.scenario-head {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

.scenario-head span {
  font-family: var(--serif);
  font-size: 19px;
}

.scenario-head strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.scenario-bear .scenario-head strong { color: var(--brick); }
.scenario-bull .scenario-head strong { color: var(--teal); }

.scenario p {
  font-size: 14px;
  line-height: 1.8;
  margin: 28px 0 12px;
}

.scenario-target {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 16px 0 10px;
  padding-top: 12px;
}

.scenario-target strong {
  font-family: var(--serif);
  font-size: 16px;
}

.scenario-target span {
  color: var(--brass);
  font-size: 13px;
}

.scenario small {
  color: var(--ink-soft);
  font-size: 12px;
}

.scenario-note {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 13px 0 0;
}

.source-section ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.source-section li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 45px minmax(0, 1fr);
  min-height: 54px;
}

.source-section li > span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 600;
}

.source-section li a,
.source-section li p {
  font-size: 14px;
  margin: 0;
}

.source-section li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ai-disclosure {
  align-items: start;
  background: rgba(16, 39, 51, .06);
  display: grid;
  gap: 30px;
  grid-template-columns: 210px minmax(0, 1fr);
  margin-top: 35px;
  padding: 24px 28px;
}

.ai-disclosure-title span {
  color: var(--brass);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.ai-disclosure-title strong {
  color: var(--navy);
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  margin-top: 5px;
}

.ai-disclosure p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.ai-disclosure p b {
  color: var(--navy);
  font-weight: 700;
}

.report-newsletter {
  margin: 35px 0 0;
}

.engagement {
  background: var(--paper-deep);
  margin-top: 70px;
  padding: 48px 45px 52px;
}

.engagement-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

.engagement-heading h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin: 0;
}

.engagement-heading > p {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0 0 4px;
}

.reaction-row {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 27px;
}

.reaction-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 82px;
  justify-content: center;
}

.reaction-button:last-child {
  border-right: 0;
}

.reaction-button:hover,
.reaction-button.is-selected {
  background: rgba(255, 253, 248, .55);
}

.reaction-button span {
  font-size: 13px;
}

.reaction-button strong {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.comment-form {
  border-bottom: 1px solid var(--line-dark);
  padding: 34px 0;
}

.comment-form-top {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.comment-form label {
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 6px;
  letter-spacing: .08em;
}

.comment-form input,
.comment-form textarea {
  background: rgba(255, 253, 248, .52);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  padding: 11px 12px;
  resize: vertical;
}

.comment-form textarea {
  font-size: 16px;
  line-height: 1.7;
}

.comment-body-label {
  margin-top: 17px;
}

.comment-form-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
}

.comment-form-bottom p {
  color: var(--ink-soft);
  font-size: 12px;
  margin: 0;
}

.comment-form-bottom button {
  background: var(--navy);
  border: 0;
  color: var(--paper);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .1em;
  padding: 10px 25px;
}

.comment-form .form-status {
  color: var(--brick);
}

.comment-form .form-status.is-success {
  color: var(--teal);
}

.comments-list {
  border-top: 0;
}

.comment {
  border-bottom: 1px solid var(--line);
  padding: 25px 0 21px;
}

.comment header {
  align-items: baseline;
  display: flex;
  gap: 12px;
}

.comment header strong {
  font-family: var(--serif);
  font-size: 15px;
}

.comment header time {
  color: var(--ink-soft);
  font-size: 12px;
}

.comment > p {
  font-size: 15px;
  line-height: 1.8;
  margin: 10px 0 12px;
  white-space: pre-wrap;
}

.comment-actions {
  display: flex;
  gap: 13px;
}

.comment-actions button {
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 12px;
  padding: 0;
}

.comment-actions button:hover {
  color: var(--brick);
}

.comments-loading,
.comments-empty {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 15px;
  margin: 0;
  padding: 26px 0 0;
}

.report-return {
  border-bottom: 1px solid var(--ink);
  border-top: 1px solid var(--ink);
  margin-top: 70px;
}

.report-return a {
  align-items: center;
  display: flex;
  gap: 18px;
  min-height: 78px;
}

.report-return span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 24px;
}

.report-return strong {
  font-family: var(--serif);
  font-size: 16px;
}

.turnstile-holder {
  bottom: 20px;
  left: 20px;
  pointer-events: auto;
  position: fixed;
  z-index: 100;
}

.not-found {
  margin: 18vh auto;
  max-width: 760px;
  padding: 30px;
}

.not-found h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 400;
  line-height: 1.35;
}

.not-found > p:not(.section-kicker) {
  color: var(--ink-soft);
}

.not-found a {
  border-bottom: 1px solid var(--ink);
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 5px;
}

.policy-page {
  margin: 0 auto;
  max-width: 760px;
  padding: 80px 30px 120px;
}

.policy-back {
  border-bottom: 1px solid var(--line-dark);
  display: inline-block;
  font-size: 9px;
  letter-spacing: .15em;
  margin-bottom: 80px;
  padding-bottom: 5px;
}

.policy-page h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1.3;
  margin: 0;
}

.policy-lede {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.9;
  margin: 30px 0 70px;
}

.policy-page section {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.policy-page section h2 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 12px;
}

.policy-page section p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}

/* Admin */

.admin-page {
  background: #0e2029;
  color: #eef0ea;
}

.admin-shell {
  margin: 0 auto;
  max-width: 1200px;
  padding: 70px 35px 100px;
}

.admin-header {
  align-items: flex-end;
  border-bottom: 1px solid rgba(238, 240, 234, .3);
  display: flex;
  justify-content: space-between;
  padding-bottom: 35px;
}

.admin-header h1 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  margin: 0;
}

.admin-header > div > p:last-child {
  color: rgba(238, 240, 234, .58);
  font-size: 12px;
  margin: 8px 0 0;
}

.admin-header > a {
  border-bottom: 1px solid rgba(238, 240, 234, .5);
  font-size: 10px;
  letter-spacing: .14em;
  padding-bottom: 4px;
}

.admin-tabs {
  border-bottom: 1px solid rgba(238, 240, 234, .18);
  display: flex;
  gap: 30px;
  margin-top: 35px;
}

.admin-tabs button {
  background: transparent;
  border: 0;
  color: rgba(238, 240, 234, .5);
  cursor: pointer;
  font-size: 12px;
  padding: 0 0 14px;
  position: relative;
}

.admin-tabs button.is-active {
  color: #fff;
}

.admin-tabs button.is-active::after {
  background: #c69b5a;
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.admin-panel {
  display: none;
  margin-top: 45px;
}

.admin-panel.is-active {
  display: block;
}

.admin-panel-heading {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.admin-panel-heading h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.admin-panel-heading span {
  color: rgba(238, 240, 234, .45);
  font-size: 9px;
  letter-spacing: .16em;
}

.admin-table {
  border-top: 1px solid rgba(238, 240, 234, .35);
}

.admin-loading {
  color: rgba(238, 240, 234, .55);
  padding: 30px 0;
}

.admin-row {
  align-items: center;
  border-bottom: 1px solid rgba(238, 240, 234, .12);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(190px, .8fr) minmax(160px, .7fr) minmax(300px, 1.2fr);
  min-height: 93px;
}

.admin-identity {
  display: grid;
  grid-template-columns: 85px 1fr;
}

.admin-identity span {
  color: #c69b5a;
  font-size: 9px;
  letter-spacing: .1em;
}

.admin-identity strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
}

.admin-identity small {
  color: rgba(238, 240, 234, .4);
  font-size: 9px;
  grid-column: 2;
}

.admin-status {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-status span {
  color: #b9cfca;
  font-size: 9px;
}

.admin-status .quality-blocked {
  color: #d88d83;
}

.admin-status strong {
  font-size: 10px;
  letter-spacing: .12em;
}

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

.admin-actions button,
.admin-actions a {
  background: transparent;
  border: 1px solid rgba(238, 240, 234, .25);
  color: #eef0ea;
  cursor: pointer;
  font-size: 9px;
  padding: 7px 10px;
}

.admin-actions button:hover,
.admin-actions a:hover {
  border-color: #c69b5a;
}

.admin-actions button:disabled {
  cursor: default;
  opacity: .35;
}

.admin-actions .is-danger {
  color: #e6a69d;
}

.admin-comment-row {
  grid-template-columns: 190px minmax(280px, 1fr) minmax(250px, auto);
  padding: 18px 0;
}

.admin-comment-body p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.admin-comment-body span {
  color: rgba(238, 240, 234, .45);
  font-size: 9px;
}

@media (max-width: 820px) {
  .site-shell {
    padding: 0 20px;
  }

  .site-header {
    height: 78px;
  }

  .brand-symbol {
    height: 40px;
    width: 40px;
  }

  .masthead {
    gap: 11px;
  }

  .masthead-copy strong {
    font-size: 20px;
    gap: 6px;
  }

  .masthead-copy small,
  .search-link span {
    display: none;
  }

  .issue-intro {
    gap: 25px;
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: auto;
    padding: 60px 0 70px;
  }

  .issue-rail {
    min-height: 270px;
  }

  .issue-rail strong {
    font-size: 23px;
  }

  .issue-lede h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .issue-lede > p:not(.section-kicker) {
    font-size: 15px;
  }

  .issue-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 35px;
  }

  .feed-item {
    gap: 15px;
    grid-template-columns: 47px minmax(0, 1fr);
    min-height: 0;
  }

  .feed-date {
    padding-top: 28px;
  }

  .feed-date strong {
    font-size: 23px;
  }

  .feed-content {
    padding: 25px 0 20px;
  }

  .feed-content h3 {
    font-size: 23px;
  }

  .feed-dek {
    font-size: 12px;
  }

  .feed-meta {
    align-items: center;
    border-left: 0;
    display: flex;
    flex-direction: row;
    grid-column: 2;
    justify-content: flex-start;
    padding: 0 0 25px;
  }

  .feed-arrow {
    margin: 0 0 0 auto;
  }

  .newsletter-band {
    gap: 30px;
    grid-template-columns: 1fr;
    margin: 0 -20px;
    padding: 42px 25px;
  }

  .archive-list a {
    gap: 13px;
    grid-template-columns: 50px 100px minmax(0, 1fr);
    padding: 15px 0;
  }

  .archive-list i {
    display: none;
  }

  .archive-list > a > span {
    font-size: 13px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }

  .report-article {
    padding: 34px 0 80px;
  }

  .report-hero h1 {
    font-size: clamp(35px, 9vw, 43px);
    line-height: 1.25;
    margin-top: 17px;
  }

  .report-date {
    margin-top: 16px;
  }

  .report-dek {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
  }

  .report-trust {
    margin-top: 19px;
  }

  .report-hero {
    padding-bottom: 27px;
  }

  .market-snapshot {
    padding-top: 25px;
  }

  .snapshot-heading h2,
  .module-heading h2 {
    font-size: clamp(27px, 7.5vw, 32px);
  }

  .snapshot-heading,
  .module-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .snapshot-heading > p,
  .module-heading > p {
    max-width: none;
    text-align: left;
  }

  .module-heading > p {
    white-space: normal;
  }

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

  .snapshot-cell {
    border-bottom: 1px solid var(--line);
    min-height: 115px;
  }

  .snapshot-cell:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .snapshot-cell:nth-child(odd)::before {
    left: 0;
  }

  .snapshot-cell:last-child {
    grid-column: 1 / -1;
  }

  .report-jump {
    gap: 18px;
  }

  .one-minute {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 32px 25px;
  }

  .one-minute dl {
    grid-column: 1;
  }

  .one-minute dl > div {
    grid-template-columns: 83px minmax(0, 1fr);
  }

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

  .research-module {
    padding: 34px 0 48px;
  }

  .price-analysis-grid,
  .financial-grid,
  .thesis-grid {
    grid-template-columns: 1fr;
  }

  .price-chart-viewport {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .price-chart {
    min-width: 650px;
  }

  .price-levels {
    margin-top: 4px;
  }

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

  .issue-card {
    min-height: 0;
  }

  .timeline-panel ol {
    grid-template-columns: 1fr;
  }

  .timeline-panel li {
    border-left: 0;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 20px;
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 0;
  }

  .timeline-panel li:first-child { border-top: 0; }
  .timeline-copy h4 { margin-top: 0; }

  .number-cell:nth-child(2) {
    border-right: 0;
  }

  .number-cell:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .scenario {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 0;
  }

  .ai-disclosure {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .engagement {
    margin-left: -20px;
    margin-right: -20px;
    padding: 38px 20px 45px;
  }

  .engagement-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .reaction-button:nth-child(2) {
    border-right: 0;
  }

  .reaction-button:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .admin-shell {
    padding: 42px 20px 80px;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .admin-row,
  .admin-comment-row {
    gap: 16px;
    grid-template-columns: 1fr;
    padding: 23px 0;
  }

  .admin-actions {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .text-emphasis {
    white-space: normal;
  }

  .glossary-popover {
    bottom: 18px;
    left: 20px;
    max-width: none;
    position: fixed;
    right: 20px;
    top: auto;
    transform: translateY(10px);
    width: auto;
  }

  .glossary-popover:popover-open {
    bottom: 18px;
    left: 20px;
    right: 20px;
    top: auto;
    transform: none;
    width: auto;
  }

  .glossary-popover::after {
    display: none;
  }

  @supports not selector(:popover-open) {
    .glossary-term:hover .glossary-popover,
    .glossary-term:focus .glossary-popover {
      transform: translateY(0);
    }
  }

  .edition-heading,
  .archive-heading,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .edition-heading > p,
  .archive-heading > p {
    text-align: left;
  }

  .issue-lede h1 {
    letter-spacing: -.07em;
  }

  .archive-list a {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .archive-list strong {
    font-size: 13px;
  }

  .archive-list > a > span {
    grid-column: 2;
  }

  .report-section {
    gap: 12px;
    grid-template-columns: 25px minmax(0, 1fr);
  }

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

  .snapshot-cell,
  .snapshot-cell:nth-child(odd) {
    border-left: 0;
    grid-column: 1;
    padding-left: 0;
  }

  .snapshot-cell::before,
  .snapshot-cell:nth-child(odd)::before {
    left: 0;
  }

  .price-chart-card figcaption,
  .subheading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .price-chart-card figcaption > span {
    text-align: left;
  }

  .timeline-panel li {
    gap: 10px;
    grid-template-columns: 1fr;
  }

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

  .comment-form-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .comment-form-bottom button {
    width: 100%;
  }

  .search-dialog-inner {
    padding: 45px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
