.article-template-page {
  --article-max: 800px;
  --article-panel: #EEE7D8;
  --article-line: #DDD2BC;
  --article-line-strong: #C8B99A;
  --article-hero: var(--deep);
  --article-hero-secondary: var(--deep2);
  --article-hero-tertiary: #315954;
  --article-deep: #16302C;
  --article-mid: #344845;
  --article-soft: #748884;
}

.article-template-page .main {
  padding-top: 58px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 26px;
  opacity: 0;
  animation: article-fade-up 0.7s ease 0.08s forwards;
}

.article-breadcrumb li {
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(238, 231, 216, 0.62);
}

.article-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.article-breadcrumb a:hover {
  color: rgba(var(--accent3-rgb), 0.92);
}

.article-breadcrumb-sep {
  color: rgba(138, 160, 156, 0.48);
}

.article-breadcrumb li:last-child {
  color: rgba(var(--accent3-rgb), 0.9);
}

.art-hero {
  background:
    radial-gradient(circle at top right, rgba(61, 110, 104, 0.2), transparent 32%),
    radial-gradient(circle at bottom left, rgba(var(--accent3-rgb), 0.08), transparent 34%),
    linear-gradient(135deg, var(--article-hero) 0%, var(--article-hero-secondary) 58%, var(--article-hero-tertiary) 100%);
  padding: 86px 60px 0;
  position: relative;
  overflow: hidden;
}

.art-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent3), rgba(var(--accent3-rgb), 0.8) 30%, transparent 65%);
}

.art-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  bottom: -240px;
  right: -180px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent3-rgb), 0.06), transparent 60%);
}

.art-hero-inner {
  position: relative;
  z-index: 1;
}

.art-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.024em;
  color: var(--parchment);
  max-width: 1120px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  opacity: 0;
  animation: article-fade-up 1.1s ease 0.24s forwards;
}

.art-title em {
  font-style: italic;
  color: rgba(var(--accent3-rgb), 0.96);
}

.art-deck {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  font-style: normal;
  color: rgba(238, 231, 216, 0.9);
  line-height: 1.78;
  letter-spacing: 0.01em;
  max-width: 900px;
  margin-top: 36px;
  opacity: 0;
  animation: article-fade-up 0.9s ease 0.4s forwards;
}

.art-deck strong {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 400;
  color: var(--parchment);
}

.hero-summary {
  max-width: none;
  margin: 0 0 36px;
  padding: 22px 24px 24px;
  border: 1px solid var(--article-line);
  border-left: 3px solid rgba(var(--accent3-rgb), 0.92);
  background: var(--article-panel);
}

.hero-summary-label {
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(var(--accent3-rgb), 0.96);
  margin-bottom: 12px;
}

.hero-summary-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.82;
  margin: 0;
}

.hero-summary-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
}

.hero-summary-list li {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--article-line);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--article-mid);
}

.hero-summary-list strong {
  font-weight: 400;
  color: var(--ink);
}

.author-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0 0;
  margin-top: 38px;
  border-top: 1px solid rgba(246, 241, 233, 0.05);
  opacity: 0;
  animation: article-fade-up 0.8s ease 0.52s forwards;
}

.author-left {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  min-width: 0;
  flex: 1 1 auto;
}

.author-av {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(var(--accent3-rgb), 0.24);
  background: rgba(238, 231, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.author-av-initials {
  font-family: 'Cormorant', serif;
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: rgba(var(--accent3-rgb), 0.88);
}

.author-av img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  max-width: 620px;
}

.author-kicker {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--accent3-rgb), 0.96);
  margin-bottom: 10px;
}

.author-name {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--parchment);
  line-height: 1;
}

.author-name-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.author-name-link:hover {
  color: rgba(var(--accent3-rgb), 0.92);
  border-color: rgba(var(--accent3-rgb), 0.34);
}

.author-role {
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(228, 217, 197, 0.72);
  line-height: 1.55;
  margin-top: 7px;
}

.author-role a {
  color: rgba(var(--accent3-rgb), 0.96);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent3-rgb), 0.3);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.author-role a:hover {
  color: var(--parchment);
  border-color: rgba(var(--accent3-rgb), 0.72);
}

.author-proof {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(238, 231, 216, 0.94);
  margin-top: 10px;
  max-width: 620px;
}

.author-proof time {
  color: rgba(var(--accent3-rgb), 0.96);
}

.author-proof a {
  color: rgba(var(--accent3-rgb), 0.96);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent3-rgb), 0.28);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.author-proof a:hover {
  color: var(--parchment);
  border-color: rgba(var(--accent3-rgb), 0.72);
}

.author-right {
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
  padding: 8px 0 3px 22px;
  border-left: 1px solid rgba(var(--accent3-rgb), 0.16);
}

