:root {
  --bg: #fbfaf8;
  --ink: #14110f;
  --body: #241f1c;
  --muted: #6b645e;
  --faint: #8d857d;
  --rule: #e2ded8;
  --rule-2: #d6d1ca;
  --accent: #c8481f;
  --dark: #14110f;
  --dark-rule: #332e2a;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --pad: 32px;
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }
img, video, iframe { max-width: 100%; height: auto; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono a { color: inherit; }
.mono--accent { color: var(--accent); }

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink);
}
.site-head__in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  min-height: 64px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wordmark__mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: var(--accent);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 1px;
}
.site-nav { display: flex; align-items: stretch; gap: 4px; }
.site-nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
}
.site-nav a[aria-current="page"] { border-bottom-color: var(--accent); }

.masthead {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: end;
}
.masthead h1 {
  margin: 0;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}
.masthead__aside { display: flex; flex-direction: column; gap: 18px; padding-bottom: 6px; }
.masthead__aside p { margin: 0; font-size: 19px; line-height: 1.45; color: #4a443f; max-width: 34ch; }
.byline { font-family: var(--mono); font-size: 12px; line-height: 1.8; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }

.page-head {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: end;
}
.page-head h1 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.page-head p { margin: 0; font-size: 18px; line-height: 1.5; color: #4a443f; max-width: 40ch; }

.section-label { padding: 40px 0 16px; }

.featured {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.featured__media { min-width: 0; align-self: start; }
.featured__body { display: flex; flex-direction: column; gap: 18px; padding-top: 4px; }
.featured h2 { margin: 0; font-size: clamp(26px, 2.6vw, 38px); line-height: 1.06; letter-spacing: -0.025em; font-weight: 700; }
.featured p { margin: 0; font-size: 17px; line-height: 1.5; color: #4a443f; }
.more { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; padding: 48px 0 40px; }
.card { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.card h3 { margin: 0; font-size: 22px; line-height: 1.14; letter-spacing: -0.02em; font-weight: 700; }
.card p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--muted); }
.card__meta { display: flex; gap: 12px; flex-wrap: wrap; }

.thumb {
  aspect-ratio: 4 / 3;
  min-width: 0;
  overflow: hidden;
  background-image: repeating-linear-gradient(135deg, #ece8e2 0 6px, #f5f2ee 6px 12px);
}
.thumb--wide { aspect-ratio: 16 / 10; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dark { background: var(--dark); color: var(--bg); }
.dark a { color: #cfc8c0; }
.dark a:hover { color: var(--accent); }
.dark__in { max-width: var(--max); margin: 0 auto; padding: 72px var(--pad); }
.dark h2 { margin: 0; font-size: clamp(26px, 3vw, 34px); letter-spacing: -0.025em; font-weight: 700; }
.dark__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--dark-rule);
  padding-bottom: 20px;
}

.figures { display: grid; grid-template-columns: repeat(8, 1fr); gap: 40px 24px; padding: 40px 0 56px; }
.figure { display: flex; flex-direction: column; gap: 8px; }
.figure__n { font-size: clamp(28px, 2.7vw, 44px); letter-spacing: -0.04em; font-weight: 700; line-height: 1; }
.figure__l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }

.index { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px 24px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; }
.index a { padding: 7px 0; border-bottom: 1px solid #2a2521; }

.post-head {
  max-width: 78ch;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-head h1 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: pretty;
  max-width: 30ch;
}
.post-head__by { display: flex; flex-wrap: wrap; gap: 18px; }
.post-head__by span:first-child { color: var(--ink); }
.post-head__meta { display: flex; gap: 16px; flex-wrap: wrap; }
.post-head__side { display: flex; flex-direction: column; gap: 10px; font-family: var(--mono); font-size: 11px; line-height: 1.7; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); padding-top: 8px; }

.post-body { padding: 56px 0 72px; }

.prose { max-width: 78ch; font-size: 19px; line-height: 1.65; color: var(--body); }

.post-tags {
  max-width: 78ch;
  margin: 56px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.prose > * + * { margin-top: 28px; }
.prose p { margin: 0; }
.prose p + p { margin-top: 28px; }
.prose h2 { font-size: 30px; line-height: 1.12; letter-spacing: -0.025em; font-weight: 700; margin-top: 48px; }
.prose h3 { font-size: 23px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; margin-top: 40px; }
.prose h2 + *, .prose h3 + * { margin-top: 16px; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose img { display: block; height: auto; }
.prose figure { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.prose figcaption { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--faint); }
.prose blockquote {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  font-size: 25px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.prose pre {
  background: var(--dark);
  color: #e8e2da;
  padding: 22px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
}
.prose code { font-family: var(--mono); font-size: 0.88em; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 8px; }
.prose hr { border: 0; border-top: 1px solid var(--rule); }
.prose .embed { position: relative; aspect-ratio: 16 / 9; }
.prose .embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.side { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 96px; }
.rows { display: flex; flex-direction: column; }
.rows a, .rows div { padding: 9px 0; border-top: 1px solid var(--rule); font-size: 15px; line-height: 1.35; }
.rows > :last-child { border-bottom: 1px solid var(--rule); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  padding: 6px 11px;
  border: 1px solid var(--rule-2);
  color: #4a443f;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.chip:hover { border-color: var(--ink); }
.chip--on { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.pn { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.pn a { display: flex; flex-direction: column; gap: 10px; min-width: 0; color: var(--bg); }
.pn a:hover { color: var(--accent); }
.pn__t { font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }
.pn__next { text-align: right; }

.comments { padding: 64px 0 96px; max-width: 78ch; display: grid; gap: 56px; }

.pager {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0 80px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pager a, .pager span { padding: 10px 16px; border: 1px solid var(--rule-2); }
.pager .on { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.search {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.search::placeholder { color: var(--faint); text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em; }

.results { display: flex; flex-direction: column; }
.result { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 16px 0; border-top: 1px solid var(--rule); align-items: baseline; }
.result:last-child { border-bottom: 1px solid var(--rule); }
.result__t { font-size: 18px; line-height: 1.35; }
.result__d { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; white-space: nowrap; }

.years { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 1px 24px; font-family: var(--mono); font-size: 12px; }
.years a { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--rule); }
.years span { color: var(--faint); }

.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.tile { background: var(--bg); padding: 28px; display: grid; grid-template-columns: 140px 1fr; gap: 24px; }
.tile:hover { background: #f4f1ec; }
.tile__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile__media { aspect-ratio: 1; min-width: 0; background-image: repeating-linear-gradient(135deg, #ece8e2 0 6px, #f5f2ee 6px 12px); overflow: hidden; }
.tile__body { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.tile h3 { margin: 0; font-size: 24px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }
.tile p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--muted); }
.tile__foot { font-family: var(--mono); font-size: 11px; color: var(--faint); margin-top: auto; padding-top: 8px; }

.book { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
.book__cover { aspect-ratio: 2 / 3; min-width: 0; align-self: start; background-image: repeating-linear-gradient(135deg, #221e1b 0 6px, #2c2724 6px 12px); }
.book__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.book__cover--light { background-image: repeating-linear-gradient(135deg, #ece8e2 0 6px, #f5f2ee 6px 12px); }
.book__body { display: flex; flex-direction: column; gap: 24px; }
.book__body h1, .book__body h2 { margin: 0; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.02; letter-spacing: -0.03em; font-weight: 700; }
.book__sub { margin: 0; font-size: 21px; line-height: 1.35; color: #cfc8c0; }
.specs { display: grid; grid-template-columns: repeat(3, auto); gap: 24px; justify-content: start; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); border-top: 1px solid var(--dark-rule); border-bottom: 1px solid var(--dark-rule); padding: 16px 0; }
.specs--light { border-color: var(--rule); color: var(--muted); }
.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { padding: 14px 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.btn--fill { background: var(--accent); color: var(--bg); }
.btn--fill:hover { background: var(--bg); color: var(--ink); }
.btn--line { border: 1px solid #4a443f; color: var(--bg); }
.btn--line:hover { border-color: var(--bg); }

.site-foot { border-top: 1px solid var(--ink); }
.site-foot__in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-foot a { color: var(--muted); }
.site-foot nav { display: flex; gap: 20px; flex-wrap: wrap; }
.site-foot__l { display: flex; flex-direction: column; gap: 8px; }
.site-foot__c { color: var(--faint); }
a.figure { color: inherit; }
a.figure:hover .figure__n { color: var(--accent); }

@media (max-width: 1000px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .figures { grid-template-columns: repeat(4, 1fr); }
  .index { grid-template-columns: repeat(3, 1fr); }
  .post-body, .comments { grid-template-columns: 1fr; gap: 48px; }
  .side { position: static; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  .site-head__in { flex-direction: column; gap: 0; padding-top: 12px; }
  .site-nav { overflow-x: auto; margin: 0 calc(var(--pad) * -1); padding: 0 var(--pad); }
  .site-nav a { padding: 12px; white-space: nowrap; }
  .masthead, .page-head, .featured, .post-head, .book, .tiles, .pn { grid-template-columns: 1fr; gap: 28px; }
  .masthead { padding: 40px 0 32px; }
  .page-head, .post-head { padding: 32px 0 28px; }
  .grid { grid-template-columns: 1fr; gap: 40px; padding: 32px 0 32px; }
  .figures { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .index { grid-template-columns: repeat(2, 1fr); }
  .tile { grid-template-columns: 90px 1fr; gap: 16px; padding: 20px; }
  .prose { font-size: 17px; }
  .prose blockquote { font-size: 21px; }
  .pn__next { text-align: left; }
  .dark__in { padding: 48px var(--pad); }
}

@media print {
  .site-head, .site-foot, .side, .pn, .comments, .pager { display: none; }
  body { background: #fff; }
  .prose { max-width: none; font-size: 11pt; }
}

/* --------------------------------------------- WordPress content classes */

.prose::after { content: ""; display: table; clear: both; }

.prose .alignright,
.prose figure.alignright,
.prose .wp-caption.alignright {
  float: right;
  max-width: 48%;
  margin: 6px 0 24px 32px;
}
.prose .alignleft,
.prose figure.alignleft,
.prose .wp-caption.alignleft {
  float: left;
  max-width: 48%;
  margin: 6px 32px 24px 0;
}
.prose .aligncenter,
.prose figure.aligncenter,
.prose .wp-caption.aligncenter {
  display: block;
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.prose .alignnone { display: block; float: none; }

/* WordPress writes an inline width on caption wrappers; ignore it */
.prose .wp-caption { max-width: 100% !important; height: auto; }
.prose .wp-caption img { display: block; }
.prose .wp-caption-text,
.prose .wp-caption p.wp-caption-text {
  margin: 10px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--faint);
}

/* tall portrait scans and screenshots shouldn't run off the screen */
.prose img { max-width: 100%; max-height: 88vh; width: auto; height: auto; }
.prose .alignright img,
.prose .alignleft img,
.prose .wp-caption img { width: 100%; max-height: none; }

.prose .gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.prose .gallery br { display: none; }
.prose .gallery-item { margin: 0; }
.prose .gallery-icon img { width: 100%; }

@media (max-width: 760px) {
  .prose .alignright,
  .prose .alignleft,
  .prose figure.alignright,
  .prose figure.alignleft,
  .prose .wp-caption.alignright,
  .prose .wp-caption.alignleft {
    float: none;
    max-width: 100%;
    margin: 0;
  }
}

/* ---------------------------------------------------------------- about */

.about-head {
  padding: 64px 0 40px;
  border-bottom: 1px solid #14110f;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: end;
}
.about-head h1 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.about-head__facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
  color: #4a443f;
}
.about-head__facts span {
  display: block;
  color: #8d857d;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  padding-bottom: 4px;
}

.about-body {
  padding: 48px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 72px;
  align-items: start;
}
.about-body .prose { max-width: 68ch; font-size: 18px; }

.about-side { display: flex; flex-direction: column; gap: 28px; }
.about-card { border-top: 1px solid #14110f; padding-top: 18px; }
.about-book {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 0;
  border-bottom: 1px solid #e2ded8;
}
.about-book:first-of-type { border-top: 1px solid #e2ded8; }
.about-book__t { font-size: 16px; line-height: 1.3; letter-spacing: -0.01em; }

@media (max-width: 1000px) {
  .about-body { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 760px) {
  .about-head { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 28px; }
}

/* ---------------------------------------------------------------- publications */

.pub-filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 36px 0 0; }
.pchip {
  appearance: none;
  background: transparent;
  border: 1px solid #332e2a;
  color: #cfc8c0;
  padding: 9px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  gap: 8px;
}
.pchip span { color: #8d857d; }
.pchip:hover { border-color: #6b645e; color: #fbfaf8; }
.pchip--on { background: #fbfaf8; border-color: #fbfaf8; color: #14110f; }
.pchip--on span { color: #6b645e; }

.pub-years {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 28px 0 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.pub-years a { color: #8d857d; white-space: nowrap; }
.pub-years a:hover { color: #c8481f; }

.pubs { display: flex; flex-direction: column; gap: 40px; padding-top: 32px; }
.pubs__year { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 32px; align-items: start; }
.pubs__y {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #c8481f;
  padding-top: 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.pubs__y span { color: #8d857d; font-size: 10px; }
.pubs__list { display: flex; flex-direction: column; }

.pub {
  padding: 18px 0;
  border-top: 1px solid #332e2a;
  max-width: 84ch;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pub__t { font-size: 17px; line-height: 1.35; letter-spacing: -0.01em; color: #fbfaf8; }
.pub__a { font-size: 14px; line-height: 1.45; color: #a39b93; }
.pub__m { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: baseline; }
.pub__k { color: #c8481f; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.pub__m span { color: #8d857d; font-size: 11px; letter-spacing: 0.02em; text-transform: none; }
.pub__m a { color: #cfc8c0; font-size: 11px; letter-spacing: 0.02em; text-transform: none; }
.pub__m a:hover { color: #c8481f; }

.site-foot__l { display: flex; flex-direction: column; gap: 8px; }
.site-foot__c { color: #8d857d; }
a.figure { color: inherit; }
a.figure:hover .figure__n { color: #c8481f; }

@media (max-width: 760px) {
  .pubs__year { grid-template-columns: 1fr; gap: 10px; }
  .pubs__y { padding-top: 0; }
}

/* ---------------------------------------------------------------- books */

.book__cover { overflow: hidden; background: #221e1b; }
.book__cover img { width: 100%; height: auto; display: block; }
.book__blurb { margin: 0; font-size: 17px; line-height: 1.55; color: #cfc8c0; max-width: 54ch; }

.book-next { padding: 72px 0 0; }
.book-next__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e2ded8;
  border: 1px solid #e2ded8;
}
.book-next__item {
  background: #fbfaf8;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.book-next__item h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.book-next__item p { margin: 0; font-size: 16px; line-height: 1.55; color: #4a443f; }

.little { padding: 80px 0 0; }
.little__head {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: end;
  border-bottom: 1px solid #14110f;
  padding-bottom: 24px;
}
.little__head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.little__head p { margin: 0; font-size: 16px; line-height: 1.55; color: #4a443f; max-width: 42ch; }

.little__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; padding-top: 32px; }
.little__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  border: 1px solid #e2ded8;
  padding: 24px;
  align-items: start;
}
.little__item:hover { border-color: #14110f; }
.little__cover { display: block; background: #ece8e2; }
.little__cover img { width: 100%; height: auto; display: block; }
.little__body { display: flex; flex-direction: column; gap: 12px; }
.little__body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: pretty;
}
.little__body p { margin: 0; font-size: 15px; line-height: 1.5; color: #6b645e; }
.little__meta { color: #8d857d; line-height: 1.6; text-transform: none; letter-spacing: 0.02em; font-size: 11px; margin-top: auto; }

@media (max-width: 900px) {
  .book-next__grid, .little__grid, .little__head { grid-template-columns: 1fr; }
  .little__head { gap: 20px; }
}

.little__links { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 4px; }
.little__links a { color: #c8481f; }
.little__body h3 a { color: inherit; }

@media (max-width: 560px) {
  .little__item { grid-template-columns: 1fr; gap: 18px; }
  .little__cover { max-width: 180px; }
}

.booklet { padding: 80px 0 0; }
.booklet__item {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 32px;
  border: 1px solid #e2ded8;
  padding: 24px;
  align-items: start;
}
.booklet__item:hover { border-color: #14110f; }
.booklet__cover { display: block; background: #ece8e2; }
.booklet__cover img { width: 100%; height: auto; display: block; }
.booklet__body { display: flex; flex-direction: column; gap: 12px; }
.booklet__body h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.booklet__sub { margin: 0; font-size: 17px; line-height: 1.4; color: #4a443f; }
.booklet__body p { margin: 0; font-size: 15px; line-height: 1.5; color: #6b645e; }

@media (max-width: 700px) {
  .booklet__item { grid-template-columns: 1fr; gap: 20px; }
}
