@font-face {
  font-family: Aeonik;
  src: url("/fonts/aeonik.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Aeonik Mono";
  src: url("/fonts/aeonik-mono.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

/* One canonical capability accent. depth-pages.css already keys this hue to the
   capability family as #e24b24; the archetype stylesheets had each drifted to a
   near-but-not-equal value (#e44b2c, #ef4b2f), so the same intent rendered as
   three different oranges depending on which page you landed on. */
:root { --panasia-archetype-accent: #e24b24; }


html {
  --panasia-archetype-nav-space: 88px;
  min-width: 320px;
  background: #fff;
  color: #0d0d0d;
  font-family: Aeonik, Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.panasia-archetype-shell {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: #fff;
  color: #0d0d0d;
  font-family: inherit;
}

body.panasia-archetype-shell,
body.panasia-archetype-shell *,
body.panasia-archetype-shell *::before,
body.panasia-archetype-shell *::after {
  box-sizing: border-box;
}

.panasia-archetype-shell .panasia-depth-skip {
  position: fixed;
  z-index: 2147483647;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-150%);
  border: 2px solid #0d0d0d;
  background: #fff;
  color: #0d0d0d;
  font-weight: 600;
  text-decoration: none;
  transition: transform 120ms ease;
}

.panasia-archetype-shell .panasia-depth-skip:focus {
  transform: translateY(0);
}

.panasia-archetype-shell main {
  display: block;
  padding-top: var(--panasia-archetype-nav-space);
}

.panasia-archetype-shell .panasia-depth-editorial-credits {
  padding: 20px clamp(24px, 5.8vw, 112px);
  border-top: 1px solid rgba(13, 13, 13, 0.18);
  background: #fff;
  color: #5f5f5a;
  font-size: 12px;
  line-height: 1.5;
}

.panasia-archetype-shell .panasia-depth-editorial-credits summary {
  min-height: 44px;
  color: #0d0d0d;
  cursor: pointer;
}

.panasia-archetype-shell .panasia-depth-editorial-credits ul {
  margin: 0;
  padding-left: 18px;
}

.panasia-archetype-shell .panasia-depth-editorial-credits p {
  margin: 10px 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .panasia-archetype-shell .panasia-depth-skip {
    transition: none;
  }
}

@media (max-width: 767px) {
  html {
    --panasia-archetype-nav-space: 70px;
  }
}

/* Base contract for the shared archetype icon set. Per-archetype rules size and
   frame it; without this a new call site renders a naked 24px glyph. */
.panasia-archetype-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: none;
  color: currentColor;
}

/* The breadcrumb and the section counter used to sit at the top of the hero's
   copy column. That column is bottom-aligned inside a fixed-height box cloned
   from a Scale page that has no breadcrumb at all, so these two were the first
   things pushed out of the top: the breadcrumb was 100% invisible at every
   supported viewport, and on Exchange & Listing Advisory it took the headline
   with it. They are navigation, not part of the poster, so they sit on the page
   canvas above it. */
.panasia-archetype-hierarchy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 48px);
  padding: 22px var(--panasia-archetype-inline, clamp(24px, 5.8vw, 112px)) 14px;
  color: #626262;
}

.panasia-archetype-hierarchy a {
  color: inherit;
}

.panasia-archetype-hierarchy a:hover {
  color: #0d0d0d;
}

@media (max-width: 767px) {
  /* Wrapping the trail here cost 229px of page height at 390px -- a quarter of
     a phone screen for a breadcrumb. One scrollable line is the mobile
     convention. `auto` rather than `hidden` on purpose: content you can reach
     by scrolling is not clipped, and the clipping guard draws that line too. */
  .panasia-archetype-hierarchy {
    gap: 12px;
    padding-block: 16px 10px;
  }

  .panasia-archetype-hierarchy > :first-child {
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .panasia-archetype-hierarchy > :first-child::-webkit-scrollbar {
    display: none;
  }
}
