@font-face {
  font-family: "Plex Sans Local";
  src: url("/vortexul-polar/assets/PlexSans.ae1d854fefa1.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif Local";
  src: url("/vortexul-polar/assets/SourceSerif.a0cd390d0172.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed Local";
  src: url("/vortexul-polar/assets/BarlowCondensed.6553a31e71bb.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b1423;
  --ink-soft: #183147;
  --paper: #f5f2eb;
  --paper-deep: #e8e4da;
  --paper-warm: #fbf8f2;
  --blue: #16617a;
  --blue-bright: #62bfd0;
  --ice: #d9eff0;
  --orange: #eb7651;
  --orange-dark: #b55037;
  --gold: #f3bd6d;
  --line: rgba(11, 20, 35, 0.17);
  --line-light: rgba(245, 242, 235, 0.24);
  --sans: "Plex Sans Local", "Helvetica Neue", Arial, sans-serif;
  --serif: "Source Serif Local", Georgia, serif;
  --display: "Barlow Condensed Local", Impact, sans-serif;
  --shadow: 0 18px 48px rgba(11, 20, 35, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 66px;
  padding: 0.75rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(245, 242, 235, 0.14);
  background: rgba(11, 20, 35, 0.95);
  color: var(--paper);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.brand-label,
.footer-label,
.section-kicker,
.eyebrow,
.card-tag,
.step-layer,
.step-status,
.source-org,
.stat-source,
.certainty-label {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-label {
  color: rgba(245, 242, 235, 0.7);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  margin-left: auto;
}

.site-nav a,
.language-link,
.mobile-nav a {
  color: rgba(245, 242, 235, 0.78);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-link:hover,
.language-link:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  white-space: nowrap;
}

.language-switcher > span {
  color: rgba(245, 242, 235, 0.35);
}

.language-link.is-current {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0.7rem;
  border: 1px solid rgba(245, 242, 235, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1360px, calc(100% - 2rem));
  min-height: min(780px, calc(100vh - 66px));
  margin: 0 auto;
  padding: clamp(3.2rem, 6vw, 5.2rem) 0 clamp(2rem, 3.5vw, 3rem);
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  padding-left: clamp(0rem, 3vw, 3.5rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.86rem;
  line-height: 1.2;
}

.hero-section .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  max-width: 68ch;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
}

h1,
h2 {
  font-family: var(--display);
  line-height: 0.96;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  color: var(--paper);
  font-size: clamp(3.7rem, 6.4vw, 6.8rem);
  text-transform: uppercase;
}

.hero-deck {
  max-width: 44rem;
  margin: 1.7rem 0 0;
  color: rgba(245, 242, 235, 0.89);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  line-height: 1.25;
}

.hero-rule {
  width: 100%;
  height: 1px;
  margin: 2rem 0 1.4rem;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-body {
  max-width: 40rem;
  margin: 0;
  color: rgba(245, 242, 235, 0.72);
  font-size: 1rem;
}

.memory-carrier {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 37rem;
  margin: 1.6rem 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-style: italic;
}

.memory-dot {
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(235, 118, 81, 0.14);
}

.reading-rhythm {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.reading-rhythm a {
  display: inline-flex;
  gap: 0.32rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(245, 242, 235, 0.2);
  border-radius: 999px;
  color: rgba(245, 242, 235, 0.7);
  font-size: 0.74rem;
  text-decoration: none;
}

.reading-rhythm a:hover,
.reading-rhythm a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.reading-rhythm span {
  color: var(--gold);
  font-weight: 800;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 2rem;
  color: rgba(245, 242, 235, 0.5);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-art {
  align-self: stretch;
  display: flex;
  align-items: center;
  min-width: 0;
}

.atmosphere-scene {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 235, 0.3);
  border-radius: 3px;
  background: #091321;
  box-shadow: var(--shadow);
}

.hero-art .atmosphere-scene {
  transform: rotate(1deg);
}

.atmosphere-svg {
  display: block;
  width: 100%;
  height: auto;
}

.scene-grid {
  fill: none;
  stroke: rgba(245, 242, 235, 0.16);
  stroke-width: 1;
  stroke-dasharray: 4 10;
}

.scene-horizon {
  fill: rgba(251, 248, 242, 0.82);
}

.scene-stars circle {
  fill: var(--paper);
  opacity: 0.7;
}

.scene-copy text,
.scene-caption text,
.scene-places text {
  font-family: var(--sans);
}

.scene-kicker {
  fill: rgba(245, 242, 235, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.scene-copy text:last-child {
  fill: var(--ink);
}

.vortex-line {
  fill: none;
  stroke: #8dd6e1;
  stroke-width: 3;
  opacity: 0.86;
}

.vortex-line-two {
  stroke: #64b9cd;
  stroke-width: 2;
}

.vortex-line-three {
  stroke: #f3bd6d;
  stroke-width: 2;
  opacity: 0.8;
}

.vortex-ribbon {
  fill: none;
  stroke: rgba(245, 242, 235, 0.55);
  stroke-width: 1;
  stroke-dasharray: 2 9;
}

.vortex-ribbon-alt {
  stroke: rgba(235, 118, 81, 0.68);
}

.polar-air path {
  fill: none;
  stroke: #8dd6e1;
  stroke-width: 2;
  opacity: 0.85;
}

.jet-stream path {
  fill: none;
  stroke-linecap: round;
}

.jet-stream .jet-stable,
.jet-stream .jet-disturbed {
  stroke: rgba(11, 20, 35, 0.72);
  stroke-width: 13;
}

.jet-stream .jet-highlight {
  stroke: #f3bd6d;
  stroke-width: 5;
}

.signal-arrows path {
  fill: none;
  stroke-width: 3;
  stroke-dasharray: 3 7;
}

.signal-stable {
  stroke: #8dd6e1;
}

.signal-disturbed {
  stroke: #f27d54;
}

.romania-dot {
  fill: var(--orange);
  stroke: var(--paper);
  stroke-width: 2;
}

.romania-line {
  stroke: var(--orange);
  stroke-width: 1.5;
}

.place-label {
  fill: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
}

.place-note {
  fill: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.caption-main {
  fill: var(--paper);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
}

.caption-sub {
  fill: rgba(245, 242, 235, 0.78);
  font-size: 11px;
  letter-spacing: 0.4px;
}

.vortex-disturbed,
.jet-disturbed,
.signal-disturbed {
  display: none;
}

[data-state="disturbed"] .vortex-stable,
[data-state="disturbed"] .jet-stable,
[data-state="disturbed"] .signal-stable {
  display: none;
}

[data-state="disturbed"] .vortex-disturbed,
[data-state="disturbed"] .jet-disturbed,
[data-state="disturbed"] .signal-disturbed {
  display: block;
}

.hero-bottomline {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: 1.25rem;
  width: min(1360px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem clamp(0rem, 3vw, 3.5rem) 1.4rem;
  border-top: 1px solid rgba(245, 242, 235, 0.18);
  color: rgba(245, 242, 235, 0.55);
  font-size: 0.78rem;
}

.hero-bottomline > span:first-child {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  scroll-margin-top: 82px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  column-gap: clamp(1.4rem, 4vw, 5rem);
  row-gap: 0.7rem;
  max-width: 920px;
  margin-bottom: 3.5rem;
}

.section-intro .section-kicker {
  grid-row: span 2;
  margin-top: 0.4rem;
}

.section-intro h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.4;
}

.section-quick {
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

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

.quick-card {
  min-height: 240px;
  padding: 1.6rem 1.5rem 2rem;
  border-right: 1px solid var(--line);
}

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

.card-tag {
  display: block;
  margin-bottom: 2.1rem;
  color: var(--orange-dark);
  font-size: 0.76rem;
}

.quick-card h3,
.chain-step h3,
.stat-card h3,
.check-card h3,
.deep-card h3,
.case-copy h2,
.caveat-block h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.1;
}

.quick-card p,
.chain-step p,
.stat-card p,
.check-card p,
.deep-card p,
.case-copy p,
.caveat-block p,
.method-section p,
.source-card p {
  color: var(--ink-soft);
}

.quick-card p {
  margin: 0.9rem 0 0;
}

.scene-section {
  width: 100%;
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--paper);
}

.scene-section .section-intro {
  width: min(920px, 100%);
}

.scene-section .section-intro > p:last-child,
.scene-section .control-hint,
.scene-section .scene-static-note {
  color: rgba(245, 242, 235, 0.7);
}

.scene-grid-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.scene-control-panel {
  padding: 1.5rem;
  border: 1px solid rgba(245, 242, 235, 0.23);
  border-radius: 3px;
  background: rgba(245, 242, 235, 0.05);
}

.control-label {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.control-hint {
  margin: 0.6rem 0 1.6rem;
  font-size: 0.87rem;
}

.range-wrap {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
  cursor: pointer;
}

.state-copy {
  margin-top: 2rem;
}

.state-copy-disturbed {
  display: none;
}

[data-state="disturbed"] .state-copy-stable {
  display: none;
}

[data-state="disturbed"] .state-copy-disturbed {
  display: block;
}

.state-index {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
}

.state-copy h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.1;
}

.state-copy p {
  margin-bottom: 0;
  color: rgba(245, 242, 235, 0.78);
}

.scene-static-note {
  margin: 2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 242, 235, 0.2);
  font-size: 0.78rem;
}

.scene-visual-wrap {
  min-width: 0;
}

.scene-visual-wrap .atmosphere-scene {
  border-color: rgba(245, 242, 235, 0.35);
}

.chain-section {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

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

.chain-step {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.8rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}

.step-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.step-layer {
  color: var(--blue);
  font-size: 0.82rem;
}

.step-status {
  color: var(--orange-dark);
  font-size: 0.73rem;
}

.chain-step h3 {
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
}

.chain-step p {
  max-width: 58rem;
  margin: 0.75rem 0 0.9rem;
}

.step-source,
.stat-source {
  color: rgba(11, 20, 35, 0.58);
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.evidence-section {
  width: 100%;
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--paper-deep);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  min-height: 265px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(245, 242, 235, 0.6);
}

.stat-value {
  margin: 0;
  color: var(--orange-dark) !important;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.035em;
}

.stat-card h3 {
  margin-top: 1.5rem;
  font-size: 1.35rem;
}

.stat-card p:not(.stat-value) {
  margin: 0.55rem 0 1.3rem;
  font-size: 0.94rem;
}

.caveat-block {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1.25rem;
  max-width: 950px;
  margin-top: 2.3rem;
  padding: 1.3rem 0 0;
  border-top: 2px solid var(--orange);
}

.caveat-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
}

.caveat-block h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.caveat-block p {
  margin: 0.65rem 0 0;
}

.caveat-line {
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 1.17rem;
  font-style: italic;
}

.romania-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.romania-aside {
  position: sticky;
  top: 100px;
}

.romania-aside-big {
  margin: 2.7rem 0 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.romania-main h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 6rem);
}

.lead-paragraph {
  max-width: 50rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.checks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-card {
  min-height: 220px;
  padding: 1.2rem 1rem 1.6rem;
  border-right: 1px solid var(--line);
}

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

.check-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
}

.check-card h3 {
  margin-top: 2.3rem;
}

.check-card p {
  margin: 0.75rem 0 0;
}

.conclusion-line {
  margin: 2rem 0 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--orange);
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.deep-section {
  width: 100%;
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--blue);
  color: var(--paper);
}

.deep-section .section-intro > p:last-child,
.deep-card p {
  color: rgba(245, 242, 235, 0.76);
}

.deep-section .section-kicker {
  color: var(--gold);
}

.deep-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(245, 242, 235, 0.26);
  border-bottom: 1px solid rgba(245, 242, 235, 0.26);
}

.deep-card {
  min-height: 315px;
  padding: 1.2rem 1rem 1.5rem;
  border-right: 1px solid rgba(245, 242, 235, 0.26);
}

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

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0.2rem 0.5rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.deep-card .status-chip {
  color: var(--gold);
}

.deep-card h3 {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.1;
}

.deep-card p {
  margin: 0.8rem 0 0;
}

.case-section {
  display: grid;
  grid-template-columns: 100px minmax(0, 760px);
  gap: 1.5rem;
  max-width: 1000px;
  margin-left: max(1rem, calc((100vw - 1180px) / 2));
  margin-right: auto;
}

.case-index {
  color: var(--orange);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.9;
}

.case-copy h2 {
  max-width: 16ch;
  margin-top: 0.4rem;
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.case-copy p {
  margin: 1.4rem 0 1.3rem;
  font-size: 1.18rem;
}

.text-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.method-section .section-intro {
  display: block;
  margin-bottom: 0;
}

.method-section .section-intro .section-kicker {
  margin-bottom: 1rem;
}

.method-section .section-intro h2 {
  max-width: 10ch;
}

.method-section .section-intro p:last-child {
  margin-top: 1.4rem;
}

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

.certainty-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.3fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.certainty-label {
  color: var(--orange-dark);
  font-size: 0.8rem;
}

.sources-section {
  width: 100%;
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  background: var(--paper-deep);
}

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

.source-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(245, 242, 235, 0.65);
}

.source-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  justify-content: space-between;
}

.source-card .status-chip {
  color: var(--orange-dark);
}

.source-org {
  color: rgba(11, 20, 35, 0.54);
  font-size: 0.72rem;
}

.source-card h3 {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.1;
}

.source-card p {
  margin: 0.75rem 0 1.25rem;
  font-size: 0.95rem;
}

.source-card .text-link {
  margin-top: auto;
}

.lifecycle-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  max-width: 800px;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.lifecycle-note p {
  margin: 0;
}

.lifecycle-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.back-to-top.is-enhanced {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  box-shadow: 0 10px 24px rgba(11, 20, 35, 0.2);
}

.site-footer {
  padding: clamp(3rem, 6vw, 6rem) max(1rem, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--paper);
}

.footer-share {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 242, 235, 0.2);
}

.footer-share p {
  max-width: 48rem;
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.footer-label {
  color: var(--orange);
  font-size: 0.77rem;
}

.copy-link {
  min-height: 44px;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(245, 242, 235, 0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.copy-link:hover,
.copy-link:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

.footer-grid p {
  margin: 0 0 0.65rem;
}

.footer-grid a {
  color: rgba(245, 242, 235, 0.75);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
}

.footer-credit {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.footer-end {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 242, 235, 0.12);
  color: rgba(245, 242, 235, 0.48);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 0.9rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  }

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

  .deep-card:nth-child(2) {
    border-right: 0;
  }

  .deep-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(245, 242, 235, 0.26);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
  }

  .brand-label,
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 62px;
    right: 0;
    left: 0;
    z-index: 35;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(245, 242, 235, 0.2);
    background: rgba(11, 20, 35, 0.98);
    transform: translateY(-140%);
    transition: transform 160ms ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(245, 242, 235, 0.12);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    gap: 2rem;
    padding: 3.5rem 1rem 2rem;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.3rem, 16vw, 5.9rem);
  }

  .hero-art {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
  }

  .hero-art .atmosphere-scene {
    transform: none;
  }

  .hero-bottomline {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
  }

  .section,
  .scene-section,
  .evidence-section,
  .deep-section,
  .sources-section {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section-intro {
    display: block;
    margin-bottom: 2.2rem;
  }

  .section-intro .section-kicker {
    margin-bottom: 1rem;
  }

  .section-intro h2 {
    font-size: clamp(3.15rem, 16vw, 5.2rem);
  }

  .section-intro > p:last-child {
    margin-top: 1.2rem;
  }

  .quick-grid,
  .stats-grid,
  .checks-grid,
  .sources-grid {
    grid-template-columns: 1fr;
  }

  .quick-card,
  .check-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-card:last-child,
  .check-card:last-child {
    border-bottom: 0;
  }

  .quick-card {
    padding: 1.3rem 0 1.6rem;
  }

  .quick-card .card-tag {
    margin-bottom: 1rem;
  }

  .scene-grid-layout,
  .romania-section,
  .method-section {
    grid-template-columns: 1fr;
  }

  .scene-control-panel {
    padding: 1.1rem;
  }

  .scene-visual-wrap {
    order: -1;
  }

  .chain-step {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .step-number {
    font-size: 2rem;
  }

  .stat-card {
    min-height: auto;
  }

  .caveat-block {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .caveat-mark {
    width: 38px;
    height: 38px;
  }

  .romania-aside {
    position: static;
  }

  .romania-aside-big {
    margin-top: 1.5rem;
    font-size: clamp(2.6rem, 14vw, 4.7rem);
  }

  .romania-main h2 {
    max-width: 9ch;
    font-size: clamp(3.15rem, 16vw, 5.2rem);
  }

  .checks-grid {
    gap: 0;
  }

  .check-card {
    padding: 1.3rem 0 1.5rem;
  }

  .check-card h3 {
    margin-top: 1.2rem;
  }

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

  .deep-card,
  .deep-card:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 242, 235, 0.26);
  }

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

  .case-section {
    grid-template-columns: 52px minmax(0, 1fr);
    width: calc(100% - 2rem);
    margin-left: 1rem;
  }

  .case-index {
    font-size: 2.7rem;
  }

  .case-copy h2 {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .certainty-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .footer-share,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .copy-link {
    width: max-content;
  }

  .back-to-top {
    min-height: 46px;
  }

  .back-to-top.is-enhanced {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Revision: one reading path, fewer containers, stronger answer-first hierarchy. */
.hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(400px, 1.06fr);
  min-height: min(720px, calc(100vh - 66px));
  padding-top: clamp(2.8rem, 5vw, 4.6rem);
  padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.hero-copy {
  max-width: 680px;
}

h1 {
  max-width: 15ch;
  font-size: clamp(3.15rem, 5.2vw, 5.7rem);
  line-height: 0.98;
}

.hero-deck {
  max-width: 39rem;
  margin-top: 1.35rem;
  font-size: clamp(1.18rem, 1.8vw, 1.52rem);
}

.hero-rule {
  margin: 1.45rem 0 1.1rem;
}

.hero-body {
  max-width: 36rem;
  line-height: 1.55;
}

.hero-verdict {
  max-width: 37rem;
  margin: 1.45rem 0 0;
  padding: 0.85rem 0 0 1rem;
  border-left: 3px solid var(--orange);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.38;
}

.hero-verdict span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta {
  margin-top: 1.35rem;
}

.hero-art .atmosphere-scene {
  transform: rotate(0.35deg);
}

.hero-bottomline {
  padding-top: 0.85rem;
  padding-bottom: 1.15rem;
}

.section {
  padding-top: clamp(3.8rem, 7vw, 7rem);
  padding-bottom: clamp(3.8rem, 7vw, 7rem);
}

.section-intro {
  max-width: 980px;
  margin-bottom: clamp(2.3rem, 4.5vw, 4rem);
}

.section-intro h2 {
  max-width: 16ch;
  font-size: clamp(2.8rem, 5.4vw, 5.25rem);
  line-height: 1;
}

.section-intro > p:last-child {
  max-width: 52rem;
  font-size: clamp(1.08rem, 1.55vw, 1.27rem);
}

.answer-section {
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
}

.answer-path {
  max-width: 1040px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.answer-path-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.35rem 0 1.55rem;
  border-bottom: 1px solid var(--line);
}

.path-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 0.9;
}

.path-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.path-layer,
.path-status,
.path-source {
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-layer {
  color: var(--blue);
}

.path-status {
  color: var(--orange-dark);
}

.path-copy h3 {
  max-width: 28ch;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.15vw, 1.8rem);
  line-height: 1.1;
}

.path-copy p {
  max-width: 53rem;
  margin: 0.55rem 0 0.8rem;
  color: var(--ink-soft);
}

.path-source {
  color: rgba(11, 20, 35, 0.55);
  font-size: 0.69rem;
}

.scene-section {
  padding-top: clamp(4.2rem, 8vw, 8rem);
  padding-bottom: clamp(4.2rem, 8vw, 8rem);
}

.scene-section .section-intro h2 {
  max-width: 13ch;
}

.scene-grid-layout {
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 5vw, 5rem);
}

.scene-control-panel {
  padding: 0.25rem 0 0;
  border: 0;
  border-top: 1px solid rgba(245, 242, 235, 0.28);
  border-radius: 0;
  background: transparent;
}

.scene-control-panel .control-label {
  padding-top: 1rem;
}

.scene-static-note {
  max-width: 20rem;
}

.evidence-section {
  padding-top: clamp(4.2rem, 8vw, 8rem);
  padding-bottom: clamp(4.2rem, 8vw, 8rem);
}

.evidence-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  max-width: 1080px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-stat {
  display: grid;
  grid-template-columns: minmax(130px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  align-items: start;
  min-width: 0;
  padding: 1.6rem 1.5rem 1.8rem 0;
}

.evidence-stat + .evidence-stat {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.evidence-value {
  margin: 0;
  color: var(--orange-dark) !important;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.04em;
}

.evidence-stat h3 {
  margin: 0.15rem 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.evidence-stat div > p {
  margin: 0.55rem 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.reading-note {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--orange);
}

.reading-note p {
  margin: 0;
  color: var(--ink-soft);
}

.reading-note-label {
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reality-note {
  max-width: 1000px;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--blue);
  color: var(--paper);
}

.reality-note .section-kicker {
  color: var(--gold);
}

.reality-note h3 {
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.reality-note p:not(.section-kicker) {
  max-width: 52rem;
  margin: 1rem 0 1.15rem;
  color: rgba(245, 242, 235, 0.82);
}

.reality-note .text-link {
  color: var(--gold);
}

.romania-section {
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.romania-aside {
  position: static;
}

.romania-aside-big {
  max-width: 9ch;
  margin-top: 2rem;
  color: var(--blue);
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
  line-height: 0.94;
}

.romania-main h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 5.4vw, 5.25rem);
}

.lead-paragraph {
  max-width: 48rem;
  margin-top: 1.2rem;
  font-size: 1.18rem;
}

.watch-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2.7rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.watch-item {
  min-width: 0;
  padding: 1.1rem 1rem 1.3rem 0;
  border-right: 1px solid var(--line);
}

.watch-item + .watch-item {
  padding-left: 1rem;
}

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

.watch-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
}

.watch-item h3 {
  margin-top: 1.7rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.watch-item p {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
}

.conclusion-line {
  max-width: 52rem;
  margin-top: 1.9rem;
  font-size: 1.25rem;
}

.sources-section {
  padding-top: clamp(4.5rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 8vw, 8rem);
}

.sources-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  max-width: 1120px;
}

.sources-lead .section-intro {
  display: block;
  margin-bottom: 0;
}

.sources-lead .section-intro h2 {
  max-width: 12ch;
}

.method-note {
  padding-top: 1rem;
  border-top: 2px solid var(--orange);
}

.method-note h3 {
  max-width: 20ch;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.method-note > p {
  margin: 0.8rem 0 1.3rem;
  color: var(--ink-soft);
}

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

.method-row {
  display: grid;
  grid-template-columns: minmax(90px, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.method-label {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sources-list {
  max-width: 1120px;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.source-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: start;
  padding: 1.25rem 0 1.4rem;
  border-bottom: 1px solid var(--line);
}

.source-row-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.source-row .status-chip {
  color: var(--orange-dark);
}

.source-row-copy h3 {
  max-width: 38ch;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.08;
}

.source-row-copy p {
  max-width: 56rem;
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.source-row > .text-link {
  align-self: center;
  white-space: nowrap;
}

.lifecycle-note {
  max-width: 800px;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1.1fr);
  }

  .evidence-pair,
  .sources-lead {
    grid-template-columns: 1fr;
  }

  .evidence-stat + .evidence-stat {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .sources-lead .section-intro {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    gap: 1.8rem;
    padding: 3rem 1rem 1.8rem;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 14vw, 5.25rem);
  }

  .hero-deck {
    font-size: 1.18rem;
  }

  .hero-art {
    width: calc(100% + 1rem);
    margin-left: -0.5rem;
  }

  .hero-art .atmosphere-scene {
    transform: none;
  }

  .answer-path-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .path-number {
    font-size: 2rem;
  }

  .path-copy h3 {
    max-width: 22ch;
  }

  .scene-grid-layout {
    grid-template-columns: 1fr;
  }

  .romania-section {
    grid-template-columns: 1fr;
  }

  .range-wrap {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .range-wrap input {
    grid-row: 2;
    min-width: 0;
  }

  .range-wrap span:last-child {
    grid-row: 3;
  }

  .evidence-stat {
    grid-template-columns: minmax(112px, 0.7fr) minmax(0, 1fr);
    padding-right: 0;
  }

  .reading-note {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .watch-list {
    grid-template-columns: 1fr;
  }

  .watch-item,
  .watch-item + .watch-item {
    padding: 1.1rem 0 1.3rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .watch-item h3 {
    margin-top: 0.7rem;
  }

  .source-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .source-row-top {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .source-row > .text-link {
    justify-self: start;
  }
}