.ar-stat {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 118px;
}

.ar-stat + .ar-stat {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(var(--accent3-rgb), 0.14);
}

.ar-stat-n {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 300;
  color: rgba(246, 241, 233, 0.98);
  line-height: 1;
}

.ar-stat-n-text {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.3;
  max-width: 180px;
}

.ar-stat-l {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--accent3-rgb), 0.94);
  order: -1;
}

.hero-footer {
  display: none;
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, var(--article-max)) minmax(184px, 0.68fr);
  gap: 0;
  padding: 0 60px 0 calc(60px + 1vw);
  align-items: start;
}

.art-body {
  padding: 64px 40px 80px 0;
  border-right: 1px solid var(--article-line);
}

.article-cover {
  margin: 0 0 36px;
  border: 1px solid var(--article-line);
  background: var(--article-panel);
  overflow: hidden;
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.article-figure {
  margin: 30px 0 36px;
  border: 1px solid var(--article-line);
  background: var(--article-panel);
  overflow: hidden;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .article-figure-narrow {
    width: min(420px, 62%);
    margin-left: auto;
    margin-right: auto;
  }
}

.art-toc {
  padding: 64px 0 80px 18px;
  align-self: stretch;
}

.toc-inner {
  position: sticky;
  top: calc(58px + 32px);
}

.toc-label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--article-mid);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--article-line);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.toc-item a {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: 13px;
  font-weight: 300;
  color: var(--article-mid);
  text-decoration: none;
  border-left: 2px solid var(--article-line);
  line-height: 1.5;
  transition: color 0.25s, border-color 0.25s;
}

.toc-item a:hover {
  color: var(--article-deep);
  border-color: var(--accent3);
}

.toc-item.active a {
  color: var(--accent3);
  border-color: var(--accent3);
  font-weight: 400;
}

.art-body h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 56px 0 20px;
  padding-top: 56px;
  border-top: 1px solid var(--article-line);
}

.art-body h3 {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin: 36px 0 14px;
}

.art-body p {
  font-size: 16.5px;
  font-weight: 300;
  color: var(--article-mid);
  line-height: 2;
  margin-bottom: 20px;
}

.art-body p strong {
  font-weight: 400;
  color: var(--ink);
}

.art-body p em {
  font-style: italic;
}

.art-body a {
  color: var(--accent3);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent3-rgb), 0.3);
}

.art-body a:hover {
  border-color: var(--accent3);
}

.art-body .lead::first-letter {
  font-family: 'Cormorant', serif;
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  float: left;
  line-height: 0.76;
  margin-right: 10px;
  margin-top: 8px;
  color: var(--accent3);
}

.art-body .lead {
  font-size: 17.5px;
  line-height: 1.92;
  font-weight: 300;
  color: var(--article-mid);
}

.art-body .article-focus-line {
  margin: 8px 0 28px;
  padding-left: 18px;
  border-left: 2px solid rgba(var(--accent3-rgb), 0.45);
  font-family: 'Cormorant', serif;
  font-size: clamp(21px, 2.3vw, 25px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
}

.pull-quote {
  margin: 44px -28px;
  padding: 28px 32px;
  border-left: 3px solid var(--accent3);
  background: var(--article-panel);
  position: relative;
}

.pull-quote::before {
  content: '\201C';
  font-family: 'Cormorant', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(var(--accent3-rgb), 0.15);
  line-height: 0;
  position: absolute;
  top: 28px;
  left: 18px;
}

.pq-text {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.pq-attr {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lt);
  margin-top: 12px;
  display: block;
}

.key-fact {
  margin: 36px 0;
  padding: 24px 28px;
  border: 1px solid var(--article-line);
  background: var(--parchment);
}

.kf-label {
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent3);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kf-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent3);
}

.kf-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--article-mid);
  line-height: 1.85;
}

.kf-body strong {
  font-weight: 400;
  color: var(--ink);
}

.art-body ol {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  counter-reset: article-ol;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.art-body ol li {
  counter-increment: article-ol;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid var(--article-line);
  font-size: 15.5px;
  font-weight: 300;
  color: var(--article-mid);
  line-height: 1.75;
  position: relative;
}

.art-body ol li:first-child {
  border-top: 1px solid var(--article-line);
}

.art-body ol li::before {
  content: counter(article-ol, decimal-leading-zero);
  font-family: 'Cormorant', serif;
  font-size: 11px;
  font-style: italic;
  color: rgba(var(--accent3-rgb), 0.76);
  position: absolute;
  left: 0;
  top: 13px;
  letter-spacing: 0.08em;
}

.art-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.art-body ul li {
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--article-line);
  font-size: 15.5px;
  font-weight: 300;
  color: var(--article-mid);
  line-height: 1.8;
  position: relative;
}

