@font-face {
  font-family: Newsreader;
  src: url("/assets/fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --paper: #f9f7f2;
  --ink: #30212c;
  --muted: #756d70;
  --line: #d8d2cd;
  --coral: #b44632;
  --plum: #30212c;
  --soft: #efebe3;
  --serif: Newsreader, Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
a,
button {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
blockquote {
  margin: 0;
}
p {
  line-height: 1.7;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  text-wrap: pretty;
}
h1 {
  letter-spacing: -0.035em;
}
h2 {
  letter-spacing: -0.025em;
}
h3 {
  letter-spacing: -0.015em;
}
em {
  font-family: var(--serif);
}
::selection {
  background: #e5cbc2;
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 5px;
}
a:hover {
  color: var(--coral);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.small {
  font: 12px/1.7 var(--sans);
  color: var(--muted);
}
.eyebrow {
  font: 600 10px/1.5 var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.text-link {
  font: 500 12px/1.5 var(--sans);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 5px;
  border-bottom: 1px solid currentColor;
}
.text-link span {
  font-size: 19px;
  line-height: 1;
}
.text-link:hover {
  gap: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--plum);
  color: var(--paper);
  font: 500 12px/1.5 var(--sans);
  padding: 17px 23px;
  border: 1px solid var(--plum);
  min-height: 48px;
  transition: background 0.18s;
}
.button:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
}
.button.light {
  background: var(--paper);
  color: var(--plum);
  border-color: var(--paper);
}
.button.light:hover {
  background: #e9d7cb;
}
.button span {
  font-size: 18px;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.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;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 15px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 15px;
}
.skip-link:focus {
  top: 10px;
  color: white;
}
.site-header {
  background: var(--paper);
}
.utility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  font-size: 10px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.015em;
}
.utility-actions {
  display: flex;
  gap: 29px;
}
.utility-actions a:last-child {
  color: var(--coral);
}
.masthead-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
}
.masthead {
  font: 500 clamp(55px, 8.7vw, 122px) / 1 var(--serif);
  letter-spacing: -0.055em;
  white-space: nowrap;
  display: inline-block;
}
.masthead {
  word-spacing: 0.045em;
}
.masthead:hover {
  color: var(--ink);
}
.masthead span,
.footer-wordmark span {
  color: var(--coral);
}
.masthead-caption {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.06em;
  margin: 12px 0 29px;
}
.navigation-row {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  gap: 22px;
}
.primary-navigation {
  display: flex;
  align-items: stretch;
  gap: 32px;
}
.primary-navigation a {
  font-size: 12px;
  font-weight: 500;
  padding: 18px 0;
  position: relative;
  white-space: nowrap;
}
.primary-navigation a[aria-current] {
  color: var(--coral);
}
.primary-navigation a[aria-current]:after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--coral);
  bottom: -1px;
  left: 0;
  right: 0;
}
.search-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  min-height: 44px;
}
.nav-toggle {
  display: none;
}
.compact-header .masthead-row {
  justify-content: space-between;
  padding: 25px 0;
}
.compact-header .masthead {
  font-size: 44px;
}
.compact-subscribe {
  font-size: 11px;
  color: var(--coral);
}
.compact-header .utility-row {
  min-height: 35px;
}
.lead-story {
  padding: 38px 0 40px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 55px;
  border-bottom: 1px solid var(--ink);
}
.lead-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 7px 0 12px;
}
.lead-copy > .eyebrow {
  margin-bottom: 40px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.coral-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}
