:root {
  --paper: #e5ded3;
  --paper-deep: #d1c7ba;
  --paper-pale: #f3eee6;
  --ink: #15120f;
  --charcoal: #090d0f;
  --charcoal-2: #101518;
  --muted: #575652;
  --line: #aca69e;
  --line-dark: #3d403f;
  --rust: #9a4c30;
  --gold: #c49345;
  --white: #f3eee6;
  --sidebar: 292px;
  --shadow: 0 22px 54px rgba(18, 22, 25, 0.16);
  color-scheme: light;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-ui: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--charcoal);
  color: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(115, 95, 63, 0.08) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(0deg, rgba(115, 95, 63, 0.06) 1px, transparent 1px) 0 0 / 46px 46px,
    var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(167, 71, 37, 0.5);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--rust);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--ink);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: var(--sidebar);
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, rgba(201, 146, 47, 0.08), transparent 35%),
    var(--charcoal);
  color: var(--paper);
  padding: 2rem 1.65rem;
}

.site-shell {
  min-height: 100vh;
  margin-left: var(--sidebar);
  background: var(--paper);
}

.mobile-header {
  display: none;
}

.brand {
  display: grid;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.brand__name {
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 0.65rem 0;
  font-family: var(--font-ui);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
}

.brand__tagline {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-nav {
  display: grid;
  gap: 0.15rem;
  margin-top: 3rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  border-top: 1px solid rgba(247, 240, 223, 0.16);
  padding: 0.72rem 0;
  color: rgba(247, 240, 223, 0.76);
  text-decoration: none;
}

.site-nav a:last-child {
  border-bottom: 1px solid rgba(247, 240, 223, 0.16);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
}

.site-nav a[aria-current="page"] {
  padding-left: 0.75rem;
  border-left: 3px solid var(--gold);
}

.site-sidebar__footer {
  display: grid;
  gap: 1.15rem;
  color: rgba(247, 240, 223, 0.68);
  font-size: 0.95rem;
  line-height: 1.45;
}

.site-sidebar__footer p {
  margin: 0;
}

.site-sidebar__footer p:first-child {
  color: var(--paper);
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--rust);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.04;
}

.lede {
  max-width: 700px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  margin-top: 2rem;
  padding: 0.75rem 1.1rem;
  background: var(--rust);
  color: var(--paper-pale);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover {
  background: var(--gold);
  color: var(--ink);
}

.home-hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 36%);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.5rem, 5vw, 5.5rem);
}

.home-hero__copy {
  max-width: 860px;
}

.home-hero__visual {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: stretch;
  justify-self: end;
  width: min(100%, 560px);
}

.home-hero__caption {
  margin: 0;
  color: var(--rust);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.home-hero__image {
  min-height: 330px;
  margin: 0;
  border: 1px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(201, 146, 47, 0.18), rgba(167, 71, 37, 0.1)),
    var(--paper-deep);
  box-shadow: var(--shadow);
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center top;
}

.explore {
  background: var(--charcoal);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5.5rem);
}