.art-body ul li:first-child {
  border-top: 1px solid var(--article-line);
}

.art-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 6px;
  height: 1px;
  background: var(--accent3);
}

sup.fn {
  font-size: 0.6em;
  color: rgba(var(--accent3-rgb), 0.82);
  vertical-align: super;
  font-family: 'Cormorant', serif;
  font-style: italic;
}

.footnotes {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--article-line);
}

.fn-title {
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lt);
  margin-bottom: 14px;
}

.fn-item {
  font-size: 12px;
  font-weight: 200;
  color: var(--lt);
  line-height: 1.75;
  padding: 6px 0;
  border-bottom: 1px solid var(--article-line);
  display: flex;
  gap: 12px;
}

.fn-item:last-child {
  border-bottom: none;
}

.fn-num {
  font-family: 'Cormorant', serif;
  font-style: italic;
  color: rgba(var(--accent3-rgb), 0.76);
  flex-shrink: 0;
  font-size: 13px;
  width: 16px;
}

.art-divider {
  text-align: center;
  margin: 48px 0;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--article-line-strong);
  letter-spacing: 0.3em;
  user-select: none;
}

.science-box {
  margin: 36px -28px;
  padding: 28px 32px;
  border: 1px solid var(--article-line);
  border-left: 3px solid var(--deep3);
  background: var(--article-panel);
}

.sb-label {
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--deep3);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sb-label::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--deep3);
}

.sb-body {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--article-mid);
  line-height: 1.85;
}

.sb-body strong {
  font-weight: 400;
  color: var(--ink);
}

.cta-panel {
  margin: 44px 0 0;
  padding: 28px 32px;
  border: 1px solid rgba(var(--accent3-rgb), 0.22);
  background:
    linear-gradient(135deg, rgba(var(--accent3-rgb), 0.08), rgba(24, 48, 45, 0.02)),
    var(--article-panel);
}

.cta-panel-title {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}

.cta-panel-text {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--article-mid);
  line-height: 1.85;
}

.cta-panel-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-panel-primary,
.cta-panel-secondary {
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}

.cta-panel-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  background: var(--accent3);
  color: var(--parchment);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-panel-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  color: var(--accent3);
  border-bottom: 1px solid rgba(var(--accent3-rgb), 0.3);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.art-body .cta-panel-primary {
  color: var(--parchment);
  border-bottom: 0;
}

.art-body .cta-panel-primary:hover {
  color: var(--parchment);
  border-bottom: 0;
}

.art-body .cta-panel-secondary {
  color: var(--accent3);
}

.cta-panel-primary:hover,
.cta-panel-secondary:hover {
  transform: translateY(-1px);
}

.cta-panel-secondary:hover {
  border-color: var(--accent3);
}

.faq-section {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--article-line);
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--article-line);
  background: var(--parchment);
}

.faq-question {
  list-style: none;
  padding: 18px 22px;
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--accent3);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.bibliography-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bibliography-item {
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--article-line);
  color: var(--article-mid);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  position: relative;
}

.bibliography-item:first-child {
  border-top: 1px solid var(--article-line);
}

.bibliography-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 8px;
  height: 1px;
  background: var(--accent3);
}

.author-bio {
  background: var(--article-panel);
  padding: 52px 60px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  align-items: start;
  border-top: 1px solid var(--article-line);
  border-bottom: 1px solid var(--article-line);
}

.bio-av {
  width: 80px;
  height: 80px;
  border: 1px solid var(--article-line);
  background: rgba(var(--accent3-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.bio-av-i {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--accent3);
}

.bio-av img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.bio-name {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.bio-role {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lt);
  margin-bottom: 14px;
}

.bio-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--article-mid);
  line-height: 1.9;
  max-width: 560px;
}

.bio-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.bio-link {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent3);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--accent3-rgb), 0.3);
  padding-bottom: 1px;
  transition: border-color 0.25s;
}

.bio-link:hover {
  border-color: var(--accent3);
}

.related {
  padding: 72px 60px 80px;
  border-bottom: 1px solid var(--article-line);
}

.rel-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.rel-rule {
  width: 24px;
  height: 1px;
  background: var(--accent3);
  flex-shrink: 0;
}

.rel-lbl {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent3);
}

.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.rel-card {
  text-decoration: none;
  background: var(--article-panel);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.28s ease;
}

.rel-card:hover {
  background: var(--article-line);
}

.rel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.rel-card:hover::before {
  transform: scaleX(1);
}

.rc-cat {
  font-size: 7.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--accent3-rgb), 0.82);
  margin-bottom: 10px;
  display: block;
}