.category-link {
  color: var(--coral);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.lead-copy h1 {
  font-size: clamp(42px, 4.65vw, 66px);
  max-width: 10.5em;
  margin: 19px 0 19px;
  line-height: 1.02;
}
.lead-copy h1 a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.lead-dek {
  font: 18px/1.5 var(--serif);
  max-width: 32ch;
  color: #655a60;
}
.story-meta {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.lead-read {
  margin-top: 29px;
}
.lead-figure > a {
  display: block;
  height: 440px;
  overflow: hidden;
  background: var(--soft);
}
.lead-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 61%;
}
.lead-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 11px;
}
.lead-figure figcaption a {
  font-size: 8px;
}
.frontpage-lower {
  display: grid;
  grid-template-columns: 1fr 265px;
  gap: 34px;
  padding: 36px 0 46px;
}
.latest-section {
  min-width: 0;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 23px;
}
.section-head h2 {
  font-size: 32px;
}
.section-head .text-link {
  border: 0;
  white-space: nowrap;
  font-size: 10px;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.story-image {
  display: block;
  overflow: hidden;
  background: var(--soft);
  margin-bottom: 22px;
  aspect-ratio: 1.42;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.story-card:hover .story-image img {
  transform: scale(1.025);
}
.story-card h3 {
  font-size: 27px;
  line-height: 1.08;
  margin-top: 13px;
}
.story-card h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  color: var(--ink);
}
.story-dek {
  font-size: 12px;
  line-height: 1.65;
  margin-top: 12px;
  color: var(--muted);
}
.reading-desk {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.reading-desk > .eyebrow {
  color: var(--coral);
  margin: 4px 0 20px;
}
.reading-desk h2 {
  font-size: 32px;
}
.reading-desk ol {
  list-style: none;
  padding: 0;
  margin: 23px 0 25px;
}
.reading-desk li {
  display: flex;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.desk-number {
  font: italic 24px/1 var(--serif);
  color: #9b8e90;
}
.reading-desk h3 {
  font-size: 20px;
  line-height: 1.14;
}
.reading-desk li .small {
  font-size: 9px;
  margin-top: 9px;
}
.reading-desk > .text-link {
  font-size: 10px;
}
.honest-line {
  border-top: 1px solid var(--ink);
  padding: 32px 0 45px;
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 15px 25px;
}
.honest-line > .eyebrow {
  padding-top: 10px;
  color: var(--coral);
}
.honest-line blockquote {
  font: 38px/1.17 var(--serif);
  max-width: 30ch;
  letter-spacing: -0.018em;
}
.honest-line > div {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
.honest-line .text-link {
  font-size: 10px;
}
.newsletter-band {
  background: var(--plum);
  color: var(--paper);
  padding: 58px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  align-items: center;
}
.newsletter-band .eyebrow {
  color: #d5bbad;
  margin-bottom: 19px;
}
.newsletter-band h2 {
  font-size: 62px;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.newsletter-band h2 em {
  color: #dfb19f;
  font-weight: 400;
}
.newsletter-copy > p:first-child {
  font: 21px/1.5 var(--serif);
  max-width: 39ch;
  color: #eadfdc;
}
.newsletter-copy .button {
  margin: 22px 0 12px;
}
.newsletter-copy .small {
  color: #c2b2ba;
  font-size: 10px;
}
.book-strip {
  padding-block: 70px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 76px;
  border-bottom: 1px solid var(--ink);
}
.book-stage {
  background: #e9e3d9;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  overflow: hidden;
}
.book-stage img {
  width: 180px;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(12px 13px 8px #47372d33);
  transform: rotate(-5deg);
}
.book-strip .eyebrow {
  color: var(--coral);
}
.book-strip h2 {
  font-size: 48px;
  margin: 23px 0;
}
.book-strip p:not(.eyebrow) {
  max-width: 44ch;
  color: var(--muted);
  font-size: 14px;
}
.book-strip .text-link {
  margin-top: 25px;
}
.return-section {
  padding-block: 40px 70px;
}
.return-section .section-head h2 {
  font-size: 30px;
}
.resource-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}
.resource-summary > div > p:last-child {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  max-width: 34ch;
}
.resource-summary > a {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.resource-summary > a > span:first-child {
  font: italic 24px/1 var(--serif);
  color: var(--coral);
}
.resource-summary h3 {
  font-size: 24px;
}
.resource-summary a p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 9px;
}
.resource-summary > a > span:last-child {
  margin-left: auto;
}
.site-footer {
  border-top: 1px solid var(--ink);
}
.footer-top {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr;
  gap: 45px;
}
.footer-wordmark {
  font: 500 34px/1 var(--serif);
  letter-spacing: -0.05em;
}
.footer-top > div:first-child p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.footer-top h2 {
  font: 600 9px/1.5 var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin: 0 0 18px;
}
.footer-top > div:not(:first-child) a {
  font-size: 11px;
  display: block;
  width: fit-content;
  margin-block: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 21px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: var(--muted);
}
/* Archives and interior pages */
.page-intro {
  padding-block: 64px 48px;
}
.page-intro .eyebrow {
  color: var(--coral);
  margin-bottom: 24px;
}
.page-intro h1 {
  font-size: clamp(45px, 5.4vw, 76px);
  max-width: 16ch;
}
.page-dek {
  font: 21px/1.5 var(--serif);
  color: #6a5d62;
  max-width: 52ch;
  margin-top: 25px;
}
.topic-tabs {
  border-block: 1px solid var(--line);
  display: flex;
  gap: 34px;
  margin-bottom: 38px;
}
.topic-tabs a {
  font-size: 12px;
  padding: 18px 0;
}
.topic-tabs a[aria-current] {
  box-shadow: 0 2px var(--coral);
  color: var(--coral);
}
.topic-tabs span {
  font-size: 9px;
  margin-left: 6px;
  color: var(--muted);
}
.archive-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 35px;
  padding-bottom: 70px;
}
.archive-grid .story-card h3 {
  font-size: 32px;
}
.archive-grid .story-dek {
  font-size: 14px;
}
.archive-grid .story-image {
  aspect-ratio: 1.5;
}
.article-header {
  max-width: 980px;
  padding-top: 60px;
}
.article-header > h1 {
  font-size: clamp(46px, 5.5vw, 77px);
  max-width: 19ch;
  margin-top: 25px;
  line-height: 1.02;
}
.article-dek {
  font: 24px/1.45 var(--serif);
  color: #76686e;
  max-width: 51ch;
  margin-top: 25px;
}
.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 35px;
  gap: 20px;
}
.author-link {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 11px;
}
.author-link img {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  object-fit: cover;
}
.author-link strong {
  font-weight: 500;
}
.author-link small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 5px;
}
.article-actions {
  display: flex;
  gap: 20px;
}
.article-actions button,
.copy-quote {
  background: transparent;
  border: 0;
  padding: 10px 0;
  font-size: 10px;
}
.article-actions button:hover,
.copy-quote:hover {
  color: var(--coral);
}
.article-figure {
  max-width: 1100px;
}
.article-figure > img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center 58%;
}
.article-figure figcaption {
  font-size: 9px;
  color: var(--muted);
  margin-top: 11px;
  text-align: right;
}
.article-layout {
  display: grid;
  grid-template-columns: 195px minmax(0, 670px);
  gap: 65px;
  max-width: 1040px;
  margin-block: 52px 60px;
}
.article-sidebar {
  border-top: 1px solid var(--ink);
  padding-top: 16px;
  align-self: start;
}
.article-sidebar > .eyebrow {
  color: var(--coral);
  margin-bottom: 20px;
}
.sidebar-title {
  font: 24px/1.13 var(--serif);
  margin-bottom: 14px;
}
.article-sidebar .small {
  font-size: 10px;
}
.article-sidebar .text-link {
  font-size: 10px;
  margin-top: 17px;
}
.article-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-sidebar nav a {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}
.article-sidebar nav a:hover {
  color: var(--coral);
}
.article-body {
  font: 21px/1.65 var(--serif);
  min-width: 0;
}
.article-body > p {
  margin-bottom: 24px;
  line-height: 1.68;
}
.article-body > p:not(.source-note):first-of-type::first-letter {
  font-size: 68px;
  line-height: 0.9;
  float: left;
  margin: 7px 8px 0 0;
  color: var(--coral);
}
.article-body .source-note {
  font: 11px/1.6 var(--sans);
  color: var(--muted);
  border-left: 2px solid var(--line);
  padding-left: 15px;
  margin-bottom: 33px;
}
.article-body h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 40px 0 18px;
}
.article-body h3 {
  font-size: 25px;
  margin: 27px 0 13px;
}
.article-body ul {
  padding-left: 24px;
}
.article-body li {
  margin-block: 10px;
}
.article-body > blockquote {
  font-size: 30px;
  line-height: 1.28;
  padding: 18px 0 18px 24px;
  border-left: 2px solid var(--coral);
  margin: 30px 0;
}
.article-body p a,
.article-body li a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reflection-prompt {
  background: var(--soft);
  border-top: 2px solid var(--coral);
  padding: 30px;
  margin-top: 38px;
}
.reflection-prompt .eyebrow {
  color: var(--coral);
}
.reflection-prompt h2 {
  font-size: 29px;
  margin: 18px 0;
}
.reflection-prompt > p:not(.eyebrow) {
  font: 22px/1.4 var(--serif);
}
.reflection-prompt > .small {
  font-size: 10px;
  display: block;
  margin-top: 20px;
}
.article-signoff {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 33px 0;
}
.article-signoff p {
  font-style: italic;
}
.author-box {
  display: flex;
  gap: 24px;
  border-block: 1px solid var(--line);
  padding-block: 28px;
  margin-top: 5px;
  font-family: var(--sans);
}
.author-box > img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box h2 {
  margin: 0 0 10px;
  font-size: 27px;
}
.author-box p {
  font-size: 12px;
  color: var(--muted);
}
.author-box .text-link {
  font-size: 10px;
  margin-top: 10px;
}
.related-section {
  padding-top: 35px;
  border-top: 1px solid var(--ink);
}
.reading-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 20;
  pointer-events: none;
}
.reading-progress span {
  display: block;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}
