:root {
  --journal-max: 1160px;
  --journal-text: rgba(243, 240, 231, 0.76);
  --journal-muted: rgba(243, 240, 231, 0.58);
  --journal-line: rgba(243, 240, 231, 0.1);
  --journal-panel:
    linear-gradient(180deg, rgba(17, 23, 34, 0.96), rgba(10, 14, 22, 0.98)),
    radial-gradient(circle at top right, rgba(184, 148, 88, 0.12), transparent 30%);
}

body.journal-page,
body.article-page {
  background:
    radial-gradient(circle at top left, rgba(120, 162, 201, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(184, 148, 88, 0.16), transparent 28%),
    #07090f;
  color: #f3f0e7;
}

.journal-shell,
.article-shell {
  padding: 4.1rem 0 7rem;
}

.journal-hero,
.journal-section,
.journal-footer-cta,
.article-breadcrumb,
.article-hero,
.article-layout,
.article-footer-wrap,
.article-footer-cta {
  width: min(var(--journal-max), calc(100% - 3rem));
  margin: 0 auto;
}

.journal-card,
.article-panel,
.article-sidebar-card,
.article-footer-cta {
  border: 1px solid var(--journal-line);
  border-radius: 24px;
  background: var(--journal-panel);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.journal-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.15rem;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 5rem;
}

.journal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(111, 143, 176, 0.18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(184, 148, 88, 0.16), transparent 28%),
    radial-gradient(circle at 50% 78%, rgba(243, 240, 231, 0.06), transparent 24%);
  z-index: 0;
  pointer-events: none;
  animation: journalHeroDrift 18s ease-in-out infinite alternate;
}

.journal-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.journal-hero-copy,
.journal-hero-note,
.journal-card-body,
.journal-path-card,
.article-hero-copy,
.article-sidebar-card,
.article-footer-cta {
  padding: 2.15rem;
}

.journal-hero-copy h1,
.journal-section h2,
.journal-footer-cta h2,
.article-hero-copy h1,
.article-prose h2,
.article-prose h3,
.article-sidebar-card h2,
.article-footer-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
}

.journal-hero-copy h1,
.article-hero-copy h1 {
  font-size: clamp(2.85rem, 6vw, 5rem);
}

.journal-hero-copy,
.journal-hero-note {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(243, 240, 231, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(17, 23, 34, 0.82), rgba(10, 14, 22, 0.9)),
    radial-gradient(circle at top right, rgba(184, 148, 88, 0.12), transparent 32%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  isolation: isolate;
}

.journal-hero-copy > *,
.journal-hero-note > * {
  position: relative;
  z-index: 1;
}

.journal-panel-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.96;
}

.journal-hero-copy::before,
.journal-hero-note::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.journal-hero-copy::before {
  background:
    radial-gradient(circle at 18% 16%, rgba(184, 148, 88, 0.14), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(111, 143, 176, 0.12), transparent 30%);
}

.journal-hero-note::before {
  background:
    linear-gradient(180deg, rgba(243, 240, 231, 0.04), rgba(243, 240, 231, 0)),
    radial-gradient(circle at 78% 18%, rgba(184, 148, 88, 0.12), transparent 26%);
}

.journal-hero-copy p,
.journal-hero-note p,
.journal-section-head p,
.journal-card-body p,
.journal-path-card p,
.journal-footer-cta p,
.article-hero-copy p,
.article-prose p,
.article-prose li,
.article-sidebar-card p,
.article-footer-cta p,
.article-figure figcaption {
  color: var(--journal-text);
  line-height: 1.82;
}

.journal-hero-copy p,
.journal-hero-note p,
.journal-card-body p,
.journal-path-card p,
.journal-footer-cta p,
.article-hero-copy p,
.article-sidebar-card p,
.article-footer-cta p {
  margin: 0;
}

.journal-hero-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
  text-align: left;
}

.journal-hero-copy .eyebrow,
.journal-hero-note .eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  text-align: left;
  margin-bottom: 0;
}

.journal-hero-copy .eyebrow::after,
.journal-hero-note .eyebrow::after {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.journal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.6rem;
}

.journal-hero-note {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.2rem;
  align-content: stretch;
}

.journal-hero-note > div:first-child {
  display: grid;
  gap: 0.4rem;
}

