/* BE THE ONE Journal · a quiet place to find your next step. */
:root {
  --j-paper: #f7f5ef;
  --j-ink: #181a16;
  --j-muted: #5f645d;
  --j-sage: #dee6dc;
  --j-blue: #dbe8f0;
  --j-amber: #a5792c;
  --j-line: rgba(24, 26, 22, .14);
  --j-header-height: 82px;
  --j-ease: cubic-bezier(.22, 1, .36, 1);
}
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body.journal-page {
  margin: 0;
  background: var(--j-paper);
  color: var(--j-ink);
  font: 400 16px/1.6 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.journal-page *, .journal-page *::before, .journal-page *::after { box-sizing: border-box; }
.journal-page :is(h1, h2, h3, p, figure, blockquote) { margin: 0; }
.journal-page :is(h1, h2, h3) { font-weight: 550; line-height: 1.08; text-wrap: balance; }
.journal-page a { color: inherit; text-decoration: none; }
.journal-page img { display: block; max-width: 100%; }
.journal-page :is(button, input) { font-family: inherit; }
.journal-page button { cursor: pointer; }
.journal-page :is(button, a) { -webkit-tap-highlight-color: transparent; }
.journal-page :focus-visible { outline: 2px solid #59715a; outline-offset: 5px; }
.journal-page ::selection { background: #cedccb; color: #181a16; }
.journal-page .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;
}
.j-shell { width: min(1280px, calc(100% - 80px)); margin-inline: auto; }
.j-skip { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 22px; border-radius: 100px; background: var(--j-ink); color: #fff !important; transform: translateY(-180%); }
.j-skip:focus { transform: translateY(0); }
.j-kicker { color: var(--j-muted); font-size: 10px; font-weight: 550; line-height: 1.6; letter-spacing: .19em; text-transform: uppercase; }
.j-kicker::before { content: ""; display: inline-block; width: 23px; height: 1px; background: currentColor; margin-right: 11px; vertical-align: middle; }
.j-arrow { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.j-pill { display: inline-flex; align-items: center; justify-content: center; gap: 17px; min-height: 52px; padding: 14px 23px; border: 1px solid transparent; border-radius: 100px; background: var(--j-ink); color: #fff !important; font-size: 13px; font-weight: 550; line-height: 1.4; transition: transform .25s var(--j-ease), background-color .25s; }
.j-pill .j-arrow { transition: transform .25s var(--j-ease); }
.j-pill:hover { transform: translateY(-2px); background: #333a2f; }
.j-pill:hover .j-arrow { transform: translateX(3px); }
.j-pill-light, .j-opening .j-pill, .j-invitation .j-pill { background: #fffdf8; color: var(--j-ink) !important; box-shadow: 0 6px 25px #00000015; }
.j-pill-light:hover, .j-opening .j-pill:hover, .j-invitation .j-pill:hover { background: #e7eee3; }
.j-tag { display: inline-flex; align-items: center; color: #45513f; background: #e4e9df; padding: 4px 10px; border-radius: 100px; font-size: 10px; font-weight: 550; line-height: 1.4; letter-spacing: .025em; }

/* Navigation */
.j-header { position: sticky; top: 0; z-index: 50; height: var(--j-header-height); background: var(--j-paper); }
.j-nav { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 30px; }
.j-logo { display: inline-flex; align-items: baseline; white-space: nowrap; font-size: 13px; font-weight: 700; letter-spacing: .105em; }
.j-logo em { margin-left: 2px; color: #84601f; font-family: Fraunces, Georgia, serif; font-weight: 450; font-size: 15px; letter-spacing: .02em; }
.j-nav-links { display: flex; align-items: center; gap: 3px; padding: 4px; border: 1px solid var(--j-line); border-radius: 100px; }
.j-nav-links a { padding: 8px 20px; border-radius: 100px; color: var(--j-muted); font-size: 13px; line-height: 1.5; transition: background .2s, color .2s; }
.j-nav-links a[aria-current="page"] { background: #e4e7df; color: var(--j-ink); }
.j-nav-links a:hover { background: #ebeae3; color: var(--j-ink); }
.j-nav-cta { display: inline-flex; align-items: center; gap: 17px; min-height: 44px; padding: 12px 19px; border-radius: 100px; background: var(--j-ink); color: #fff !important; font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.j-nav-cta .j-arrow { width: 14px; height: 14px; }
.j-menu-toggle { display: none; min-width: 44px; min-height: 44px; background: transparent; border: 1px solid var(--j-line); border-radius: 50%; color: var(--j-ink); align-items: center; justify-content: center; }
.j-menu-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.j-menu-toggle { position: relative; }
.j-menu-toggle span { position: absolute; left: 11px; right: 11px; height: 1px; background: currentColor; transition: transform .2s; }
.j-menu-toggle span:first-child { transform: translateY(-3px); }
.j-menu-toggle span:last-child { transform: translateY(3px); }
.j-menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.j-menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
#j-mobile-nav { position: absolute; top: 100%; left: 0; right: 0; padding: 14px 24px 24px; background: var(--j-paper); box-shadow: 0 20px 25px #181a160b; }
#j-mobile-nav[hidden] { display: none; }
#j-mobile-nav a { display: block; padding: 14px 0; font-size: 18px; }

/* Journal overview */
.j-masthead { padding-block: 35px 10px; }
.j-masthead .j-kicker { margin-bottom: 18px; }
.j-masthead h1 { font-size: clamp(36px, 4vw, 56px); letter-spacing: -.055em; line-height: 1.08; }
.j-masthead h1 em { color: var(--j-ink); font-family: Fraunces, Georgia, serif; font-weight: 400; }
.j-masthead-note { max-width: 290px; margin-bottom: 4px; color: var(--j-muted); font-size: 15px; line-height: 1.8; }
.j-masthead-note a { display: inline-flex; align-items: center; gap: 14px; margin-top: 19px; color: var(--j-ink); font-size: 11px; }
.j-masthead-note a:hover .j-arrow { transform: translateX(3px); }
.j-opening { position: relative; isolation: isolate; overflow: hidden; background: #192a1e; color: #fffdf7; }
.j-opening-image { position: absolute; inset: 0; z-index: -2; }
.j-opening-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 49%; }
.j-opening::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, #0c190ee6, #0c190e94 43%, #0c190e0a 80%); }
.j-opening-content { padding-block: 37px 39px; }
.j-opening .j-kicker { margin-bottom: 18px; color: #e4e9df; font-size: 10px; }
.j-opening h1 { max-width: 620px; font-size: clamp(42px,4.25vw,60px); letter-spacing: -.055em; line-height: 1.03; }
.j-opening-deck { max-width: 420px; margin-top: 18px !important; font-size: 16px; line-height: 1.65; color: #e3e8df; }
.j-opening-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 25px; }
.j-opening .j-pill { min-height: 48px; padding: 13px 22px; font-size: 12px; }
.j-opening .j-down { display: inline-flex; transform: rotate(90deg); }
.j-opening .j-pill:hover .j-arrow { transform: none; }
.j-opening-story { display: flex; min-height: 48px; flex-direction: column; justify-content: center; gap: 4px; }
.j-opening-story > span { font-size: 10px; color: #d2dacc; }
.j-opening-story strong { display: flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 500; }
.j-opening-story:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.j-opening-story .j-arrow { width: 15px; height: 15px; }
.j-library { padding-block: 34px 80px; }
.j-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.j-section-heading h2 { font-size: clamp(32px, 3.3vw, 45px); letter-spacing: -.05em; }
.j-section-heading > p { color: var(--j-muted); max-width: 380px; font-size: 14px; }
.j-search { display: flex; align-items: center; gap: 5px; width: 270px; min-height: 48px; flex-shrink: 0; padding-left: 18px; border: 1px solid #181a1628; border-radius: 100px; }
.j-search:focus-within { border-color: #59715a; box-shadow: 0 0 0 2px #59715a16; }
.j-search input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--j-ink); background: transparent; font-size: 12px; }
.j-search input::placeholder { color: #73786f; opacity: 1; }
.j-search button { display: grid; place-items: center; flex: 0 0 46px; height: 46px; padding: 0; border: 0; background: transparent; color: var(--j-ink); }
.j-search button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.j-topics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.j-topics a { display: inline-flex; align-items: center; min-height: 44px; padding: 9px 17px; border: 1px solid var(--j-line); border-radius: 100px; color: var(--j-muted); font-size: 11px; line-height: 1.5; transition: background .2s, color .2s, border-color .2s; }
.j-topics a:hover { color: var(--j-ink); background: #e7ece2; border-color: #c8d2c2; }
.j-topics a[aria-current="page"] { background: var(--j-ink); border-color: var(--j-ink); color: #fff; }
.j-results-meta { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 28px; margin-bottom: 22px; color: var(--j-muted); font-size: 11px; overflow-wrap: anywhere; }
.j-results-meta > span { min-width: 0; }
.j-results-meta a { text-decoration: underline; text-underline-offset: 4px; }
.j-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 48px 25px; }
.j-card { min-width: 0; }
.j-card-link { display: flex; height: 100%; flex-direction: column; }
.j-card-photo { overflow: hidden; position: relative; aspect-ratio: 1.46; border-radius: 13px; background: #e1e5dc; }
.j-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--j-ease); }
.j-card-link:hover .j-card-photo img { transform: scale(1.045); }
.j-card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 19px; color: var(--j-muted); font-size: 10px; }
.j-card h3 { margin-top: 13px; font-size: clamp(20px, 1.75vw, 25px); letter-spacing: -.043em; line-height: 1.17; text-wrap: pretty; }
.j-card-excerpt { margin-top: 11px !important; color: var(--j-muted); font-size: 14px; line-height: 1.75; }
.j-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 19px; margin-top: auto; color: var(--j-muted); font-size: 10px; }
.j-card-bottom .j-arrow { width: 16px; height: 16px; color: var(--j-ink); transition: transform .25s; }
.j-card-link:hover .j-card-bottom .j-arrow { transform: translateX(4px); }
.j-empty { margin-block: 35px; padding: 60px 25px; border-radius: 15px; text-align: center; background: #eaece4; }
.j-empty h3 { font-size: 24px; margin-bottom: 10px; }
.j-empty p { color: var(--j-muted); font-size: 14px; }
.j-empty a { display: inline-block; margin-top: 15px; text-decoration: underline; text-underline-offset: 4px; }
.j-pagination { display: flex; justify-content: center; gap: 7px; margin-top: 54px; }
.j-pagination :is(a, span) { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; min-height: 40px; padding: 8px 13px; border: 1px solid var(--j-line); border-radius: 50px; font-size: 12px; }
.j-pagination a:hover { background: #e6ecdf; }
.j-pagination [aria-current="page"] { background: var(--j-ink); color: #fff; border-color: var(--j-ink); }
.j-pagination > div { display: flex; gap: 7px; }
.j-pagination > span:empty { display: none; }
.j-pagination a { gap: 7px; }
.j-collection { padding-block: 75px 82px; background: var(--j-sage); }
.j-collection-heading { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 34px; }
.j-collection-heading .j-kicker { margin-bottom: 0; }
.j-collection-heading h2 { font-size: clamp(32px,3.6vw,48px); letter-spacing: -.05em; text-wrap: pretty; }
.j-collection-heading p:not(.j-kicker) { max-width: 305px; color: var(--j-muted); font-size: 13px; line-height: 1.8; }
.j-collection-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.j-collection-card { position: relative; display: flex; align-items: flex-end; min-height: 340px; padding: 27px; border-radius: 14px; overflow: hidden; isolation: isolate; color: #fff !important; background: #384b36; }
.j-collection-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--j-ease); }
.j-collection-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg,#111b16c4, #111b1600 85%); }
.j-collection-card:hover img { transform: scale(1.045); }
.j-collection-card h3 { font-size: 29px; letter-spacing: -.04em; }
.j-collection-card p { margin-top: 8px; max-width: 230px; font-size: 12px; line-height: 1.7; color: #ffffffe0; }
.j-collection-card .j-arrow { position: absolute; top: 23px; right: 23px; }
.j-invitation { position: relative; isolation: isolate; overflow: hidden; color: #fffdf7; background: #101615; }
.j-invitation > img, .j-invitation-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 30% center; }
.j-invitation-image img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; }
.j-invitation::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, #10161500 18%, #10161570 45%, #101615f5 74%); }
.j-invitation .j-shell { display: flex; align-items: center; justify-content: flex-end; min-height: 510px; padding-block: 70px; }
.j-invitation-content { width: 48%; }
.j-invitation .j-kicker { color: #d4d8d0; margin-bottom: 26px; font-size: 10px; }
.j-invitation h2 { max-width: 580px; font-size: clamp(40px, 4.65vw, 66px); letter-spacing: -.06em; line-height: 1.015; }
.j-invitation p { max-width: 425px; margin-top: 24px; color: #d0d4cb; font-size: 14px; line-height: 1.8; }
.j-invitation .j-pill { margin-top: 29px; }

/* Article: begin reading immediately; photography belongs in the story. */
.j-article-header { padding-block: 20px 22px; }
.j-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--j-muted); font-size: 10px; line-height: 1.6; margin-bottom: 24px; }
.j-breadcrumb :is(ol, ul) { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0; padding: 0; }
.j-breadcrumb li + li::before { content: "/"; margin-right: 10px; color: #999e94; }
.j-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.j-article-title-wrap { max-width: 960px; margin-inline: auto; }
.j-article-title-wrap .j-kicker { margin-bottom: 17px; }
.j-article-title-wrap h1 { max-width: 960px; font-size: clamp(38px,3.75vw,54px); font-weight: 550; line-height: 1.08; letter-spacing: -.05em; }
.j-deck { max-width: 740px; margin-top: 18px !important; font-size: 17px; line-height: 1.65; color: var(--j-muted); }
.j-byline { display: flex; align-items: center; gap: 12px; max-width: 960px; margin: 22px auto 0; }
.j-byline > img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; background: #e5e8df; }
.j-byline-person { display: flex; flex-direction: column; font-size: 11px; line-height: 1.55; }
.j-byline-person :is(strong,a) { font-size: 12px; font-weight: 550; }
.j-byline-person span { color: var(--j-muted); }
.j-byline-details { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 14px; margin-left: 25px; color: var(--j-muted); font-size: 10px; line-height: 1.6; }
.j-byline-details > :not(:first-child)::before { content: "·"; margin-right: 14px; }
.j-share { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 42px; margin-left: auto; padding: 10px 15px; border-radius: 100px; border: 1px solid var(--j-line); background: transparent; color: var(--j-ink); font-size: 11px; white-space: nowrap; }
.j-share:hover { background: #e5ebdf; }
.j-share svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; }
#share-status { font-size: 11px; color: var(--j-muted); max-width: 1020px; margin: 8px auto 0; }
#share-status:not(.sr-only) { order: 5; flex-basis: 100%; margin-inline: 0; }
.j-byline:has(#share-status:not(.sr-only):not(:empty)) { flex-wrap: wrap; }
#share-status:empty { display: none; }
.j-prose .j-article-hero { width: 100%; margin: 26px 0 30px; }
.j-article-hero > img { width: 100%; height: 300px; border-radius: 12px; object-fit: cover; object-position: center 46%; }
.j-article-hero figcaption { padding-top: 10px; color: var(--j-muted); font-size: 11px; line-height: 1.6; }
.j-reading-progress { position: fixed; top: var(--j-header-height); left: 0; z-index: 51; width: 100%; height: 2px; background: #597354; transform: scaleX(var(--reading-progress, 0)); transform-origin: left center; pointer-events: none; }
.j-reading-layout { display: grid; grid-template-columns: 210px minmax(0, 700px) 1fr; align-items: start; column-gap: 48px; padding-block: 20px 90px; border-top: 1px solid var(--j-line); }
.j-toc { position: sticky; top: 120px; padding-top: 7px; }
.j-toc-title { display: block; margin-bottom: 22px; color: var(--j-ink); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.j-toc-links { display: flex; flex-direction: column; gap: 4px; }
.j-toc-links :is(ul,ol) { list-style: none; margin: 0; padding: 0; }
.j-toc-links a { display: block; padding: 9px 12px; border-left: 1px solid #d6dacd; color: var(--j-muted); font-size: 11px; line-height: 1.55; transition: color .2s, border-color .2s, background .2s; }
.j-toc-links a:hover { color: var(--j-ink); background: #e8ece2; }
.j-toc-links a[data-active="true"] { border-left: 2px solid #536c4f; padding-left: 11px; color: #31462e; background: linear-gradient(90deg, #e4eade, transparent); }
.j-toc-links a > span { display: inline-block; margin-right: 9px; color: #8a9483; font-size: 9px; }
.j-toc-note { max-width: 175px; margin-top: 26px !important; font-size: 10px; line-height: 1.8; color: #767d71; }
.j-read-progress-label { display: block; margin-top: 24px; color: var(--j-muted); font-size: 10px; }
.j-toc-mobile { display: none; }
.j-prose { min-width: 0; max-width: 700px; color: #353b31; font-size: 18px; line-height: 1.85; }
.j-prose > :first-child { margin-top: 0; }
.j-prose > p { margin-block: 0 23px; }
.j-prose > p:first-child { color: #272e23; font-size: 20px; line-height: 1.75; }
.j-prose :is(h2,h3) { color: var(--j-ink); scroll-margin-top: 16px; }
.j-prose h2 { margin-block: 51px 21px; font-size: 35px; letter-spacing: -.045em; line-height: 1.15; }
.j-prose h3 { margin-block: 32px 17px; font-size: 24px; letter-spacing: -.03em; line-height: 1.3; }
.j-prose strong { color: var(--j-ink); font-weight: 600; }
.j-prose a { color: #324b30; text-decoration: underline; text-decoration-color: #8d9e85; text-underline-offset: 4px; text-decoration-thickness: 1px; overflow-wrap: anywhere; }
.j-prose a:hover { text-decoration-color: currentColor; }
.j-prose :is(ul,ol) { margin-block: 20px 27px; padding-left: 25px; }
.j-prose li { padding-left: 6px; margin-bottom: 11px; }
.j-prose li::marker { color: #607658; }
.j-prose blockquote { padding: 12px 0 12px 30px; margin-block: 39px; border-left: 2px solid #7f966e; color: #293a24; }
.j-prose blockquote p { font-family: Fraunces, Georgia, serif; font-size: 30px; font-weight: 400; font-style: italic; line-height: 1.45; letter-spacing: -.025em; }
.j-prose blockquote cite { display: block; margin-top: 13px; color: var(--j-muted); font-family: Inter, sans-serif; font-size: 12px; font-style: normal; }
.j-takeaways { padding: 29px 32px; margin-block: 32px 42px; border-radius: 13px; background: var(--j-sage); color: #354630; }
.j-takeaways h2 { margin: 0 0 15px; font-size: 20px; letter-spacing: -.025em; }
.j-takeaways .j-kicker { margin-bottom: 14px; font-size: 9px; color: #55624e; }
.j-takeaways ul { margin: 0; padding-left: 20px; font-size: 15px; line-height: 1.8; }
.j-takeaways li:last-child { margin-bottom: 0; }
.j-inline-image { margin-block: 37px; }
.j-inline-image img { width: 100%; max-height: 480px; aspect-ratio: 1.45; object-fit: cover; border-radius: 12px; }
.j-inline-image figcaption { margin-top: 10px; color: var(--j-muted); font-size: 11px; line-height: 1.6; }
.j-sources { margin-top: 45px; padding-top: 7px; border-top: 1px solid var(--j-line); }
.j-sources h2 { margin-top: 25px; font-size: 22px; }
.j-sources :is(p,li) { font-size: 12px; line-height: 1.8; }
.j-sources ol { padding-left: 20px; }
.j-sources li > span { display: block; margin-top: 5px; color: var(--j-muted); }
.j-practice-box { padding: 33px; margin-block: 39px; border-radius: 14px; background: var(--j-blue); color: #2f414a; }
.j-practice-box .j-kicker { color: #496475; margin-bottom: 14px; font-size: 10px; }
.j-practice-box h2 { margin-top: 0; font-size: 29px; }
.j-practice-box p { font-size: 14px; line-height: 1.8; }
.j-practice-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.j-practice-options button { min-height: 43px; padding: 10px 15px; border: 1px solid #aebdc6; border-radius: 100px; color: #334c5a; background: transparent; font-size: 12px; line-height: 1.5; }
.j-practice-options button[aria-pressed="true"] { color: #fff; background: #334f61; border-color: #334f61; }
.j-practice-options button:hover { border-color: #334f61; }
#practice-output { display: block; min-height: 64px; margin-top: 19px; font-size: 14px; line-height: 1.8; }
.j-author-box { display: grid; grid-template-columns: 60px 1fr; align-items: start; gap: 20px; padding-top: 32px; margin-top: 39px; border-top: 1px solid var(--j-line); }
.j-author-box > img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.j-author-box h2 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.02em; }
.j-author-box .j-kicker { font-size: 9px; margin-bottom: 10px; }
.j-author-box h2 a { margin: 0; font-size: inherit; color: var(--j-ink); text-decoration: none; }
.j-author-box p { font-size: 12px; line-height: 1.8; }
.j-author-box a { display: inline-block; margin-top: 11px; font-size: 11px; }
.j-related { padding-block: 70px 83px; background: #eeeee6; }
.j-related .j-section-heading { margin-bottom: 32px; }
.j-related .j-kicker { margin-bottom: 16px; }
.j-related.j-shell { background: transparent; }
.j-practice-box .j-practice-footnote { margin-top: 15px; color: #526b78; font-size: 10px; }
.j-related .j-section-heading > a { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; white-space: nowrap; }
.j-related .j-card-grid { gap: 25px; }

/* Progressive enhancement: copy is visible before and without JavaScript. */
.journal-page [data-reveal] { transition: transform .65s var(--j-ease), opacity .65s var(--j-ease); }
.journal-page [data-reveal].j-reveal-pending { opacity: 0; transform: translateY(20px); }
.journal-page [data-reveal].j-reveal-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .j-shell { width: calc(100% - 64px); }
  .j-masthead { gap: 35px; }
  .j-masthead-note { max-width: 240px; font-size: 14px; }
  .j-collection-card { min-height: 310px; padding: 23px; }
  .j-reading-layout { grid-template-columns: 180px minmax(0,700px); gap: 38px; }
  .j-article-title-wrap, .j-byline { max-width: 920px; }
  .j-nav { gap: 20px; }
}
@media (max-width: 980px) {
  .j-reading-layout { display: block; width: min(700px, calc(100% - 80px)); padding-top: 16px; }
  .j-toc { display: none; }
  .j-toc-mobile { display: block; margin-block: 20px; border-top: 1px solid var(--j-line); border-bottom: 1px solid var(--j-line); }
  .j-toc-mobile summary { display: flex; align-items: center; justify-content: space-between; min-height: 53px; padding-block: 12px; color: var(--j-ink); font-size: 12px; font-weight: 500; cursor: pointer; list-style: none; }
  .j-toc-mobile summary::-webkit-details-marker { display: none; }
  .j-toc-mobile summary::after { content: "+"; font-size: 19px; font-weight: 400; }
  .j-toc-mobile[open] summary::after { content: "−"; }
  .j-toc-mobile .j-toc-links { padding-bottom: 16px; }
  .j-toc-mobile .j-toc-links a { font-size: 12px; text-decoration: none; }
  .j-card-grid { gap: 38px 20px; }
  .j-card h3 { font-size: 21px; }
  .j-card-excerpt { font-size: 13px; }
  .j-invitation-content { width: 50%; }
  .j-collection-card { min-height: 290px; }
  .j-collection-card h3 { font-size: 26px; }
  .j-collection-heading p { max-width: 255px; }
}
@media (max-width: 720px) {
  :root { --j-header-height: 70px; }
  html { scroll-padding-top: 90px; }
  .j-shell { width: calc(100% - 40px); }
  .j-nav { gap: 12px; }
  .j-logo { font-size: 11px; }
  .j-logo em { font-size: 13px; }
  .j-nav-links { display: none; }
  .j-nav-cta { margin-left: auto; gap: 10px; min-height: 44px; padding: 10px 15px; font-size: 9px; letter-spacing: .045em; }
  .j-nav-cta .j-arrow { width: 12px; height: 12px; }
  .j-menu-toggle { display: flex; min-width: 44px; min-height: 44px; }
  .j-masthead { display: block; padding-block: 25px 0; }
  .j-masthead .j-kicker { margin-bottom: 19px; font-size: 9px; }
  .j-masthead h1 { font-size: clamp(43px, 7.7vw, 58px); letter-spacing: -.06em; }
  .j-masthead-note { max-width: 340px; margin-top: 24px; font-size: 13px; line-height: 1.75; }
  .j-opening-content { padding-block: 26px 27px; }
  .j-opening-image img { object-position: 61% center; }
  .j-opening::before { background: linear-gradient(90deg, #0c190eeb, #0c190e9c 65%, #0c190e52); }
  .j-opening .j-kicker { margin-bottom: 15px; font-size: 9px; }
  .j-opening h1 { font-size: clamp(34px,9.3vw,43px); }
  .j-opening-deck { max-width: 310px; margin-top: 14px !important; font-size: 16px; line-height: 1.55; }
  .j-opening-actions { gap: 18px; margin-top: 18px; }
  .j-opening .j-pill { min-height: 44px; padding: 11px 16px; font-size: 11px; gap: 12px; }
  .j-opening-story { min-height: 44px; gap: 3px; }
  .j-opening-story > span { font-size: 9px; }
  .j-opening-story strong { font-size: 11px; gap: 8px; }
  .j-library { padding-block: 26px 55px; }
  .j-library .j-section-heading { gap: 14px; }
  .j-library .j-section-heading h2 { font-size: 30px; }
  .j-section-heading { align-items: flex-start; flex-direction: column; gap: 23px; }
  .j-section-heading h2 { font-size: 34px; letter-spacing: -.055em; }
  .j-search { width: 100%; }
  .j-search input { font-size: 16px; }
  .j-topics { margin-top: 16px; gap: 7px; }
  .j-topics a { min-height: 44px; padding: 8px 13px; font-size: 10px; }
  .j-results-meta { margin-top: 16px; margin-bottom: 16px; font-size: 10px; }
  .j-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px 16px; }
  .j-card-photo { aspect-ratio: 1.22; border-radius: 11px; }
  .j-card-meta { gap: 6px; margin-top: 14px; font-size: 9px; }
  .j-card-meta .j-tag { padding: 4px 8px; font-size: 9px; }
  .j-card h3 { margin-top: 11px; font-size: 21px; letter-spacing: -.04em; line-height: 1.19; }
  .j-card-excerpt { font-size: 14px; line-height: 1.75; }
  .j-card-bottom { font-size: 9px; gap: 10px; padding-top: 16px; }
  .j-pagination { margin-top: 37px; flex-wrap: wrap; }
  .j-pagination > div { order: -1; width: 100%; justify-content: center; flex-wrap: wrap; gap: 5px; }
  .j-pagination :is(a, span) { min-width: 44px; min-height: 44px; }
  .j-pagination > div > span { min-width: 12px; padding-inline: 0; border: 0; }
  .j-collection { padding-block: 46px 49px; }
  .j-collection-heading { align-items: flex-start; flex-direction: column; gap: 17px; margin-bottom: 26px; }
  .j-collection-heading .j-kicker { margin-bottom: 0; font-size: 9px; }
  .j-collection-heading h2 { font-size: 35px; }
  .j-collection-heading p:not(.j-kicker) { max-width: 350px; font-size: 12px; }
  .j-collection-grid { gap: 12px; }
  .j-collection-card { min-height: 265px; padding: 18px; }
  .j-collection-card h3 { font-size: 23px; }
  .j-collection-card p { font-size: 10px; }
  .j-collection-card .j-arrow { top: 17px; right: 17px; }
  .j-invitation > img, .j-invitation-image, .j-invitation-image img { object-position: 28% center; }
  .j-invitation::before { background: linear-gradient(0deg, #101615fb 8%, #101615aa 48%, #10161500 90%); }
  .j-invitation .j-shell { align-items: flex-end; min-height: 660px; padding-block: 220px 44px; }
  .j-invitation-content { width: 100%; }
  .j-invitation .j-kicker { margin-bottom: 20px; font-size: 9px; }
  .j-invitation h2 { font-size: clamp(42px, 8vw, 57px); }
  .j-invitation p { max-width: 370px; margin-top: 20px; font-size: 13px; }
  .j-invitation .j-pill { margin-top: 25px; }
  .j-article-header { padding-block: 16px 18px; }
  .j-breadcrumb { margin-bottom: 18px; font-size: 9px; gap: 7px; }
  .j-article-title-wrap .j-kicker { margin-bottom: 14px; font-size: 9px; }
  .j-article-title-wrap h1 { font-size: clamp(31px, 8.5vw,42px); line-height: 1.1; letter-spacing: -.045em; }
  .j-deck { margin-top: 16px !important; font-size: 16px; line-height: 1.6; }
  .j-byline { flex-wrap: wrap; gap: 10px; margin-top: 18px; }
  .j-byline > img { width: 37px; height: 37px; }
  .j-byline-person { font-size: 10px; }
  .j-byline-person :is(strong,a) { font-size: 11px; }
  .j-byline-details { order: 4; width: 100%; margin: 8px 0 0; font-size: 9px; gap: 7px 10px; }
  .j-byline-details > :not(:first-child)::before { margin-right: 10px; }
  .j-share { min-height: 44px; padding: 9px 12px; font-size: 10px; }
  .j-article-hero > img { height: 210px; object-position: 58% center; }
  .j-article-hero figcaption { font-size: 10px; padding-top: 9px; }
  .j-reading-layout { width: calc(100% - 40px); padding-block: 20px 48px; }
  .j-toc-mobile { margin-bottom: 18px; }
  .j-toc-mobile summary { min-height: 48px; }
  .j-prose { font-size: 17px; line-height: 1.8; }
  .j-prose > p:first-child { font-size: 18px; line-height: 1.75; }
  .j-prose > p { margin-bottom: 21px; }
  .j-prose h2 { font-size: 29px; margin-block: 39px 18px; letter-spacing: -.04em; }
  .j-prose h3 { font-size: 23px; margin-block: 27px 15px; }
  .j-prose :is(ul,ol) { padding-left: 21px; }
  .j-prose li { padding-left: 3px; }
  .j-prose blockquote { padding-left: 21px; margin-block: 31px; }
  .j-prose blockquote p { font-size: 26px; line-height: 1.43; }
  .j-takeaways { margin-block: 27px 32px; padding: 24px; border-radius: 11px; }
  .j-takeaways h2 { margin: 0 0 15px; font-size: 19px; }
  .j-takeaways ul { font-size: 14px; line-height: 1.8; }
  .j-inline-image { margin-block: 30px; }
  .j-inline-image img { aspect-ratio: 1.12; border-radius: 10px; }
  .j-inline-image figcaption { font-size: 10px; }
  .j-practice-box { margin-block: 31px; padding: 24px; }
  .j-practice-box h2 { margin-top: 0; font-size: 27px; }
  .j-practice-box p, #practice-output { font-size: 13px; }
  .j-practice-options { gap: 6px; margin-top: 19px; }
  .j-practice-options button { padding-inline: 12px; font-size: 11px; }
  #practice-output { min-height: 75px; }
  .j-sources { margin-top: 32px; }
  .j-sources h2 { font-size: 21px; margin-top: 24px; }
  .j-sources :is(p,li) { font-size: 11px; }
  .j-author-box { grid-template-columns: 48px 1fr; gap: 15px; margin-top: 31px; padding-top: 25px; }
  .j-author-box > img { width: 48px; height: 48px; }
  .j-author-box h2 { margin-top: 0; font-size: 19px; }
  .j-author-box p { font-size: 11px; }
  .j-related { padding-block: 43px 50px; }
  .j-related .j-section-heading { gap: 17px; margin-bottom: 25px; }
  .j-related .j-card-grid { gap: 30px 16px; }
  .j-related .j-card:last-child { display: none; }
}
@media (max-width: 480px) {
  .j-card-grid { grid-template-columns: 1fr; gap: 34px; }
  .j-card-photo { aspect-ratio: 1.52; }
  .j-card h3 { font-size: 25px; max-width: 350px; }
  .j-card-meta { margin-top: 17px; gap: 10px; font-size: 10px; }
  .j-card-meta .j-tag { font-size: 10px; }
  .j-card-excerpt { font-size: 14px; max-width: 360px; }
  .j-card-bottom { font-size: 10px; padding-top: 17px; }
  .j-collection-grid { grid-template-columns: 1fr; gap: 13px; }
  .j-collection-card { min-height: 300px; padding: 25px; }
  .j-collection-card h3 { font-size: 31px; }
  .j-collection-card p { font-size: 12px; max-width: 280px; }
  .j-related .j-card:last-child { display: block; }
}
@media (max-width: 360px) {
  .j-shell, .j-reading-layout { width: calc(100% - 32px); }
  .j-nav { gap: 8px; }
  .j-nav-cta { padding-inline: 11px; font-size: 8px; gap: 7px; }
  .j-nav-cta .j-arrow { display: none; }
  .j-masthead h1 { font-size: 40px; }
  .j-opening-actions { gap: 12px; }
  .j-opening .j-pill { padding-inline: 12px; font-size: 10px; gap: 8px; }
  .j-opening-story strong { font-size: 10px; gap: 5px; }
  .j-opening-story > span { font-size: 8px; }
  .j-article-title-wrap h1 { font-size: 31px; }
  .j-byline-person { max-width: 143px; }
  .j-invitation h2 { font-size: 39px; }
  .j-practice-box, .j-takeaways { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .journal-page *, .journal-page *::before, .journal-page *::after { animation: none !important; transition: none !important; }
  .journal-page [data-reveal].j-reveal-pending, .journal-page [data-reveal].j-reveal-visible { opacity: 1; transform: none; }
  .journal-page :is(.j-card-link:hover .j-card-photo img, .j-collection-card:hover img, .j-pill:hover, .j-pill:hover .j-arrow, .j-card-link:hover .j-card-bottom .j-arrow) { transform: none; }
}
