.blog-page {
  --blog-grid: rgb(7 23 40 / 9%);
  --blog-soft-blue: #dfeafa;
  --blog-note: #eef4fb;
  --blog-ink-panel: #09192a;
  background: var(--paper);
}

html[data-theme="dark"] .blog-page {
  --blog-grid: rgb(255 255 255 / 9%);
  --blog-soft-blue: #12314d;
  --blog-note: #10263b;
  --blog-ink-panel: #030c17;
}

.blog-page main {
  overflow: clip;
}

.blog-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.blog-hero::before,
.article-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--blog-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--blog-grid) 1px, transparent 1px);
  background-size: clamp(58px, 6vw, 88px) clamp(58px, 6vw, 88px);
  content: "";
  opacity: .68;
}

.blog-hero::after,
.article-hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.blog-hero::after {
  top: -360px;
  right: -170px;
  width: min(820px, 64vw);
  aspect-ratio: 1;
  box-shadow: 0 0 0 90px rgb(40 95 231 / 3%), 0 0 0 190px rgb(69 191 220 / 3%);
}

.blog-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .82fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  min-height: 720px;
  padding-block: clamp(88px, 10vw, 150px);
}

.blog-hero__copy {
  max-width: 780px;
}

.blog-hero .display {
  max-width: 9.2ch;
  margin: 22px 0 30px;
  font-size: clamp(4.8rem, 8.6vw, 9.6rem);
}

.blog-hero .display em,
.article-title em {
  color: var(--blue);
}

.blog-hero__intro {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.24rem);
}

.blog-hero__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  list-style: none;
  text-transform: uppercase;
}

.blog-hero__legend li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.blog-hero__legend li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgb(40 95 231 / 12%);
  content: "";
}

.blog-hero__legend li:nth-child(2)::before {
  background: var(--cyan);
}

.blog-hero__legend li:nth-child(3)::before {
  background: var(--gold);
}

.blog-atlas {
  position: relative;
  min-height: 480px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 28px 28px 90px 28px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
}

.blog-atlas__head,
.blog-cover__meta,
.article-cover__head {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.blog-atlas svg {
  width: 100%;
  min-height: 360px;
  margin-top: 16px;
}

.blog-atlas .atlas-path {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-atlas .atlas-guide {
  fill: none;
  stroke: var(--line-strong);
  stroke-dasharray: 5 11;
}

.blog-atlas .atlas-node {
  fill: var(--surface);
  stroke: var(--blue);
  stroke-width: 3;
}

.blog-atlas .atlas-node--cyan {
  stroke: var(--cyan);
}

.blog-atlas .atlas-node--gold {
  stroke: var(--gold);
}

.blog-atlas text {
  fill: var(--text);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
}

.blog-atlas__index {
  position: absolute;
  right: -18px;
  bottom: 48px;
  display: grid;
  width: 96px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 1.4rem;
  box-shadow: 0 18px 50px rgb(7 23 40 / 18%);
}

.blog-featured-section,
.blog-journal,
.blog-empty-section {
  padding-block: clamp(82px, 10vw, 150px);
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr);
  min-height: 620px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.blog-featured__cover {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--blog-ink-panel);
  color: #fff;
}

.blog-featured__cover--image,
.blog-cover--image,
.article-cover--image {
  display: block;
  padding: 0;
  background: var(--blog-ink-panel);
}

.blog-featured__cover--image::before,
.blog-featured__cover--image::after,
.blog-cover--image::before,
.blog-cover--image::after,
.article-cover--image::before,
.article-cover--image::after {
  display: none;
}

.blog-featured__cover--image img,
.blog-cover--image img,
.article-cover--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-cover--image .blog-cover__meta,
.article-cover--image .article-cover__head {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  padding: 20px 22px;
  background: linear-gradient(rgb(7 23 40 / 82%), transparent);
  color: #fff;
}

.blog-featured__cover::before,
.blog-featured__cover::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.blog-featured__cover::before {
  right: -22%;
  bottom: -19%;
  width: 90%;
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 22%);
  box-shadow: inset 0 0 90px rgb(40 95 231 / 28%), 0 0 0 80px rgb(40 95 231 / 7%);
}

.blog-featured__cover::after {
  right: 21%;
  bottom: 22%;
  width: 18%;
  aspect-ratio: 1;
  background: var(--gold);
  box-shadow: 0 0 0 18px rgb(208 160 45 / 12%), 0 0 70px rgb(208 160 45 / 62%);
}