.journal-hero-note h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.3vw, 3.15rem);
  line-height: 1.04;
  max-width: 11ch;
}

.journal-note-list {
  display: grid;
  gap: 0.85rem;
}

.journal-note-item {
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgba(243, 240, 231, 0.06);
  border-left: 1px solid rgba(184, 148, 88, 0.34);
  background: rgba(184, 148, 88, 0.04);
  border-radius: 0 18px 18px 0;
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.journal-note-item::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0.75rem 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 148, 88, 0.24), rgba(111, 143, 176, 0.08));
  opacity: 0.55;
}

.journal-note-item:hover,
.journal-note-item:focus-within {
  transform: translateX(4px);
  border-color: rgba(184, 148, 88, 0.16);
  background: rgba(184, 148, 88, 0.06);
}

.journal-note-item strong,
.journal-card-meta,
.journal-path-card span,
.article-meta,
.article-sidebar-label {
  display: block;
  color: #b89458;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-section {
  padding-bottom: 4.75rem;
}

.journal-section + .journal-section {
  border-top: 1px solid rgba(243, 240, 231, 0.08);
  padding-top: 4.75rem;
}

.journal-section-head {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
  margin-bottom: 2.35rem;
}

.journal-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.journal-section-head .eyebrow,
.journal-footer-cta .eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.journal-section-head p {
  max-width: 60ch;
  margin: 0 auto;
}

.journal-entry-grid,
.journal-path-grid {
  display: grid;
  gap: 1.15rem;
}

.journal-entry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-card {
  overflow: hidden;
  display: grid;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(16, 22, 33, 0.95), rgba(10, 14, 22, 0.98)),
    radial-gradient(circle at top right, rgba(184, 148, 88, 0.1), transparent 34%);
}

.journal-hero .journal-card {
  background:
    linear-gradient(180deg, rgba(17, 23, 34, 0.82), rgba(10, 14, 22, 0.9)),
    radial-gradient(circle at top right, rgba(184, 148, 88, 0.12), transparent 32%);
}

.journal-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #0d1118;
  border-bottom: 1px solid rgba(243, 240, 231, 0.08);
}

.journal-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.95rem;
  align-content: start;
}

.journal-card-meta {
  color: rgba(243, 240, 231, 0.62);
}

.journal-card h3,
.journal-path-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  line-height: 1.08;
  color: #f3f0e7;
}

.journal-link,
.article-link {
  color: #f3f0e7;
  display: inline-flex;
  justify-self: center;
  text-decoration: none;
  font-weight: 600;
  transition: color 180ms ease;
}

.journal-link:hover,
.article-link:hover,
.article-prose a:hover {
  color: #b89458;
}

.journal-path-card {
  display: grid;
  gap: 0.75rem;
}

.journal-footer-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2.35rem;
  background:
    linear-gradient(180deg, rgba(17, 23, 34, 0.92), rgba(10, 14, 22, 0.98)),
    radial-gradient(circle at 24% 18%, rgba(111, 143, 176, 0.12), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(184, 148, 88, 0.12), transparent 30%);
}

.journal-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 240, 231, 0.06), transparent 38%);
  opacity: 0.7;
}

.article-panel,
.article-figure,
.article-sidebar-card,
.article-footer-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.article-panel > *,
.article-figure > *,
.article-sidebar-card > *,
.article-footer-cta > * {
  position: relative;
  z-index: 1;
}

.article-panel::before,
.article-figure::before,
.article-sidebar-card::before,
.article-footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(111, 143, 176, 0.1), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(184, 148, 88, 0.1), transparent 30%);
  animation: articlePanelDrift 18s ease-in-out infinite alternate;
  z-index: 0;
}

.article-panel::after,
.article-figure::after,
.article-sidebar-card::after,
.article-footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(243, 240, 231, 0.04), rgba(243, 240, 231, 0));
  z-index: 0;
}

.journal-footer-cta p {
  max-width: 42rem;
}

.journal-footer-cta .cta-primary {
  margin-top: 0.45rem;
}

@keyframes journalHeroDrift {
  from {
    transform: translate3d(-1.2%, -0.8%, 0) scale(1);
  }

  to {
    transform: translate3d(1.6%, 1.3%, 0) scale(1.04);
  }
}