/* Books, resources, and publication */
.resource-list {
  padding-bottom: 45px;
}
.resource-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 90px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.resource-cover {
  background: #e7d6c4;
  color: var(--plum);
  width: 280px;
  max-width: 100%;
  aspect-ratio: 3/3.8;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 5px 8px 0 #30212c0b;
  justify-self: center;
}
.resource-cover > span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.resource-cover strong {
  font: 110px/1 var(--serif);
  font-weight: 400;
  letter-spacing: -0.06em;
}
.resource-cover p {
  font: 30px/1 var(--serif);
  max-width: 10ch;
}
.resource-cover small {
  font-size: 6px;
  letter-spacing: 0.15em;
  margin-top: 24px;
}
.cover-02 {
  background: var(--plum);
  color: #f4eee3;
}
.cover-03 {
  background: #d7ddcd;
}
.resource-row h2 {
  font-size: 46px;
  margin: 20px 0;
}
.resource-row > div:last-child > p:not(.eyebrow) {
  max-width: 47ch;
  color: var(--muted);
  font-size: 15px;
}
.resource-detail {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin: 19px 0 25px;
}
.resource-row .text-link {
  display: flex;
  width: fit-content;
  margin-top: 14px;
  font-size: 10px;
}
.metadata-divider {
  padding-inline: 10px;
  color: var(--muted);
}
.resource-note {
  border-top: 1px solid var(--line);
  padding-block: 30px 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.resource-note h2 {
  font-size: 35px;
}
.resource-note p {
  font-size: 12px;
  color: var(--muted);
}
.toolkit-promo {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: center;
  padding-block: 60px;
  border-top: 1px solid var(--ink);
}
.toolkit-mini-cover,
.toolkit-cover {
  background: var(--plum);
  color: #f4eee3;
  box-shadow: 12px 15px 0 #30212c12;
  display: flex;
  flex-direction: column;
}
.toolkit-mini-cover {
  width: 280px;
  max-width: 100%;
  aspect-ratio: 3/3.8;
  padding: 28px;
  justify-content: flex-start;
}
.toolkit-mini-cover span,
.toolkit-cover > span {
  font: 600 26px/0.9 var(--sans);
  letter-spacing: -0.05em;
}
.toolkit-mini-cover strong,
.toolkit-cover > strong {
  color: var(--coral);
  font: 700 56px/0.88 var(--sans);
  letter-spacing: -0.07em;
}
.toolkit-mini-cover small {
  margin-top: auto;
  font: 600 8px/1.5 var(--sans);
  letter-spacing: 0.12em;
}
.toolkit-promo h2 {
  font-size: 48px;
  max-width: 16ch;
  margin: 20px 0;
}
.toolkit-promo > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 52ch;
  font-size: 15px;
  margin-bottom: 25px;
}
.book-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 75px;
  padding-block: 60px;
}
.book-hero .book-stage {
  min-height: 550px;
}
.book-hero .book-stage img {
  width: 255px;
  max-height: 450px;
}
.book-hero > div:last-child {
  align-self: center;
}
.book-hero h1 {
  font-size: 66px;
  margin-top: 22px;
}
.book-author {
  font-size: 11px;
  margin-top: 20px;
}
.book-hero .page-dek {
  font-size: 24px;
  max-width: 33ch;
  margin: 25px 0 17px;
}
.book-hero
  > div:last-child
  > p:not(.page-dek):not(.eyebrow):not(.book-author):not(.small) {
  font-size: 14px;
  color: var(--muted);
  max-width: 44ch;
}
.book-hero .button-row {
  margin: 25px 0 16px;
}
.book-hero .small {
  font-size: 10px;
}
.book-inside {
  border-top: 1px solid var(--ink);
  padding-block: 35px 55px;
}
.truth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
}
.truth-grid > div + div {
  border-left: 1px solid var(--line);
  padding-left: 35px;
}
.truth-number {
  font: 44px/1 var(--serif);
  color: var(--coral);
}
.truth-grid h3 {
  font-size: 30px;
  line-height: 1.1;
  margin: 20px 0 14px;
}
.truth-grid p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.book-method {
  padding: 45px 0 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 60px;
}
.book-method > .eyebrow {
  grid-column: 1/-1;
  color: var(--coral);
}
.book-method h2 {
  font-size: 50px;
}
.book-method > div > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 17px;
}
.next-book {
  padding: 40px;
  background: var(--soft);
  margin-bottom: 65px;
}
.next-book h2 {
  font-size: 39px;
  margin: 20px 0;
}
.next-book > p:not(.eyebrow) {
  max-width: 60ch;
  color: var(--muted);
  font-size: 14px;
}
.next-book .text-link {
  margin-top: 20px;
}
.book-toolkit {
  background: var(--plum);
  color: #f4eee3;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  padding: 48px;
  margin-bottom: 25px;
}
.book-toolkit .eyebrow,
.book-toolkit .text-link {
  color: var(--coral);
}
.book-toolkit h2 {
  color: #f4eee3;
  font-size: 45px;
  margin-top: 18px;
}
.book-toolkit > div:last-child p {
  font-size: 14px;
  color: #d8cdd4;
  max-width: 52ch;
}
.book-toolkit .text-link {
  margin-top: 22px;
}
.toolkit-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
  padding-block: 70px 80px;
}
.toolkit-cover {
  width: 350px;
  max-width: 100%;
  aspect-ratio: 3/4;
  padding: 42px 38px;
  transform: rotate(-2deg);
}
.toolkit-cover > span {
  font-size: 42px;
}
.toolkit-cover > strong {
  font-size: 78px;
}
.toolkit-cover p {
  border-top: 1px solid #f4eee366;
  font: 18px/1.35 var(--serif);
  margin-top: auto;
  padding-top: 22px;
  max-width: 18ch;
}
.toolkit-cover small {
  color: var(--coral);
  font: 700 9px/1.4 var(--sans);
  letter-spacing: 0.11em;
  margin-top: 28px;
}
.toolkit-hero > div:last-child {
  align-self: center;
}
.toolkit-hero h1 {
  font-size: 72px;
  line-height: 0.91;
  margin: 25px 0;
}
.toolkit-hero .page-dek {
  font-size: 25px;
  max-width: 30ch;
}
.toolkit-hero > div:last-child > p:not(.eyebrow):not(.page-dek):not(.small) {
  color: var(--muted);
  max-width: 46ch;
  font-size: 14px;
  margin-top: 20px;
}
.toolkit-hero .button-row {
  margin: 28px 0 18px;
}
.toolkit-hero .small {
  font-size: 10px;
}
.toolkit-intro {
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 35px 70px;
  padding-block: 50px 70px;
}
.toolkit-intro > .eyebrow {
  grid-column: 1/-1;
}
.toolkit-intro h2 {
  font-size: 50px;
  max-width: 13ch;
}
.toolkit-intro > div p {
  color: var(--muted);
  font-size: 15px;
}
.toolkit-intro blockquote {
  border-left: 2px solid var(--coral);
  font: italic 25px/1.35 var(--serif);
  padding-left: 23px;
  margin: 30px 0 0;
}
.toolkit-inside {
  background: var(--soft);
  padding-block: 60px 75px;
}
.toolkit-inside .section-head {
  align-items: end;
}
.toolkit-inside .section-head h2 {
  font-size: 52px;
  margin-top: 16px;
}
.toolkit-inside .section-head > p {
  color: var(--muted);
  font-size: 13px;
  max-width: 40ch;
}
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.toolkit-grid article {
  background: var(--paper);
  min-height: 245px;
  padding: 30px;
}
.toolkit-grid article:last-child {
  background: var(--plum);
  color: #f4eee3;
}
.toolkit-grid article > span {
  color: var(--coral);
  font: italic 23px/1 var(--serif);
}
.toolkit-grid h3 {
  font-size: 27px;
  margin: 30px 0 13px;
  text-transform: capitalize;
}
.toolkit-grid p {
  color: var(--muted);
  font-size: 12px;
}
.toolkit-grid article:last-child p {
  color: #d8cdd4;
}
.toolkit-path {
  padding-block: 65px;
}
.toolkit-path h2 {
  font-size: 48px;
  margin: 20px 0 35px;
}
.toolkit-path > div {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 18px;
  padding-block: 24px;
  font: 600 11px/1.5 var(--sans);
}
.toolkit-path i {
  color: var(--coral);
  font-style: normal;
}
.toolkit-fit {
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding-block: 55px 75px;
}
.toolkit-fit h2 {
  font-size: 46px;
  margin-top: 20px;
}
.toolkit-fit > div:last-child p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.toolkit-fit .button {
  margin-top: 12px;
}
.about-story {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 85px;
  padding-block: 10px 65px;
}
.about-image > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.about-image .small {
  margin-top: 12px;
  font-size: 10px;
}
.about-story > div:last-child {
  padding-top: 15px;
}
.about-story h2 {
  font-size: 46px;
  margin: 20px 0;
}
.about-story p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-principles {
  border-top: 1px solid var(--ink);
  padding-block: 35px 65px;
}
.about-principles > .text-link {
  margin-top: 35px;
}
.quote-collection {
  columns: 2;
  column-gap: 30px;
  padding-bottom: 65px;
}
.quote-item {
  break-inside: avoid;
  background: var(--soft);
  padding: 35px;
  margin-bottom: 30px;
}
.quote-item:nth-child(4n + 1) {
  background: var(--plum);
  color: var(--paper);
}
.quote-item:nth-child(4n + 1) .eyebrow {
  color: #cdb6a4;
}
.quote-item .eyebrow {
  color: var(--coral);
}
.quote-item blockquote {
  font: 35px/1.15 var(--serif);
  margin: 32px 0;
}
.quote-item figcaption {
  font-size: 9px;
  opacity: 0.7;
}
.quote-item .copy-quote {
  margin-top: 20px;
  border-bottom: 1px solid currentColor;
}
.starting-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 75px;
}
.start-card {
  padding: 30px;
  background: var(--soft);
  border-top: 2px solid var(--coral);
}
.start-card .eyebrow {
  color: var(--coral);
  font-size: 9px;
}
.start-card h2 {
  font-size: 37px;
  margin: 25px 0;
}
.start-card p {
  font-size: 13px;
  color: var(--muted);
}
.start-card .text-link {
  font-size: 11px;
  margin-top: 27px;
}
.start-card:hover {
  background: #e7e0d7;
  color: var(--ink);
}
.newsletter-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 15px 80px;
}
.letter-sample {
  padding: 45px;
  background: var(--soft);
  border-top: 2px solid var(--coral);
}
.letter-sample blockquote {
  font: 46px/1.12 var(--serif);
  margin: 40px 0 25px;
}
.letter-sample > p:not(.eyebrow) {
  font: 22px/1.5 var(--serif);
}
.letter-sample > span {
  font: italic 23px/1.4 var(--serif);
  display: block;
  margin-top: 40px;
}
.newsletter-page > div:last-child {
  align-self: center;
}
.newsletter-page h2 {
  font-size: 43px;
  margin-bottom: 22px;
}
.newsletter-page h3 {
  font-size: 27px;
  margin-bottom: 15px;
}
.newsletter-page > div:last-child > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.newsletter-page .button {
  margin-bottom: 16px;
}
.newsletter-page > div:last-child > .small {
  font-size: 10px;
}
.newsletter-page hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 30px 0;
}
.search-page {
  padding-bottom: 75px;
}
.journal-search {
  display: flex;
  border-bottom: 1px solid var(--ink);
  gap: 15px;
  padding-bottom: 18px;
}
.journal-search input {
  min-width: 0;
  flex: 1;
  background: transparent;
  color: var(--ink);
  font: 26px/1.5 var(--serif);
  border: 0;
  padding: 10px 0;
}
.journal-search input::placeholder {
  color: var(--muted);
}
#search-status {
  margin: 22px 0;
}
.search-result {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}
.search-result h2 {
  font-size: 34px;
  margin: 15px 0 12px;
}
.search-result > div > p:not(.eyebrow):not(.story-meta) {
  font-size: 14px;
  color: var(--muted);
  max-width: 58ch;
}
.search-result > a {
  width: 180px;
  flex-shrink: 0;
}
.search-result img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
#search-empty {
  padding: 30px;
  background: var(--soft);
  font-size: 15px;
}
.prose-page {
  max-width: 760px;
  padding-bottom: 75px;
}
.prose-page h2 {
  font-size: 33px;
  margin: 30px 0 18px;
}
.prose-page p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 20px;
}
.prose-page p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.not-found-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-bottom: 80px;
}
@media (min-width: 1500px) {
  .lead-figure > a {
    height: 500px;
  }
  .lead-copy h1 {
    font-size: 70px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .primary-navigation {
    gap: 24px;
  }
  .lead-story {
    gap: 35px;
  }
  .lead-copy > .eyebrow {
    margin-bottom: 28px;
  }
  .lead-figure > a {
    height: 420px;
  }
  .lead-copy h1 {
    font-size: 52px;
  }
  .frontpage-lower {
    grid-template-columns: 1fr 220px;
    gap: 26px;
  }
  .reading-desk {
    padding-left: 24px;
  }
  .story-grid {
    gap: 20px;
  }
  .story-card h3 {
    font-size: 24px;
  }
  .story-dek {
    font-size: 11px;
  }
  .book-strip {
    gap: 50px;
  }
  .footer-top {
    gap: 30px;
  }
  .article-layout {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 45px;
  }
  .book-hero {
    gap: 45px;
  }
  .book-hero h1 {
    font-size: 54px;
  }
  .resource-row {
    gap: 50px;
  }
  .starting-points {
    gap: 20px;
  }
  .start-card {
    padding: 24px;
  }
  .start-card h2 {
    font-size: 30px;
  }
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .primary-navigation {
    gap: 18px;
  }
  .primary-navigation a {
    font-size: 10px;
  }
  .search-link span {
    display: none;
  }
  .lead-story {
    gap: 28px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .lead-copy h1 {
    font-size: 46px;
  }
  .lead-copy > .eyebrow {
    font-size: 8px;
    margin-bottom: 23px;
  }
  .lead-dek {
    font-size: 17px;
  }
  .lead-figure > a {
    height: 420px;
  }
  .lead-figure figcaption > span {
    display: none;
  }
  .lead-figure figcaption a {
    font-size: 8px;
  }
  .frontpage-lower {
    grid-template-columns: 1fr;
  }
  .reading-desk {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 25px 0 0;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 10px 25px;
  }
  .reading-desk > .eyebrow {
    grid-column: 1;
    margin: 0;
  }
  .reading-desk h2 {
    grid-column: 1;
    font-size: 32px;
  }
  .reading-desk ol {
    grid-column: 2;
    grid-row: 1/4;
    margin: 0;
    display: flex;
    gap: 25px;
  }
  .reading-desk li {
    border-top: 0;
    padding: 0;
  }
  .reading-desk > .text-link {
    justify-self: start;
  }
  .honest-line {
    grid-template-columns: 140px 1fr;
  }
  .honest-line blockquote {
    font-size: 33px;
  }
  .honest-line > div {
    align-items: flex-start;
  }
  .newsletter-grid {
    gap: 40px;
  }
  .newsletter-band h2 {
    font-size: 52px;
  }
  .newsletter-copy > p:first-child {
    font-size: 19px;
  }
  .book-strip {
    gap: 45px;
  }
  .book-strip h2 {
    font-size: 42px;
  }
  .book-stage {
    min-height: 320px;
    padding: 30px;
  }
  .book-stage img {
    width: 155px;
  }
  .resource-summary {
    gap: 20px;
  }
  .resource-summary > a {
    gap: 12px;
  }
  .resource-summary h3 {
    font-size: 21px;
  }
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
  }
  .footer-top > div:last-child {
    display: none;
  }
  .archive-grid,
  .related-grid {
    gap: 35px 23px;
  }
  .archive-grid .story-card h3 {
    font-size: 28px;
  }
  .archive-grid .story-dek {
    font-size: 12px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    max-width: 670px;
  }
  .article-sidebar {
    display: none;
  }
  .article-header h1 {
    font-size: 62px;
  }
  .article-figure > img {
    height: 360px;
  }
  .resource-row h2 {
    font-size: 38px;
  }
  .resource-cover {
    width: 240px;
  }
  .resource-cover strong {
    font-size: 90px;
  }
  .resource-cover p {
    font-size: 28px;
  }
  .book-hero .book-stage {
    min-height: 480px;
  }
  .book-hero .book-stage img {
    width: 210px;
  }
  .book-hero h1 {
    font-size: 49px;
  }
  .truth-grid {
    gap: 25px;
  }
  .truth-grid > div + div {
    padding-left: 23px;
  }
  .truth-grid h3 {
    font-size: 26px;
  }
  .about-story {
    gap: 40px;
  }
  .about-story p:not(.eyebrow) {
    font-size: 14px;
  }
  .quote-item {
    padding: 27px;
  }
  .quote-item blockquote {
    font-size: 30px;
  }
  .starting-points {
    grid-template-columns: 1fr;
  }
  .start-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
  }
  .start-card .eyebrow {
    grid-column: 1/-1;
  }
  .start-card h2 {
    margin: 10px 0;
    font-size: 35px;
  }
  .start-card > p {
    align-self: center;
  }
  .start-card .text-link {
    grid-column: 2;
    margin: 0;
    justify-self: start;
  }
  .newsletter-page {
    gap: 35px;
  }
  .letter-sample {
    padding: 30px;
  }
  .letter-sample blockquote {
    font-size: 38px;
  }
}
@media (max-width: 680px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .utility-row {
    min-height: 37px;
    font-size: 8px;
  }
  .utility-about {
    font-size: 8px;
  }
  .utility-actions {
    gap: 12px;
  }
  .utility-actions a:first-child {
    display: none;
  }
  .masthead-row {
    padding-top: 23px;
    justify-content: space-between;
    gap: 14px;
  }
  .masthead {
    font-size: clamp(34px, 8.6vw, 56px);
  }
  .masthead-caption {
    font-size: 9px;
    text-align: left;
    margin: 12px 0 24px;
    letter-spacing: 0.02em;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 44px;
    flex-shrink: 0;
    background: none;
    border: 0;
    padding: 8px;
  }
  .nav-toggle span {
    height: 1px;
    background: var(--ink);
    width: 22px;
    transition: transform 0.18s;
  }
  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .navigation-row {
    align-items: flex-start;
    gap: 12px;
    min-height: 45px;
  }
  .primary-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 0 19px;
  }
  .primary-navigation a {
    font-size: 9px;
    padding: 15px 0;
  }
  .primary-navigation a:nth-child(n + 4) {
    display: none;
  }
  .primary-navigation.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    gap: 0 20px;
    padding-bottom: 7px;
  }
  .primary-navigation.open a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }
  .primary-navigation a[aria-current]:after {
    bottom: 0;
  }
  .search-link {
    width: 24px;
    flex-shrink: 0;
    min-height: 44px;
  }
  .compact-header .masthead-row {
    padding: 20px 0;
  }
  .compact-header .masthead {
    font-size: 34px;
  }
  .compact-subscribe {
    display: none;
  }
  .lead-story {
    padding: 28px 0 27px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .lead-copy {
    padding: 0;
    display: block;
  }
  .lead-copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .lead-copy > .category-link {
    font-size: 9px;
  }
  .lead-copy h1 {
    font-size: 50px;
    max-width: 11ch;
    line-height: 1.01;
    margin: 16px 0;
  }
  .lead-dek {
    font-size: 19px;
    max-width: 33ch;
  }
  .story-meta {
    margin-top: 16px;
    font-size: 10px;
  }
  .lead-read {
    margin-top: 20px;
    font-size: 11px;
  }
  .lead-figure > a {
    height: auto;
    aspect-ratio: 1.25;
  }
  .lead-figure figcaption {
    margin-top: 9px;
  }
  .lead-figure figcaption > span {
    display: block;
    font-size: 8px;
  }
  .lead-figure figcaption a {
    font-size: 7px;
  }
  .frontpage-lower {
    padding: 29px 0;
    gap: 27px;
  }
  .section-head {
    padding-bottom: 20px;
    gap: 12px;
  }
  .section-head h2 {
    font-size: 29px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .story-grid .story-card {
    display: grid;
    grid-template-columns: 1fr 112px;
    gap: 0 22px;
    border-bottom: 1px solid var(--line);
    padding: 23px 0;
  }
  .story-grid .story-card:first-child {
    padding-top: 0;
  }
  .story-grid .story-image {
    grid-column: 2;
    grid-row: 1/5;
    margin: 0;
    aspect-ratio: 1/1.18;
    align-self: start;
  }
  .story-grid .category-link {
    grid-column: 1;
    font-size: 8px;
  }
  .story-grid .story-card h3 {
    font-size: 27px;
    margin-top: 11px;
  }
  .story-grid .story-dek {
    display: none;
  }
  .story-grid .story-meta {
    font-size: 9px;
    margin-top: 13px;
  }
  .reading-desk {
    grid-template-columns: 1fr;
    gap: 15px;
    border: 0;
    padding-top: 0;
  }
  .reading-desk > .eyebrow {
    margin-top: 0;
  }
  .reading-desk h2 {
    font-size: 34px;
  }
  .reading-desk h2 br {
    display: none;
  }
  .reading-desk ol {
    grid-column: 1;
    grid-row: auto;
    gap: 20px;
    margin: 4px 0;
  }
  .reading-desk li {
    flex: 1;
    gap: 10px;
  }
  .reading-desk h3 {
    font-size: 21px;
  }
  .reading-desk .desk-number {
    font-size: 23px;
  }
  .honest-line {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 27px 0 35px;
  }
  .honest-line > .eyebrow {
    padding: 0;
  }
  .honest-line blockquote {
    font-size: 34px;
    max-width: 23ch;
  }
  .honest-line > div {
    grid-column: 1;
    flex-direction: column;
    gap: 12px;
  }
  .honest-line > div > span {
    font-size: 9px;
  }
  .newsletter-band {
    padding: 39px 0;
  }
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .newsletter-band h2 {
    font-size: 55px;
  }
  .newsletter-band .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .newsletter-copy > p:first-child {
    font-size: 20px;
  }
  .newsletter-copy .button {
    font-size: 11px;
  }
  .newsletter-copy .small {
    font-size: 9px;
  }
  .book-strip {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 40px;
  }
  .book-stage {
    min-height: 300px;
    padding: 30px;
  }
  .book-stage img {
    width: 155px;
  }
  .book-strip h2 {
    font-size: 43px;
    margin: 20px 0;
  }
  .book-strip p:not(.eyebrow) {
    font-size: 13px;
  }
  .return-section {
    padding-block: 30px 45px;
  }
  .return-section .section-head {
    flex-direction: column;
    gap: 10px;
  }
  .return-section .section-head h2 {
    font-size: 31px;
    max-width: 18ch;
  }
  .resource-summary {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .resource-summary > div > p:last-child {
    max-width: none;
    font-size: 13px;
  }
  .resource-summary > a {
    gap: 20px;
  }
  .resource-summary h3 {
    font-size: 27px;
  }
  .resource-summary a p {
    font-size: 12px;
  }
  .footer-top {
    padding: 35px 0;
    grid-template-columns: 1fr 1fr;
    gap: 34px 25px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-wordmark {
    font-size: 37px;
  }
  .footer-top > div:first-child p {
    margin-top: 12px;
    font-size: 11px;
  }
  .footer-top h2 {
    font-size: 9px;
  }
  .footer-top > div:not(:first-child) a {
    font-size: 11px;
    margin-block: 13px;
  }
  .footer-bottom {
    padding: 20px 0;
    flex-wrap: wrap;
    font-size: 8px;
    gap: 12px 20px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    flex-basis: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .page-intro {
    padding-block: 40px 33px;
  }
  .page-intro .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .page-intro h1 {
    font-size: 49px;
    max-width: 17ch;
  }
  .page-dek {
    font-size: 20px;
    margin-top: 21px;
  }
  .topic-tabs {
    gap: 0 22px;
    flex-wrap: wrap;
    margin-bottom: 29px;
  }
  .topic-tabs a {
    font-size: 10px;
    padding: 15px 0;
  }
  .archive-grid,
  .related-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 45px;
  }
  .archive-grid .story-card h3,
  .related-grid .story-card h3 {
    font-size: 33px;
  }
  .archive-grid .story-image,
  .related-grid .story-image {
    margin-bottom: 20px;
  }
  .archive-grid .story-dek,
  .related-grid .story-dek {
    font-size: 13px;
  }
  .article-header {
    padding-top: 35px;
  }
  .article-header > h1 {
    font-size: 47px;
    max-width: 16ch;
    margin-top: 20px;
  }
  .article-dek {
    font-size: 21px;
    margin-top: 20px;
  }
  .article-byline {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin: 25px 0 20px;
  }
  .author-link {
    font-size: 11px;
  }
  .author-link small {
    font-size: 9px;
  }
  .article-actions {
    gap: 25px;
  }
  .article-actions button {
    font-size: 10px;
  }
  .article-figure > img {
    height: 270px;
  }
  .article-figure figcaption {
    font-size: 8px;
  }
  .article-layout {
    margin-block: 32px 40px;
  }
  .article-body {
    font-size: 20px;
  }
  .article-body > p {
    margin-bottom: 23px;
    line-height: 1.65;
  }
  .article-body h2 {
    font-size: 31px;
    margin-top: 33px;
  }
  .article-body h3 {
    font-size: 25px;
  }
  .article-body > blockquote {
    font-size: 28px;
    padding-left: 20px;
  }
  .article-body .source-note {
    font-size: 10px;
  }
  .reflection-prompt {
    padding: 25px 23px;
  }
  .reflection-prompt h2 {
    font-size: 29px;
  }
  .reflection-prompt > p:not(.eyebrow) {
    font-size: 21px;
  }
  .author-box {
    gap: 18px;
  }
  .author-box > img {
    width: 55px;
    height: 55px;
  }
  .author-box h2 {
    font-size: 25px;
  }
  .author-box p {
    font-size: 11px;
  }
  .related-section {
    padding-top: 28px;
  }
  .resource-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 34px 0;
  }
  .resource-cover {
    width: 230px;
    padding: 25px;
  }
  .resource-cover strong {
    font-size: 85px;
  }
  .resource-cover p {
    font-size: 27px;
  }
  .resource-row h2 {
    font-size: 39px;
    margin: 17px 0;
  }
  .resource-row > div:last-child > p:not(.eyebrow) {
    font-size: 14px;
  }
  .resource-row .eyebrow {
    font-size: 9px;
  }
  .resource-note {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 27px 40px;
  }
  .resource-note h2 {
    font-size: 32px;
  }
  .book-hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 30px 40px;
  }
  .book-hero .book-stage {
    min-height: 370px;
  }
  .book-hero .book-stage img {
    width: 180px;
    max-height: 300px;
  }
  .book-hero h1 {
    font-size: 54px;
  }
  .book-hero .page-dek {
    font-size: 23px;
  }
  .book-inside {
    padding-block: 27px 40px;
  }
  .truth-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .truth-grid > div + div {
    padding: 25px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .truth-grid h3 {
    font-size: 29px;
    margin-top: 16px;
    max-width: 22ch;
  }
  .truth-grid p:not(.eyebrow) {
    font-size: 13px;
  }
  .book-method {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-block: 30px 40px;
  }
  .book-method h2 {
    font-size: 43px;
  }
  .next-book {
    padding: 30px 23px;
    margin-bottom: 40px;
  }
  .next-book h2 {
    font-size: 35px;
  }
  .next-book .eyebrow {
    font-size: 8px;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }
  .about-image {
    max-width: 370px;
  }
  .about-story h2 {
    font-size: 42px;
  }
  .about-principles {
    padding-block: 30px 40px;
  }
  .quote-collection {
    columns: 1;
    padding-bottom: 35px;
  }
  .quote-item {
    padding: 30px 25px;
    margin-bottom: 22px;
  }
  .quote-item blockquote {
    font-size: 34px;
  }
  .starting-points {
    padding-bottom: 40px;
    gap: 23px;
  }
  .start-card {
    display: block;
    padding: 28px;
  }
  .start-card h2 {
    font-size: 36px;
    margin: 25px 0 17px;
  }
  .start-card .text-link {
    margin-top: 25px;
  }
  .newsletter-page {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 0 45px;
  }
  .letter-sample {
    padding: 30px;
  }
  .letter-sample blockquote {
    font-size: 40px;
    margin-block: 32px 25px;
  }
  .newsletter-page h2 {
    font-size: 38px;
  }
  .journal-search {
    gap: 10px;
  }
  .journal-search input {
    font-size: 20px;
    width: 60%;
    padding: 6px 0;
  }
  .journal-search .button {
    font-size: 11px;
    padding: 12px 16px;
    gap: 15px;
  }
  .search-result {
    gap: 20px;
    padding-block: 24px;
  }
  .search-result > a {
    width: 85px;
  }
  .search-result img {
    height: 105px;
  }
  .search-result .eyebrow {
    font-size: 8px;
  }
  .search-result h2 {
    font-size: 27px;
    margin-top: 12px;
  }
  .search-result > div > p:not(.eyebrow):not(.story-meta) {
    font-size: 12px;
  }
  .search-result .story-meta {
    font-size: 8px;
  }
  .prose-page {
    padding-bottom: 40px;
  }
  .prose-page p {
    font-size: 14px;
  }
  .prose-page h2 {
    font-size: 31px;
  }
  .not-found-actions {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 45px;
  }
}
@media (max-width: 370px) {
  .masthead {
    font-size: 30px;
  }
  .compact-header .masthead {
    font-size: 30px;
  }
  .primary-navigation {
    gap: 15px;
  }
  .primary-navigation a {
    font-size: 8px;
  }
  .lead-copy h1 {
    font-size: 45px;
  }
  .page-intro h1 {
    font-size: 43px;
  }
  .article-header h1 {
    font-size: 42px;
  }
  .lead-figure figcaption > span {
    display: none;
  }
  .reading-desk ol {
    flex-direction: column;
  }
  .story-grid .story-card {
    grid-template-columns: 1fr 90px;
    gap: 0 16px;
  }
  .story-grid .story-card h3 {
    font-size: 25px;
  }
  .book-hero h1 {
    font-size: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media (max-width: 720px) {
  .toolkit-promo,
  .book-toolkit,
  .toolkit-hero,
  .toolkit-intro,
  .toolkit-fit {
    grid-template-columns: 1fr;
  }
  .toolkit-promo {
    gap: 35px;
    padding-block: 40px;
  }
  .toolkit-mini-cover {
    width: 230px;
  }
  .toolkit-promo h2 {
    font-size: 39px;
  }
  .book-toolkit {
    gap: 20px;
    padding: 30px 23px;
  }
  .book-toolkit h2 {
    font-size: 38px;
  }
  .toolkit-hero {
    gap: 45px;
    padding-block: 45px 55px;
  }
  .toolkit-cover {
    width: 280px;
    justify-self: center;
    padding: 34px 30px;
  }
  .toolkit-cover > span {
    font-size: 34px;
  }
  .toolkit-cover > strong {
    font-size: 63px;
  }
  .toolkit-hero h1 {
    font-size: 58px;
  }
  .toolkit-hero .page-dek {
    font-size: 22px;
  }
  .toolkit-intro {
    gap: 24px;
    padding-block: 40px 50px;
  }
  .toolkit-intro h2,
  .toolkit-inside .section-head h2,
  .toolkit-path h2,
  .toolkit-fit h2 {
    font-size: 39px;
  }
  .toolkit-grid {
    grid-template-columns: 1fr;
  }
  .toolkit-grid article {
    min-height: 0;
  }
  .toolkit-path > div {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .toolkit-path i {
    transform: rotate(90deg);
    width: fit-content;
  }
  .toolkit-fit {
    gap: 25px;
    padding-block: 40px 55px;
  }
}
@media print {
  body {
    background: white;
    color: black;
  }
  .site-header,
  .site-footer,
  .newsletter-band,
  .article-actions,
  .reading-progress,
  .article-sidebar,
  .related-section,
  .skip-link {
    display: none !important;
  }
  .wrap {
    width: 100%;
    max-width: none;
  }
  .article-layout {
    display: block;
    margin-top: 25px;
  }
  .article-header {
    padding-top: 0;
  }
  .article-header h1 {
    font-size: 38px;
  }
  .article-dek {
    font-size: 20px;
  }
  .article-figure > img {
    height: 250px;
  }
  .article-body {
    font-size: 13pt;
  }
  .article-body h2 {
    font-size: 20pt;
  }
  .reflection-prompt,
  .author-box {
    break-inside: avoid;
  }
  .article-body a {
    text-decoration: underline;
  }
  a {
    color: inherit !important;
  }
}

/* Publisher catalogue: two concise, equal-weight editions. */
.books-shelf {
  padding-block: 58px 72px;
  border-bottom: 1px solid var(--line);
}
.books-shelf-page { padding-top: 0; }
.book-catalog,
.book-reading-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.book-listing {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(210px, .84fr) minmax(240px, 1fr);
  background: #f3eee6;
  border: 1px solid #ded5c9;
}
.book-listing-02 { background: #eee8df; }
.book-catalog .book-stage {
  position: relative;
  min-height: 455px;
  padding: 58px 34px 48px;
  background: #e6ddd1;
  border-right: 1px solid #d8cec1;
}
.book-listing-02 .book-stage { background: #e1d8cc; }
.book-catalog .book-stage::after {
  content: "";
  position: absolute;
  inset: auto 14% 34px;
  height: 22px;
  background: #4637422b;
  filter: blur(18px);
  border-radius: 50%;
}
.book-catalog .book-stage img {
  position: relative;
  z-index: 1;
  width: min(190px, 76%);
  height: auto;
  max-height: 300px;
  transform: rotate(-2.5deg);
  filter: drop-shadow(11px 16px 11px #2e24222b);
}
.book-listing-02 .book-stage img { transform: rotate(2.5deg); }
.book-number {
  position: absolute;
  top: 22px;
  left: 22px;
  font: 12px/1 var(--sans);
  letter-spacing: .18em;
  color: #766c64;
}
.book-edition {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 22px;
  font: 9px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #766c64;
}
.book-listing-copy {
  display: flex;
  flex-direction: column;
  padding: 38px 34px 34px;
}
.book-listing-copy > .eyebrow {
  color: var(--coral);
  margin-bottom: 30px;
}
.book-listing-copy h2,
.book-listing-copy h3 {
  font-size: clamp(30px, 2.6vw, 41px);
  line-height: 1.02;
  max-width: 11ch;
  margin: 0;
}
.book-listing-copy .book-author {
  margin: 14px 0 31px;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.book-listing-description {
  max-width: 31ch;
  margin-bottom: 20px;
  color: var(--muted);
  font: 18px/1.45 var(--serif);
}
.book-format {
  padding-top: 16px;
  border-top: 1px solid #d8cec1;
  color: #766c64;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.book-listing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: auto;
  padding-top: 28px;
}
.book-listing-actions .button {
  padding: 14px 18px;
  font-size: 11px;
}
.book-listing-actions .text-link { font-size: 13px; }
.book-reading { padding-block: 45px 65px; }
.book-reading-grid { gap: 50px; }
.book-reading-grid h2 { font-size: 36px; line-height: 1.1; margin: 18px 0; }
.book-reading-grid p:not(.eyebrow) { color: var(--muted); font-size: 15px; max-width: 44ch; margin-bottom: 22px; }
#next-book, #inside, #the-reset { scroll-margin-top: 100px; }
@media (max-width: 1050px) {
  .book-listing { grid-template-columns: 1fr; }
  .book-catalog .book-stage { min-height: 390px; border-right: 0; border-bottom: 1px solid #d8cec1; }
  .book-catalog .book-stage img { width: 190px; max-height: 285px; }
}
@media (max-width: 700px) {
  .book-catalog,
  .book-reading-grid { grid-template-columns: 1fr; gap: 18px; }
  .book-catalog .book-stage { min-height: 350px; padding: 48px 30px 42px; }
  .book-catalog .book-stage img { width: 175px; max-height: 262px; }
  .book-listing-copy { padding: 28px 26px 30px; }
  .book-listing-copy > .eyebrow { margin-bottom: 22px; }
  .book-listing-copy h2,
  .book-listing-copy h3 { font-size: 35px; }
  .book-listing-description { font-size: 18px; }
  .books-shelf { padding-block: 38px 46px; }
  .books-shelf-page { padding-top: 0; }
}