.blog-featured__coordinate {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.6rem);
  letter-spacing: -.07em;
  line-height: .82;
}

.blog-featured__axis {
  position: absolute;
  right: 8%;
  bottom: 12%;
  z-index: 2;
  width: 74%;
  height: 44%;
  border-bottom: 1px solid rgb(255 255 255 / 35%);
  border-left: 1px solid rgb(255 255 255 / 35%);
}

.blog-featured__axis span {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
}

.blog-featured__axis span:nth-child(1) {
  bottom: 15%;
  left: 18%;
}

.blog-featured__axis span:nth-child(2) {
  bottom: 48%;
  left: 48%;
  background: var(--cyan);
}

.blog-featured__axis span:nth-child(3) {
  right: 8%;
  bottom: 70%;
  background: var(--gold);
}

.blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(42px, 6vw, 88px);
}

.blog-category,
.article-category {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-category::before,
.article-category::before {
  width: 26px;
  height: 1px;
  background: currentcolor;
  content: "";
}

.blog-featured h2 {
  max-width: 12ch;
  margin: 25px 0 24px;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .92;
}

.blog-featured__excerpt {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.blog-entry-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  margin-top: 38px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.blog-entry-meta span + span::before,
.article-meta span + span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 22px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  vertical-align: middle;
}

.blog-read-link {
  display: inline-flex;
  width: fit-content;
  gap: 12px;
  align-items: center;
  margin-top: 44px;
  color: var(--text);
  font-size: .85rem;
  font-weight: 900;
  text-decoration: none;
}

.blog-read-link::after {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  content: "↗";
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.blog-read-link:hover::after {
  background: var(--blue);
  color: #fff;
  transform: rotate(8deg);
}

.blog-journal {
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.blog-journal__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 58px;
}

.blog-journal__head h2,
.blog-empty h2 {
  max-width: 11ch;
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 6.6vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .88;
}

.blog-journal__head > p {
  margin: 0;
  color: var(--muted);
}

.blog-filters {
  display: flex;
  gap: 10px;
  margin: 0 0 52px;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: thin;
}

.blog-filter {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: .76rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.blog-filter:hover,
.blog-filter[aria-pressed="true"],
.blog-filter[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.blog-stream {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.journal-entry {
  position: relative;
  grid-column: span 4;
  display: grid;
  grid-template-rows: minmax(260px, auto) 1fr;
  min-height: 610px;
  border-top: 1px solid var(--line-strong);
  background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease;
}

.journal-entry:nth-child(2) {
  grid-column: span 8;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-rows: 1fr;
}

.journal-entry:hover {
  box-shadow: 0 24px 70px rgb(7 23 40 / 10%);
  transform: translateY(-4px);
}

.journal-entry[hidden] {
  display: none;
}

.blog-cover {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 22px;
  background: var(--blog-soft-blue);
}

.blog-cover::before,
.blog-cover::after {
  position: absolute;
  content: "";
}

.blog-cover--rings::before {
  right: -18%;
  bottom: -34%;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgb(40 95 231 / 8%), 0 0 0 84px rgb(40 95 231 / 5%);
}

.blog-cover--axis {
  background: var(--blog-ink-panel);
  color: #fff;
}

.blog-cover--axis::before {
  right: 16%;
  bottom: 17%;
  width: 66%;
  height: 56%;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
  border-left: 1px solid rgb(255 255 255 / 30%);
  background: linear-gradient(140deg, transparent 48%, var(--cyan) 49% 51%, transparent 52%);
}

.blog-cover--axis::after {
  right: 25%;
  bottom: 41%;
  width: 24px;
  height: 24px;
  border: 7px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 35px rgb(208 160 45 / 58%);
}

.blog-cover--split::before {
  inset: 22% 12%;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, transparent 49.8%, var(--line-strong) 50%, transparent 50.2%),
    linear-gradient(24deg, transparent 48.8%, var(--blue) 49% 51%, transparent 51.2%);
}

.blog-cover__number {
  position: absolute;
  right: 22px;
  bottom: 12px;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  letter-spacing: -.08em;
  line-height: 1;
  opacity: .16;
}

.journal-entry__body {
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.journal-entry h3 {
  max-width: 14ch;
  margin: 20px 0 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

.journal-entry h3 a {
  color: inherit;
  text-decoration: none;
}

.journal-entry__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.journal-entry .blog-entry-meta {
  margin-top: auto;
  padding-top: 28px;
}

.blog-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.blog-pagination a,
.blog-pagination span {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
}

.blog-pagination .current,
.blog-pagination a:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.blog-empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding: clamp(38px, 7vw, 92px);
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: var(--surface);
}

.blog-empty p {
  max-width: 58ch;
  color: var(--muted);
}

.blog-programme-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(82px, 10vw, 145px);
  background: var(--blue);
  color: #fff;
}

.blog-programme-cta::before {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 56vw;
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(255 255 255 / 4%), 0 0 0 150px rgb(255 255 255 / 3%);
  content: "";
}

.blog-programme-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
}

.blog-programme-cta h2 {
  max-width: 12ch;
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7.6vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .86;
}

.blog-programme-cta .coordinate {
  color: #fff;
}

/* Article */
.article-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}

.article-hero::after {
  top: -280px;
  left: 52%;
  width: min(780px, 60vw);
  aspect-ratio: 1;
  box-shadow: 0 0 0 90px rgb(40 95 231 / 4%), 0 0 0 180px rgb(69 191 220 / 3%);
}

.article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .8fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  min-height: 720px;
  padding-block: clamp(80px, 9vw, 130px);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: .75rem;
}

.article-breadcrumb a {
  color: inherit;
}

.article-title {
  max-width: 11.5ch;
  margin: 26px 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.7vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .86;
}

.article-deck {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.24rem);
}