@keyframes articlePanelDrift {
  from {
    transform: translate3d(-1.4%, -0.8%, 0) scale(1);
  }

  to {
    transform: translate3d(1.5%, 1.2%, 0) scale(1.04);
  }
}

.article-breadcrumb {
  margin-bottom: 1.35rem;
}

.article-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(243, 240, 231, 0.66);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.15rem;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 2rem;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(111, 143, 176, 0.16), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(184, 148, 88, 0.16), transparent 28%),
    radial-gradient(circle at 54% 84%, rgba(243, 240, 231, 0.05), transparent 24%);
  z-index: 0;
  pointer-events: none;
}

.article-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.article-hero-copy h1 {
  max-width: 12ch;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.article-hero-copy p {
  max-width: 58ch;
}

.article-hero-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
  justify-items: stretch;
  gap: 1.15rem;
  padding: 2.15rem;
  background:
    linear-gradient(180deg, rgba(14, 18, 28, 0.98), rgba(8, 11, 18, 0.98)),
    radial-gradient(circle at top, rgba(184, 148, 88, 0.08), transparent 36%);
  border: 1px solid rgba(243, 240, 231, 0.08);
}

.article-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(243, 240, 231, 0.04), rgba(243, 240, 231, 0) 34%, rgba(7, 9, 15, 0.16) 100%),
    radial-gradient(circle at 22% 18%, rgba(184, 148, 88, 0.06), transparent 30%);
  z-index: 1;
}

.article-box-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.94;
  mix-blend-mode: screen;
}

.article-hero-note,
.article-hero-stage {
  position: relative;
  z-index: 2;
}

.article-hero-note {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.article-hero-note .eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  margin: 0;
}

.article-hero-note .eyebrow::after {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.article-hero-note h2 {
  margin: 0;
  max-width: 13ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  line-height: 1.08;
  text-wrap: balance;
}

.article-hero-note p:last-child {
  margin: 0;
  max-width: 34ch;
  color: var(--journal-text);
  line-height: 1.72;
}

.article-hero-stage {
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 100%;
  min-height: 17.5rem;
  padding: 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(243, 240, 231, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 15, 24, 0.92), rgba(7, 10, 16, 0.98)),
    radial-gradient(circle at 18% 18%, rgba(184, 148, 88, 0.08), transparent 30%);
  box-shadow: inset 0 1px 0 rgba(243, 240, 231, 0.03);
}

.article-hero-stage--phone {
  min-height: 19.5rem;
}

.article-hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 32rem;
  justify-self: center;
  align-self: center;
  border-radius: 18px;
  border: 1px solid rgba(243, 240, 231, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  background: #0c1118;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.article-hero-media--screen {
  aspect-ratio: 16 / 10;
}

.article-hero-media--phone {
  width: min(100%, 17rem);
  aspect-ratio: 10 / 19;
  border-radius: 28px;
}

.article-hero-media--phone {
  background-size: cover;
}

.article-meta {
  color: rgba(243, 240, 231, 0.6);
  margin-top: 0.15rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.46fr);
  gap: 1.25rem;
  align-items: start;
}

.article-panel {
  padding: 2.15rem;
}

.article-kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  margin: 0;
}

.article-kicker::after {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.article-prose {
  font-size: 1.03rem;
}

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

.article-prose h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 2.4rem;
  line-height: 1.08;
}

.article-prose h3 {
  font-size: 1.65rem;
  margin-top: 1.85rem;
}

.article-prose p {
  margin: 1rem 0 0;
}

.article-prose a {
  color: #f3f0e7;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.article-prose ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.article-prose li + li {
  margin-top: 0.45rem;
}

.article-pullquote {
  margin: 1.8rem 0;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(184, 148, 88, 0.18);
  border-radius: 22px;
  background: rgba(184, 148, 88, 0.05);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.34;
  color: #f3f0e7;
}

.article-figure {
  margin: 2rem 0;
  padding: 1rem;
  border: 1px solid rgba(243, 240, 231, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(16, 22, 33, 0.95), rgba(10, 14, 22, 0.98)),
    radial-gradient(circle at top right, rgba(184, 148, 88, 0.1), transparent 34%);
}