.rc-title {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
  transition: color 0.25s;
}

.rel-card:hover .rc-title {
  color: var(--article-deep);
}

.rc-deck {
  font-size: 14px;
  font-weight: 300;
  color: var(--article-mid);
  line-height: 1.78;
  margin-bottom: 16px;
}

.rc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--article-line);
  margin-top: auto;
}

.rc-date,
.rc-rt {
  font-size: 9px;
  font-weight: 200;
  color: var(--article-line-strong);
  letter-spacing: 0.06em;
}

.rc-arr {
  font-size: 16px;
  color: var(--article-line-strong);
  transition: color 0.25s, transform 0.3s ease;
  position: absolute;
  bottom: 22px;
  right: 22px;
}

.rel-card:hover .rc-arr {
  color: var(--accent3);
  transform: translateX(4px);
}

.toc-mobile-toggle,
.toc-mobile-backdrop,
.toc-mobile-head {
  display: none;
}

.sr {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.sr.v {
  opacity: 1;
  transform: none;
}

@keyframes article-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1280px) {
  .article-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(184px, 0.32fr);
    padding-right: 40px;
    padding-left: 40px;
  }

  .art-hero,
  .author-bio,
  .related {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1080px) {
  .article-wrap {
    grid-template-columns: minmax(0, 1fr);
    padding-right: 32px;
    padding-left: 32px;
  }

  .art-body {
    padding-right: 0;
    border-right: 0;
  }

  .art-toc {
    display: block;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 0;
    max-height: min(78vh, 560px);
    background: rgba(246, 241, 233, 0.98);
    border: 1px solid rgba(24, 48, 45, 0.08);
    box-shadow: 0 24px 48px rgba(7, 13, 12, 0.18);
    border-radius: 20px;
    transform: translateY(calc(100% + 32px));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 720;
  }

  .toc-inner {
    position: static;
    top: auto;
    max-height: min(78vh, 560px);
    padding: 22px 20px 20px;
    overflow: auto;
  }

  .toc-mobile-toggle {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 710;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 12px 16px;
    border: 1px solid rgba(var(--accent3-rgb), 0.28);
    border-radius: 999px;
    background: rgba(24, 48, 45, 0.96);
    color: var(--parchment);
    box-shadow: 0 18px 36px rgba(7, 13, 12, 0.22);
    font: inherit;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: none;
  }

  .toc-mobile-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 700;
    background: rgba(6, 13, 11, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .toc-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--article-line);
  }

.toc-mobile-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--article-mid);
}

  .toc-mobile-close {
    border: 0;
    background: transparent;
    color: var(--accent3);
    font: inherit;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: none;
  }

  body.toc-mobile-open {
    overflow: hidden;
  }

  body.toc-mobile-open .art-toc {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.toc-mobile-open .toc-mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

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

@media (max-width: 960px) {
  .article-template-page .main {
    padding-top: 0;
  }

  .art-hero {
    padding: 34px 22px 0;
  }

  .article-breadcrumb {
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .art-title {
    font-size: clamp(34px, 9.8vw, 54px);
    line-height: 1.08;
  }

  .art-deck {
    font-size: 16.5px;
    line-height: 1.72;
    margin-top: 28px;
  }

  .hero-summary {
    margin-bottom: 28px;
    padding: 20px 20px 22px;
  }

  .article-cover {
    margin-bottom: 28px;
  }

  .article-figure {
    margin: 24px 0 28px;
  }

  .hero-summary-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .author-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-top: 30px;
    padding-top: 18px;
  }

  .author-right {
    justify-self: auto;
    padding-left: 0;
    border-left: 0;
    gap: 0;
    align-self: flex-start;
  }

  .ar-stat + .ar-stat {
    margin-left: 18px;
    padding-left: 18px;
  }

  .article-wrap {
    padding: 0 22px;
  }

  .pull-quote,
  .science-box {
    margin-left: 0;
    margin-right: 0;
  }

  .cta-panel {
    padding: 24px 22px;
  }

  .faq-question {
    font-size: 20px;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .author-bio,
  .related {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 720px) {
  .author-left {
    gap: 18px;
  }

  .author-name {
    font-size: 23px;
  }

  .hero-summary-text {
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-summary-list li {
    font-size: 13px;
    line-height: 1.65;
  }

  .author-right {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .ar-stat + .ar-stat {
    margin-left: 0;
  }

  .ar-stat {
    min-width: 140px;
  }

  .ar-stat-n-text {
    max-width: none;
  }

  .author-bio {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .art-body p,
  .art-body .lead {
    font-size: 15.5px;
    line-height: 1.9;
  }

  .art-body .lead::first-letter {
    font-size: 60px;
    margin-top: 6px;
  }
}