.article-cover {
  position: relative;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px 28px 100px 28px;
  background: var(--blog-ink-panel);
  color: #fff;
  box-shadow: var(--shadow);
}

.article-cover__diagram {
  position: absolute;
  inset: 86px 34px 40px;
}

.article-cover__diagram::before,
.article-cover__diagram::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.article-cover__diagram::before {
  inset: 4% 9%;
  border: 1px solid rgb(255 255 255 / 25%);
  box-shadow: 0 0 0 46px rgb(40 95 231 / 10%), 0 0 0 92px rgb(69 191 220 / 5%);
}

.article-cover__diagram::after {
  top: 42%;
  left: 46%;
  width: 62px;
  aspect-ratio: 1;
  background: var(--gold);
  box-shadow: 0 0 55px rgb(208 160 45 / 70%);
}

.article-cover__labels span {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 999px;
  background: rgb(7 23 40 / 72%);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-cover__labels span:nth-child(1) {
  top: 23%;
  left: 5%;
}

.article-cover__labels span:nth-child(2) {
  top: 8%;
  right: 8%;
}

.article-cover__labels span:nth-child(3) {
  right: 4%;
  bottom: 12%;
}

.article-cover__labels span:nth-child(4) {
  bottom: 5%;
  left: 13%;
}

.blog-hero--category,
.blog-hero--category .blog-hero__inner {
  min-height: 610px;
}

.blog-hero--category .display {
  font-size: clamp(4.2rem, 7.4vw, 8rem);
}

.article-reading {
  padding-block: clamp(80px, 9vw, 140px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, .28fr) minmax(0, .82fr) minmax(170px, .2fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.article-toc__title {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-toc ol {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.article-toc li {
  counter-increment: toc;
}

.article-toc a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding-block: 7px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a::before {
  color: var(--blue);
  content: counter(toc, decimal-leading-zero);
  font-size: .6rem;
  font-weight: 900;
}

.article-toc a:hover,
.article-toc a[aria-current="location"] {
  color: var(--text);
}

.article-content {
  min-width: 0;
  color: var(--text);
  font-size: clamp(1.02rem, 1.1vw, 1.15rem);
  line-height: 1.8;
}

.article-content > * {
  max-width: 760px;
  margin-inline: auto;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content h2,
.article-content h3 {
  scroll-margin-top: calc(var(--header-height) + 30px);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.article-content h2 {
  margin-top: 2.3em;
  margin-bottom: .65em;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.article-content h3 {
  margin-top: 2em;
  margin-bottom: .6em;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-top: 0;
  margin-bottom: 1.35em;
}

.article-content a {
  color: var(--blue);
}

.article-content blockquote {
  margin-block: 2.3em;
  padding: 10px 0 10px clamp(24px, 4vw, 54px);
  border-left: 2px solid var(--gold);
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.article-content figure,
.article-content .wp-block-image,
.article-content .wp-block-table {
  max-width: 980px;
  margin-block: 2.5em;
}

.article-content figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .72rem;
  text-align: left;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
}

.article-content th,
.article-content td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-note,
.wp-block-group.is-style-investonaute-note {
  margin-block: 2.4em;
  padding: clamp(24px, 4vw, 42px);
  border-left: 3px solid var(--cyan);
  background: var(--blog-note);
}

.article-note strong {
  display: block;
  margin-bottom: 6px;
}

.article-rail {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  gap: 22px;
}

.article-rail__marker {
  padding-top: 17px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
}

.article-rail__marker strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: none;
}

.article-disclosure {
  max-width: 760px;
  margin: 72px auto 0;
  padding: 26px 30px;
  border: 1px solid rgb(208 160 45 / 44%);
  border-radius: 18px;
  background: rgb(208 160 45 / 9%);
  color: var(--muted);
  font-size: .82rem;
}

.article-disclosure strong {
  color: var(--text);
}

.article-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-navigation a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 28px;
  color: var(--text);
  text-decoration: none;
}

.article-navigation a + a {
  border-left: 1px solid var(--line);
  text-align: right;
}

.article-navigation span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-navigation strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.08;
}

.related-reading {
  padding-block: clamp(80px, 9vw, 140px);
  background: var(--mist);
}

.related-reading__head {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.related-reading__head h2 {
  max-width: 10ch;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .92;
}

.related-reading .blog-stream {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-reading .journal-entry,
.related-reading .journal-entry:nth-child(2) {
  grid-column: auto;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
  min-height: 360px;
}

@media (max-width: 1180px) {
  .blog-hero__inner,
  .article-hero__inner {
    grid-template-columns: 1fr;
  }

  .blog-hero__copy,
  .article-hero__copy {
    max-width: 900px;
  }

  .blog-hero .display,
  .article-title {
    max-width: 12ch;
  }

  .blog-atlas,
  .article-cover {
    width: min(780px, 100%);
  }

  .article-layout {
    grid-template-columns: minmax(190px, .26fr) minmax(0, .74fr);
  }

  .article-rail {
    display: none;
  }

  .journal-entry,
  .journal-entry:nth-child(2) {
    grid-column: span 6;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, auto) 1fr;
  }
}

@media (max-width: 900px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured__cover {
    min-height: 440px;
  }

  .blog-journal__head,
  .blog-programme-cta__inner,
  .blog-empty {
    grid-template-columns: 1fr;
  }

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

  .article-toc {
    position: static;
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .related-reading .blog-stream {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-hero,
  .article-hero {
    min-height: auto;
  }

  .blog-hero__inner,
  .article-hero__inner {
    min-height: auto;
    padding-block: 64px 78px;
  }

  .blog-hero .display,
  .article-title {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .blog-atlas {
    min-height: 390px;
    padding: 18px;
    border-radius: 22px 22px 62px 22px;
  }

  .blog-atlas svg {
    min-height: 290px;
  }

  .blog-atlas__index {
    right: 10px;
    bottom: -30px;
    width: 74px;
  }

  .blog-featured {
    border-radius: 22px;
  }

  .blog-featured__cover {
    min-height: 360px;
  }

  .blog-featured__body,
  .journal-entry__body {
    padding: 28px 24px;
  }

  .blog-featured h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .blog-stream {
    grid-template-columns: 1fr;
  }

  .journal-entry,
  .journal-entry:nth-child(2) {
    grid-column: auto;
    min-height: 560px;
  }

  .blog-journal__head h2,
  .blog-empty h2,
  .blog-programme-cta h2,
  .related-reading__head h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .article-cover {
    min-height: 390px;
    padding: 20px;
    border-radius: 22px 22px 68px 22px;
  }

  .article-cover__diagram {
    inset: 80px 18px 28px;
  }

  .article-content {
    font-size: 1rem;
  }

  .article-content h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .article-content h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .article-content th,
  .article-content td {
    min-width: 160px;
    padding: 12px;
  }

  .article-content .wp-block-table,
  .article-content figure {
    overflow-x: auto;
  }

  .article-navigation {
    grid-template-columns: 1fr;
  }

  .article-navigation a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .related-reading .journal-entry,
  .related-reading .journal-entry:nth-child(2) {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journal-entry,
  .blog-read-link::after {
    transition: none;
  }

  .journal-entry:hover {
    transform: none;
  }
}