.article-figure-media {
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 18, 28, 0.98), rgba(8, 11, 18, 0.98)),
    radial-gradient(circle at top, rgba(184, 148, 88, 0.08), transparent 36%);
  border: 1px solid rgba(243, 240, 231, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.article-figure-media--screen {
  aspect-ratio: 16 / 9;
}

.article-figure-media--phone {
  padding: 1rem;
  width: min(100%, 360px);
  margin: 0 auto;
}

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

.article-figure-media--screen img {
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #0c1118;
}

.article-figure-media--phone img {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  background: #0c1118;
  border-radius: 28px;
  padding: 0.2rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.article-figure figcaption {
  margin-top: 1rem;
  padding-top: 0.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--journal-muted);
  text-align: center;
}

.article-sidebar {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.article-sidebar-card {
  display: grid;
  gap: 0.85rem;
  position: sticky;
  top: 105px;
  padding: 2.1rem;
  align-self: start;
}

.article-sidebar-card h2 {
  font-size: 1.9rem;
}

.article-sidebar-label {
  margin: 0;
}

.article-sidebar-list {
  display: grid;
  gap: 0.7rem;
}

.article-sidebar-list a {
  color: #f3f0e7;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(243, 240, 231, 0.08);
  background: rgba(243, 240, 231, 0.03);
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease, color 200ms ease;
}

.article-sidebar-list a:hover {
  color: #b89458;
  transform: translateY(-1px);
  border-color: rgba(184, 148, 88, 0.18);
  background: rgba(184, 148, 88, 0.06);
}

.article-footer-wrap {
  margin-top: 4.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(243, 240, 231, 0.08);
}

.article-footer-wrap .article-footer-cta {
  width: 100%;
  margin-top: 0;
}

.article-footer-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2.35rem;
  background:
    linear-gradient(180deg, rgba(17, 23, 34, 0.92), rgba(10, 14, 22, 0.98)),
    radial-gradient(circle at 24% 18%, rgba(111, 143, 176, 0.12), transparent 30%),
    radial-gradient(circle at 76% 18%, rgba(184, 148, 88, 0.12), transparent 30%);
}

.article-footer-cta p {
  max-width: 42rem;
}

.article-footer-cta .cta-primary {
  margin-top: 0.35rem;
}

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

  .journal-hero {
    padding: 1rem;
  }

  .article-hero {
    padding: 1rem;
  }

  .journal-entry-grid,
  .journal-path-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar-card {
  position: static !important;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

}

@media (max-width: 640px) {
  .journal-shell,
  .article-shell {
    padding: 2rem 0 5rem;
.article-sidebar-card {
  position: static !important;
  margin-bottom: 2rem;
}

.article-footer-wrap {
  margin-top: 0;
}
  }

  .journal-hero,
  .journal-section,
  .journal-footer-cta,
  .article-breadcrumb,
  .article-hero,
  .article-layout,
  .article-footer-wrap,
  .article-footer-cta {
    width: min(100%, calc(100% - 1.5rem));
  }

  .journal-hero-copy,
  .journal-hero-note,
  .journal-card-body,
  .journal-path-card,
  .article-hero-copy,
  .article-panel,
  .article-sidebar-card,
  .article-footer-cta {
    padding: 1.4rem;
  }

  .journal-card img {
    aspect-ratio: 16 / 11;
  }

  .article-layout {
    margin-bottom: 0;
  }

  .article-footer-wrap {
    width: min(100%, calc(100% - 2.5rem));
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(243, 240, 231, 0.06);
  }

  .article-footer-cta {
  position: relative;
  z-index: 0;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(17, 23, 34, 0.96), rgba(10, 14, 22, 0.99));
  border-top: 1px solid rgba(243, 240, 231, 0.08);
}

  .article-footer-cta::before,
  .article-footer-cta::after {
    display: none;
  }

  .article-hero-image {
    padding: 1.4rem;
  }

  .article-prose {
    font-size: 0.98rem;
  }

  .article-hero-note h2 {
    font-size: clamp(1.6rem, 7vw, 2.05rem);
  }

  .article-hero-stage {
    min-height: 14.5rem;
  }

  .article-hero-stage--phone {
    min-height: 17rem;
  }
}