.explore__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.explore .eyebrow {
  color: var(--gold);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.path-link {
  display: grid;
  min-height: 210px;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.65rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 1.1rem;
  color: var(--paper);
  text-decoration: none;
}

.path-link:hover {
  background: var(--charcoal-2);
  color: var(--paper);
}

.path-link__marker {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
}

.path-link__title {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.08;
}

.path-link small {
  color: rgba(247, 240, 223, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.path-link__action {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5.5rem);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.home-quote blockquote {
  max-width: 850px;
  margin: 0;
}

.home-quote blockquote p {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.home-quote cite {
  display: block;
  margin-top: 1rem;
  color: var(--rust);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.elsewhere {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
  color: var(--muted);
}

.elsewhere p {
  margin: 0;
}

.elsewhere .eyebrow {
  margin-bottom: 0.65rem;
}

.page-hero,
.section,
.article {
  width: min(100% - 48px, 760px);
  margin: 0 auto;
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 2rem;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.25rem);
  line-height: 0.96;
}

.section {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.work-grid--archive {
  width: min(100vw - var(--sidebar) - 48px, 1080px);
  margin-left: 50%;
  transform: translateX(-50%);
}

.work-card {
  min-height: 100%;
}

.work-card__link {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: rgba(255, 253, 246, 0.62);
  color: var(--ink);
  text-decoration: none;
}

.work-card__link:hover {
  border-color: var(--rust);
  color: var(--ink);
}

.work-card__image,
.work-card__monogram {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.work-card__image {
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--line);
}

.work-card__monogram {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(201, 146, 47, 0.22), rgba(167, 71, 37, 0.12)),
    var(--paper-deep);
  border-bottom: 1px solid var(--line);
  color: var(--rust);
  font-size: 4.8rem;
  line-height: 1;
}

.work-card__body {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.work-card__type,
.work-card__meta {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.work-card__title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
}

.work-card__description {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.work-card__meta {
  margin-top: auto;
}

.article {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.article__intro {
  margin-bottom: 2rem;
}

.article__intro--with-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: start;
}

.article__header h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.article__portrait {
  justify-self: end;
  width: min(100%, 220px);
  margin: 0;
  border: 1px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(201, 146, 47, 0.18), rgba(167, 71, 37, 0.1)),
    var(--paper-deep);
  box-shadow: var(--shadow);
}

.article__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-list a {
  border: 1px solid var(--line);
  padding: 0.25rem 0.55rem;
  background: var(--paper-pale);
  color: var(--muted);
  text-decoration: none;
}

.tag-list a:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.article__image {
  margin: 2rem 0;
  border: 1px solid var(--line);
  background: var(--paper-pale);
  box-shadow: var(--shadow);
}

.article__image img {
  width: 100%;
}

.article__body {
  font-size: 1.14rem;
}

.article__body p,
.article__body ul,
.article__body ol,
.article__body blockquote {
  margin: 0 0 1.25rem;
}

.article__body h2,
.article__body h3 {
  margin: 2rem 0 1rem;
  line-height: 1.08;
}

.article__body h2 {
  font-size: 2rem;
}

.article__body h3 {
  font-size: 1.45rem;
}

.article__body blockquote {
  border-left: 4px solid var(--rust);
  padding-left: 1rem;
  color: var(--muted);
}

.article__body strong {
  font-weight: 800;
}

.empty-state {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.2rem;
}

.site-footer {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --sidebar: 248px;
  }

  .site-sidebar {
    padding: 1.5rem 1.25rem;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero__visual {
    justify-self: start;
  }

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

@media (max-width: 780px) {
  body {
    font-size: 17px;
  }

  .site-sidebar {
    display: none;
  }

  .site-shell {
    margin-left: 0;
  }

  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: block;
    border-bottom: 1px solid var(--line-dark);
    background:
      linear-gradient(180deg, rgba(196, 147, 69, 0.08), transparent 80%),
      var(--charcoal);
    color: var(--paper);
    padding: 1rem;
    backdrop-filter: blur(12px);
  }

  .mobile-header .brand {
    color: var(--paper);
  }

  .mobile-header .brand__name {
    width: max-content;
    max-width: 100%;
    font-size: 1.1rem;
  }

  .mobile-header .site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.7rem;
    margin-top: 1rem;
    font-size: 0.68rem;
  }

  .mobile-header .site-nav a,
  .mobile-header .site-nav a:last-child {
    border: 0;
    padding: 0;
    color: rgba(243, 238, 230, 0.74);
  }

  .mobile-header .site-nav a[aria-current="page"] {
    border-left: 0;
    color: var(--gold);
    padding-left: 0;
  }

  .home-hero,
  .explore,
  .home-quote {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .home-hero__visual {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .home-hero__caption {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .home-hero__image,
  .home-hero__image img {
    min-height: 320px;
  }

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

  .path-link {
    min-height: 210px;
  }

  .home-quote {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .section,
  .article {
    width: min(100% - 32px, 760px);
  }

  .work-grid--archive {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .article__intro--with-image {
    grid-template-columns: 1fr;
  }

  .article__portrait {
    order: -1;
    justify-self: start;
    width: min(220px, 70vw);
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
    padding: 1rem;
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-footer p {
    margin: 0;
  }

  .site-footer a {
    text-decoration: none;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.65rem;
  }

  .home-hero__image,
  .home-hero__image img {
    min-height: 260px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }
}
.article__body p {
  line-height: 1.85;
}

.article__body p + p {
  margin-top: 1.25rem;
}
.reason-summary-block {
  margin: 3rem 0 0;
  max-width: 100%;
  overflow-x: auto;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(130, 65, 35, 0.08);
  -webkit-overflow-scrolling: touch;
}

.reason-summary-block h2 {
  margin-top: 0;
}

.reason-summary-block table {
  display: table;
  min-width: 760px;
}
.book-cover {
  margin: 1.5rem 0 1.25rem;
  max-width: 260px;
}

.book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(38, 28, 20, 0.18);
}

@media (max-width: 700px) {
  .book-cover {
    max-width: 220px;
  }
}

/* Keep code poems and wide tables from breaking mobile layout. */
.article__body .highlight {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article__body pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 1rem;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
}

.article__body code {
  overflow-wrap: normal;
  word-break: normal;
}

.article__body table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* Hard stop: prevent code blocks from making the whole mobile page swipe sideways. */
html,
body,
.site-shell,
main {
  max-width: 100%;
  overflow-x: hidden;
}

.article,
.article__body,
.article__body .highlight {
  max-width: 100%;
  min-width: 0;
}

.article__body .highlight {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.article__body .highlight pre,
.article__body pre {
  width: max-content;
  min-width: 100%;
  max-width: none;
  overflow-x: visible;
  margin: 0;
  box-sizing: border-box;
}

.article__body .highlight code,
.article__body pre code {
  white-space: pre;
}

.image-credit {
  margin: 0.35rem 0 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f5548;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
  font-style: normal;
}

.image-credit a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 38rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 0.2rem;
  background: rgba(255, 252, 245, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 0.7rem 0.8rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact-form button {
  justify-self: start;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
}

.contact-form button:hover {
  background: transparent;
  color: var(--ink);
}

.contact-form__botcheck {
  display: none;
}


/* About page portrait */
.article__image--feature img[src="/images/milo-headshot.jpg"] {
  width: min(100%, 560px);
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}

.article__image--feature:has(img[src="/images/milo-headshot.jpg"]) {
  max-width: 600px;
  margin: 0 auto 2.25rem;
}

@media (min-width: 900px) {
  .article__image--feature:has(img[src="/images/milo-headshot.jpg"]) {
    max-width: 640px;
    margin-left: 0;
    margin-right: auto;
  }

  .article__image--feature img[src="/images/milo-headshot.jpg"] {
    width: 600px;
  }
}

/* 404 page */
.error-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.error-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1;
}

.error-page__lede {
  max-width: 38rem;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.error-page__signal {
  border: 1px solid var(--rule);
  background: rgba(255, 252, 245, 0.58);
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  margin: 1.75rem 0;
  max-width: 24rem;
  padding: 1.5rem;
}

.error-page__satellite {
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 0.2em;
}

.error-page__dish {
  font-size: 3.25rem;
  line-height: 1;
  filter: grayscale(1);
}

.error-page__static {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.error-page__text {
  margin-bottom: 0.75rem;
}

.error-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.error-page__links a {
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

/* Works page book feature */
.book-feature {
  align-items: start;
  border: 1px solid var(--rule);
  display: grid;
  gap: 1.5rem;
  margin: 1.25rem 0 2.5rem;
  padding: 1.25rem;
}

.book-feature__cover {
  margin: 0;
  max-width: 220px;
}

.book-feature__cover img {
  border: 1px solid var(--rule);
  display: block;
  height: auto;
  width: 100%;
}

.book-feature__body h3 {
  margin-top: 0;
}

@media (min-width: 760px) {
  .book-feature {
    grid-template-columns: 180px 1fr;
  }
}

.book-feature__links {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.book-feature__secondary {
  color: var(--muted);
  font-size: 0.95rem;
}

