:root {
  color-scheme: light;
  --paper: #fffdf5;
  --ink: #181511;
  --muted: #635b50;
  --faint: #8b8173;
  --rule: #ded3c1;
  --red: #9d3f32;
  --green: #3f624c;
  --card: #fffaf0;
  --display: "Fraunces", "Cooper Black", "Bookman Old Style", Georgia, serif;
  --body: "Literata", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    serif;
  --mono: "iA Writer Mono S", "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
}

::selection {
  background: rgba(157, 63, 50, 0.18);
}

a {
  color: inherit;
}

.page {
  position: relative;
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 64px;
}

.intro {
  margin-bottom: 42px;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--display);
  font-size: 4.45rem;
  font-weight: 900;
  font-variation-settings: "SOFT" 90, "WONK" 1;
  line-height: 0.94;
}

.intro p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.home-art-draft .page {
  width: min(860px, calc(100% - 40px));
}

.art-hero {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
  padding: 34px;
  border: 1px solid rgba(24, 21, 17, 0.16);
  border-radius: 2px;
  background:
    linear-gradient(
      90deg,
      rgba(24, 21, 17, 0.42),
      rgba(24, 21, 17, 0.08) 55%,
      rgba(24, 21, 17, 0.28)
    ),
    url("assets/alcibiades-socrates-vincent.jpg");
  background-position: center 36%;
  background-size: cover;
}

.art-hero-copy {
  width: min(580px, 100%);
  padding: 24px 26px 25px;
  border: 1px solid rgba(24, 21, 17, 0.18);
  border-radius: 2px;
  background: rgba(255, 253, 245, 0.93);
  box-shadow: 0 1px 0 rgba(24, 21, 17, 0.05);
}

.art-hero-kicker {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(24, 21, 17, 0.88);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.art-hero h1 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 2.9rem;
  line-height: 0.98;
}

.art-hero p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.4;
}

.interview-page {
  width: min(700px, calc(100% - 40px));
}

.subscribe {
  display: grid;
  grid-template-columns: auto minmax(390px, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 42px;
  padding: 17px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.subscribe p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.subscribe.is-confirmed {
  display: block;
  text-align: center;
}

.subscribe-confirmation {
  margin-bottom: 0;
  color: var(--green);
  font-size: 0.98rem;
}

.subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.email-field {
  position: relative;
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.honeypot,
input.honeypot {
  display: none !important;
}

input,
textarea,
button {
  min-height: 42px;
  border: 1px solid rgba(24, 21, 17, 0.24);
  border-radius: 3px;
  font: inherit;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  padding: 8px 12px;
  background: #fffefa;
  color: var(--ink);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--faint);
}

input:disabled,
textarea:disabled {
  background: #fffefa;
  color: transparent;
  opacity: 1;
  -webkit-text-fill-color: transparent;
}

button {
  padding: 8px 13px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.62;
}

button:hover,
button:focus-visible {
  background: rgba(24, 21, 17, 0.06);
}

.subscribe-status {
  position: absolute;
  top: 50%;
  right: 12px;
  max-width: 48%;
  color: var(--green);
  font-size: 0.82rem;
  line-height: 1.3;
  text-align: right;
  transform: translateY(-50%);
  pointer-events: none;
}

.subscribe-status[hidden] {
  display: none;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.05rem;
  font-weight: 850;
  font-variation-settings: "SOFT" 85, "WONK" 1;
  line-height: 1;
  text-transform: lowercase;
}

.interview-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.interview {
  position: relative;
  margin-bottom: 0;
  border-top: 1px solid rgba(24, 21, 17, 0.12);
}

.interview:last-child {
  border-bottom: 1px solid rgba(24, 21, 17, 0.12);
  margin-bottom: 0;
}

.interview-featured {
  margin-bottom: 0;
  border: 1px solid rgba(24, 21, 17, 0.16);
  border-left: 2px solid rgba(157, 63, 50, 0.36);
  border-radius: 3px;
  border-color: rgba(24, 21, 17, 0.18);
  border-left-color: rgba(157, 63, 50, 0.36);
  background: rgba(157, 63, 50, 0.035);
  box-shadow: 0 1px 0 rgba(24, 21, 17, 0.04);
}

.interview-featured::before,
.interview-featured::after {
  display: none;
}

.interview-link {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 17px;
  color: inherit;
  text-decoration: none;
}

.interview-link--static {
  cursor: default;
}

.interview-link:hover,
.interview-link:focus-visible {
  background: rgba(24, 21, 17, 0.035);
  outline: 0;
}

.interview-link--static:hover,
.interview-link--static:focus-visible {
  background: transparent;
}

.interview-featured .interview-link {
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 17px 18px 15px;
}

.interview-featured .portrait {
  width: 82px;
  height: 104px;
}

.interview-featured h3 {
  margin-bottom: 4px;
  font-size: 1.28rem;
  line-height: 1.24;
}

.interview .interview-kicker {
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.86rem;
  line-height: 1.25;
}

.interview-featured .interview-kicker::before {
  content: "✦";
  font-size: 0.82em;
  line-height: 1;
}

.guest-link,
.text-link {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.portrait {
  align-self: center;
  margin: 0;
  width: 82px;
  height: 104px;
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(24, 21, 17, 0.18);
  border-radius: 3px;
  object-fit: cover;
  object-position: center;
}

.interview .portrait img[src$="interview-stephen-harrison.jpg"] {
  object-position: center 28%;
}

.interview .portrait img[src$="interview-richard-talbert.jpg"] {
  object-position: 32% center;
}

.interview .portrait img[src$="interview-patrick-radden-keefe.jpg"] {
  object-position: 44% center;
}

.interview .portrait img[src$="interview-alexander-mccall-smith.jpg"] {
  object-position: center 9%;
}

.interview .portrait img[src$="interview-stephanie-nelson.png"] {
  object-position: center 34%;
}

.interview .portrait img[src$="llewelyn-morgan-1.jpg"] {
  object-position: center top;
}

.interview .portrait img[src$="interview-jane-lightfoot.webp"] {
  object-position: 35% center;
}

.interview .portrait img[src$="interview-beth-singler.png"] {
  object-position: center 18%;
}

.interview-copy {
  align-self: center;
}

h3 {
  margin-bottom: 4px;
  font-size: 1.28rem;
  line-height: 1.24;
}

.interview .guest {
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 0.87rem;
  line-height: 1.25;
}

.interview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.3;
}

.interview .interview-meta {
  margin-bottom: 8px;
  color: var(--faint);
}

.interview p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.48;
}

.top-link {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--faint);
  font-size: 0.9rem;
  text-decoration: none;
}

.top-link:hover,
.top-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-title-link {
  color: inherit;
  text-decoration: none;
}

.interview-page .intro {
  margin-bottom: 32px;
}

.article-hero {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}

.article-portrait {
  width: 126px;
  height: 170px;
}

.article-portrait img[src$="interview-stephen-harrison.jpg"] {
  object-position: center 28%;
}

.article-portrait img[src$="interview-richard-talbert.jpg"] {
  object-position: 32% center;
}

.article-portrait img[src$="llewelyn-morgan-1.jpg"] {
  object-position: center top;
}

.article-title {
  margin-bottom: 8px;
  font-size: 2.55rem;
  text-transform: none;
}

.article-hero .guest {
  margin-bottom: 8px;
  color: var(--faint);
  font-size: 0.95rem;
}

.guest-link {
  text-decoration-color: rgba(24, 21, 17, 0.22);
}

.guest-link:hover,
.guest-link:focus-visible {
  color: var(--ink);
  text-decoration-color: var(--ink);
  outline: 0;
}

.article-lede {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.draft-note,
.photo-credit {
  margin: 10px 0 0;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.photo-credit {
  margin-top: 5px;
  text-transform: none;
}

.article-section {
  margin-top: 26px;
}

.article-section h3 {
  margin-bottom: 9px;
}

.article-section p {
  color: var(--muted);
}

.article-body {
  font-size: 1.14rem;
  line-height: 1.68;
}

.article-body p {
  margin-bottom: 1.16rem;
}

.article-body::after {
  display: block;
  clear: both;
  content: "";
}

.article-body blockquote {
  margin: 0 0 1.15rem;
  padding-left: 18px;
  border-left: 2px solid rgba(24, 21, 17, 0.24);
  color: var(--muted);
}

.article-body blockquote p:last-child {
  margin-bottom: 0;
}

.article-body blockquote.article-quote--no-rail {
  padding-left: 0;
  border-left: 0;
}

.article-body blockquote.article-quote--resume {
  clear: both;
}

.article-body blockquote.article-quote--exhibits::after {
  display: block;
  clear: both;
  content: "";
}

.article-body strong {
  color: var(--ink);
}

.article-body .text-link,
.footnotes .text-link {
  color: var(--ink);
  text-decoration-color: rgba(24, 21, 17, 0.32);
}

.article-body .text-link:hover,
.article-body .text-link:focus-visible,
.footnotes .text-link:hover,
.footnotes .text-link:focus-visible {
  text-decoration-color: var(--ink);
  outline: 0;
}

.article-body pre {
  overflow-x: auto;
  margin: 0 0 1.15rem;
  padding: 14px 16px;
  border: 1px solid rgba(24, 21, 17, 0.14);
  border-radius: 3px;
  background: #fffefa;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.article-body code {
  font: inherit;
}

.article-image {
  margin: 24px auto 26px;
}

.article-image--side,
.article-image--medium,
.article-image--small {
  float: right;
  clear: right;
  margin: 5px 0 20px 28px;
}

.article-image--side {
  width: min(42%, 300px);
}

.article-image--medium {
  width: min(50%, 380px);
}

.article-image--small {
  width: min(34%, 240px);
}

.article-image--left {
  float: left;
  clear: left;
  margin: 5px 28px 20px 0;
}

.article-image--wide {
  clear: both;
  width: min(100%, 540px);
}

.article-image--readable {
  clear: both;
  width: min(100%, 440px);
}

.article-image--artifact {
  float: right;
  clear: right;
  width: min(36%, 230px);
  margin: 3px 0 16px 24px;
}

.article-image img {
  display: block;
  width: 100%;
  max-height: 430px;
  border: 0;
  border-radius: 2px;
  object-fit: contain;
}

.article-image--small img {
  max-height: 360px;
}

.article-image--wide img,
.article-image--readable img {
  margin-right: auto;
  margin-left: auto;
}

.article-image--artifact img {
  max-height: 285px;
}

.article-image--artifact-devs {
  width: min(31%, 190px);
}

.article-image--artifact-devs img {
  max-height: 245px;
}

.article-image figcaption {
  margin-top: 8px;
  color: var(--faint);
  font-size: 0.82rem;
  line-height: 1.42;
}

.footnote-marker {
  margin-left: 2px;
  font-size: 0.68em;
  line-height: 0;
  vertical-align: super;
}

.footnote-ref {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(24, 21, 17, 0.35);
}

.footnote-ref:hover,
.footnote-ref:focus-visible,
.footnote-back:hover,
.footnote-back:focus-visible {
  border-bottom-color: var(--ink);
}

.footnotes {
  clear: both;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.52;
}

.footnotes ol {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.footnotes li {
  margin-bottom: 0.95rem;
  padding-left: 0.12rem;
}

.footnotes p,
.footnotes ol,
.footnotes ul {
  margin-bottom: 0.58rem;
}

.footnote-back {
  display: inline-block;
  color: var(--faint);
  font-size: 0.78rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.page-engagement {
  clear: both;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.engagement-top {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.page-engagement h2 {
  margin-bottom: 0;
}

.comment-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.comment {
  padding: 13px 0;
  border-top: 1px solid rgba(24, 21, 17, 0.12);
}

.comment:first-child {
  padding-top: 0;
  border-top: 0;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 0.86rem;
  line-height: 1.35;
}

.comment-meta strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.comment-body,
.comment-empty,
.comment-status {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.52;
}

.comment-body {
  margin-bottom: 0;
  white-space: pre-wrap;
}

.comment-empty {
  margin: 0 0 16px;
  color: var(--faint);
}

.comment-toggle {
  min-height: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--faint);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.35;
}

.comment-toggle:hover,
.comment-toggle:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
  background: transparent;
  outline: 0;
}

.comment-toggle:disabled {
  cursor: default;
  opacity: 0.68;
}

.comment-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  align-items: start;
}

.comment-form[hidden] {
  display: none;
}

.comment-form textarea {
  grid-column: 1 / -1;
}

.comment-status {
  grid-column: 1;
  margin-bottom: 0;
  align-self: center;
  color: var(--green);
  font-size: 0.84rem;
}

.comment-status[hidden] {
  display: none;
}

.comment-form button {
  grid-column: 2;
}

body.has-subscribe-prompt {
  overflow: hidden;
}

.subscribe-prompt-shell {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 253, 245, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.subscribe-prompt-shell.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.subscribe-prompt {
  position: relative;
  width: min(370px, calc(100vw - 28px));
  padding: 17px 17px 16px;
  border: 1px solid rgba(24, 21, 17, 0.16);
  border-left: 2px solid rgba(24, 21, 17, 0.36);
  border-radius: 3px;
  background: var(--card);
  box-shadow: 0 18px 44px rgba(24, 21, 17, 0.14);
  transform: translateY(12px);
  transition: transform 700ms ease;
}

.subscribe-prompt-shell.is-visible .subscribe-prompt {
  transform: translateY(0);
}

.subscribe-prompt-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--faint);
  font-size: 1.25rem;
  line-height: 1;
}

.subscribe-prompt-close:hover,
.subscribe-prompt-close:focus-visible {
  color: var(--ink);
  background: rgba(24, 21, 17, 0.06);
  outline: 0;
}

.subscribe-prompt-kicker {
  margin-bottom: 6px;
  padding-right: 30px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.subscribe-prompt h2 {
  margin-bottom: 9px;
  padding-right: 30px;
  font-size: 1.32rem;
  line-height: 1.08;
  text-transform: none;
}

.subscribe-prompt-copy {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.subscribe-prompt-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.subscribe-prompt-form input[type="email"] {
  min-height: 40px;
  font-size: 0.9rem;
}

.subscribe-prompt-form button {
  min-height: 40px;
  font-size: 0.9rem;
}

.subscribe-prompt-status {
  grid-column: 1 / -1;
  margin: 1px 0 0;
  color: var(--green);
  font-size: 0.82rem;
  line-height: 1.35;
}

.subscribe-prompt-status[hidden] {
  display: none;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  margin-top: 26px;
  color: var(--faint);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 8px;
  align-items: center;
}

.site-footer a,
.writing-link {
  border-bottom: 1px solid transparent;
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.writing-link:hover,
.writing-link:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
  outline: 0;
}

.writing-cards {
  margin-bottom: 34px;
}

.writing-portrait {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(157, 63, 50, 0.1), transparent 42%),
    #fff8eb;
}

.writing-portrait span {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 850;
  font-variation-settings: "SOFT" 85, "WONK" 1;
}

.writing-portrait--image {
  background: #fff8eb;
}

.writing-portrait--image img {
  object-fit: cover;
  object-position: center;
}

.image-credit {
  max-width: 560px;
  margin: -12px 0 0;
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.45;
}

.article-rule {
  height: 1px;
  margin: 26px 0;
  border: 0;
  background: var(--rule);
}

.topic-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.topic-list li {
  margin-bottom: 7px;
}

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

  .page {
    width: min(100% - 28px, 700px);
    padding-top: 32px;
    padding-bottom: 46px;
  }

  .intro {
    margin-bottom: 34px;
  }

  .art-hero {
    min-height: 300px;
    padding: 16px;
    background-position: center top;
  }

  .art-hero-copy {
    padding: 18px 18px 19px;
  }

  .art-hero h1 {
    font-size: 2.16rem;
  }

  .art-hero p:last-child {
    font-size: 1rem;
    line-height: 1.42;
  }

  h1 {
    font-size: 3rem;
  }

  .intro p {
    font-size: 1rem;
  }

  .subscribe {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 34px;
    padding: 14px 0;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .subscribe-status {
    max-width: 58%;
  }

  .interview-link {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 12px;
  }

  .interview-featured .interview-link {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 12px 15px 10px;
  }

  .portrait {
    width: 64px;
    height: 82px;
  }

  .interview-featured .portrait {
    width: 64px;
    height: 82px;
  }

  h3 {
    font-size: 1.04rem;
    line-height: 1.2;
  }

  .interview-featured h3 {
    font-size: 1.04rem;
    line-height: 1.2;
  }

  .interview .interview-kicker {
    margin-bottom: 5px;
    font-size: 0.82rem;
  }

  .interview:not(.interview-featured) .interview-meta {
    margin-bottom: 0;
  }

  .interview .interview-copy > p:not(.guest):not(.interview-meta):not(.interview-kicker) {
    display: none;
  }

  .article-hero {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .article-portrait {
    width: 78px;
    height: 106px;
  }

  .article-title {
    font-size: 1.85rem;
  }

  .article-body {
    font-size: 1.08rem;
    line-height: 1.66;
  }

  .article-image {
    float: none;
    width: min(100%, 320px);
    margin: 22px auto 24px;
  }

  .article-image--wide,
  .article-image--readable {
    width: min(100%, 360px);
  }

  .article-image--artifact,
  .article-image--artifact-devs {
    width: min(100%, 320px);
  }

  .engagement-top {
    display: block;
  }

  .comment-toggle {
    margin-top: 8px;
  }

  .comment-form {
    grid-template-columns: 1fr;
  }

  .comment-form textarea,
  .comment-status,
  .comment-form button {
    grid-column: 1;
  }

  .subscribe-prompt-shell {
    padding: 14px;
  }

  .subscribe-prompt {
    padding: 15px;
  }

  .subscribe-prompt-form {
    grid-template-columns: 1fr;
  }

}

@media (min-width: 560px) and (max-width: 640px) {
  .article-quote--exhibits .article-image--artifact {
    float: right;
    clear: right;
    width: min(34%, 200px);
    margin: 3px 0 14px 20px;
  }

  .article-quote--exhibits .article-image--artifact-devs {
    width: min(29%, 165px);
  }
}

:root {
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.ai-home-shell {
  color-scheme: light;
  min-height: 100svh;
  background: #fff8e8;
  color: #181511;
  font-family: var(--sans);
}

.header-home {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #fff8e8;
}

.site-top {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 10px 0 0;
}

.nav-panel {
  --marker-x: 0px;
  --marker-w: 0px;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px;
  border: 1px solid rgba(24, 21, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.82);
  box-shadow: 0 6px 18px rgba(24, 21, 17, 0.12);
  backdrop-filter: blur(12px);
}

.nav-marker {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: var(--marker-x);
  width: var(--marker-w);
  border-radius: 6px;
  background: rgba(24, 21, 17, 0.08);
  transition:
    left 260ms cubic-bezier(0.22, 1, 0.36, 1),
    width 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a {
  position: relative;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(24, 21, 17, 0.68);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 520;
  line-height: 1;
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: #181511;
  font-weight: 780;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #181511;
  text-decoration: none;
}

.nav-links a:focus-visible {
  outline: 1px solid rgba(24, 21, 17, 0.28);
  outline-offset: 2px;
}

.cream-intro {
  flex: 1;
  background: #fff8e8;
}

.hand-stage {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.hand-stage .hand-cutout {
  display: block;
  width: 100%;
  height: clamp(190px, 16.1vw, 460px);
  object-fit: cover;
  object-position: center;
}

.intro-inner {
  width: min(940px, calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 58px;
}

.intro-inner h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #181511;
  font-family: var(--sans);
  font-size: 3.6rem;
  font-weight: 780;
  line-height: 0.98;
}

.intro-copy {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(24, 21, 17, 0.82);
  font-family: var(--sans);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.34;
}

.intro-copy em {
  font-style: italic;
}

.copy-line {
  display: block;
}

.field-carousel {
  display: inline;
  color: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.featured-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
}

.featured-arrow {
  color: rgba(24, 21, 17, 0.48);
  font-size: 1.4rem;
  line-height: 1;
}

.featured-link {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(610px, 100%);
  padding: 9px;
  border: 1px solid rgba(24, 21, 17, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 243, 0.72);
  color: #181511;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.featured-link:hover,
.featured-link:focus-visible {
  border-color: rgba(24, 21, 17, 0.26);
  background: rgba(255, 252, 243, 0.95);
  transform: translateX(2px);
}

.featured-link:focus-visible {
  outline: 1px solid rgba(24, 21, 17, 0.3);
  outline-offset: 3px;
}

.featured-image {
  display: block;
  width: 82px;
  height: 82px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.featured-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.featured-copy > span {
  color: rgba(24, 21, 17, 0.58);
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.25;
}

.featured-copy .featured-kicker {
  color: rgba(24, 21, 17, 0.55);
  font-size: 0.78rem;
  font-weight: 720;
}

.featured-link strong {
  font-family: var(--sans);
  font-size: 1.32rem;
  line-height: 1.08;
}

.featured-copy .featured-guest {
  color: rgba(24, 21, 17, 0.72);
  font-size: 0.92rem;
  font-weight: 650;
}

.featured-copy .featured-desc {
  max-width: 400px;
}

.featured-link:hover strong,
.featured-link:focus-visible strong {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.home-subscribe {
  display: grid;
  grid-template-columns: auto minmax(260px, 420px);
  gap: 14px;
  align-items: center;
  width: min(610px, 100%);
  margin-top: 28px;
  margin-bottom: 0;
  padding: 17px 0 0;
  border-top: 1px solid rgba(24, 21, 17, 0.13);
  border-bottom: 0;
  color: #181511;
  font-family: var(--sans);
}

.home-subscribe p {
  margin-bottom: 0;
  color: rgba(24, 21, 17, 0.66);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.3;
}

.ai-home-shell .subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.ai-home-shell .email-field {
  position: relative;
  min-width: 0;
}

.ai-home-shell .subscribe-form input[type="email"],
.ai-home-shell .subscribe-form button {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(24, 21, 17, 0.16);
  border-radius: 6px;
  font: inherit;
  font-size: 0.92rem;
}

.ai-home-shell .subscribe-form input[type="email"] {
  padding: 0 11px;
  background: rgba(255, 252, 243, 0.72);
  color: #181511;
}

.ai-home-shell .subscribe-form input[type="email"]::placeholder {
  color: rgba(24, 21, 17, 0.42);
}

.ai-home-shell .subscribe-form input[type="email"]:focus,
.ai-home-shell .subscribe-form button:focus-visible {
  outline: 2px solid rgba(24, 21, 17, 0.22);
  outline-offset: 2px;
}

.ai-home-shell .subscribe-form button {
  padding: 0 13px;
  background: #181511;
  color: #fff8e8;
  font-weight: 720;
  cursor: pointer;
}

.ai-home-shell .subscribe-form button:hover,
.ai-home-shell .subscribe-form button:focus-visible {
  background: rgba(24, 21, 17, 0.86);
}

.interviews-draft {
  flex: 1;
  background: #fff8e8;
}

.interviews-draft-inner {
  width: min(1000px, calc(100% - 44px));
  margin: 0 auto;
  padding: 64px 0 96px;
}

.interviews-draft h1 {
  max-width: 720px;
  margin-bottom: 14px;
  color: #181511;
  font-family: var(--sans);
  font-size: 3.2rem;
  font-weight: 780;
  line-height: 0.98;
}

.interviews-draft-intro {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(24, 21, 17, 0.72);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 520;
  line-height: 1.45;
}

.interview-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.interview-card-grid .featured-link {
  grid-template-columns: 82px minmax(0, 1fr);
  width: 100%;
  min-height: 126px;
  align-items: start;
  background: rgba(255, 252, 243, 0.58);
}

.interview-card-grid .interview-card--ai {
  grid-column: 1 / -1;
  border-color: rgba(157, 63, 50, 0.28);
  background: #fffdf7;
}

.interview-card-grid .interview-card--ai .featured-kicker {
  color: #9d3f32;
}

.interview-card-grid .featured-image {
  width: 82px;
  height: 104px;
}

.interview-card-grid .featured-image[src$="interview-beth-singler.png"] {
  object-position: center 32%;
}

.interview-card-grid .featured-image[src$="interview-stephen-harrison.jpg"] {
  object-position: center 22%;
}

.interview-card-grid .featured-image[src$="interview-robin-meyer.jpg"] {
  object-position: 42% center;
}

.interview-card-grid .featured-image[src$="interview-richard-talbert.jpg"] {
  object-position: 43% center;
}

.interview-card-grid .featured-image[src$="interview-patrick-radden-keefe.jpg"] {
  object-position: center 14%;
}

.interview-card-grid .featured-image[src$="interview-alexander-mccall-smith.jpg"] {
  object-position: center 30%;
}

.interview-card-grid .featured-image[src$="interview-stephanie-nelson.png"] {
  object-position: center 14%;
}

.interview-card-grid .featured-image[src$="llewelyn-morgan-1.jpg"] {
  object-position: 35% center;
}

.interview-section-title {
  margin-bottom: 14px;
  color: rgba(24, 21, 17, 0.56);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.interview-card-grid--old {
  margin-bottom: 0;
}

.interview-card-grid .featured-image {
  margin-top: 1px;
}

.interview-card-grid .featured-desc {
  max-width: 100%;
}

.about-draft {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff8e8;
}

.about-draft-inner {
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.about-draft h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: #181511;
  font-family: var(--sans);
  font-size: 3.4rem;
  font-weight: 780;
  line-height: 0.98;
}

.about-draft-copy {
  display: grid;
  gap: 18px;
  max-width: 690px;
  color: rgba(24, 21, 17, 0.78);
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.48;
}

.about-inline-link {
  color: #181511;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.about-draft-copy em {
  font-style: italic;
}

.about-notes {
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.notes-draft {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff8e8;
}

.notes-draft-inner {
  width: min(820px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.notes-kicker {
  margin-bottom: 14px;
  color: rgba(24, 21, 17, 0.52);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.notes-draft h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #181511;
  font-family: var(--sans);
  font-size: 3.8rem;
  font-weight: 780;
  line-height: 0.98;
}

.notes-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(24, 21, 17, 0.74);
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.46;
}

.notes-status {
  display: inline-block;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 21, 17, 0.18);
  color: rgba(24, 21, 17, 0.6);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
}

.interview-live-shell {
  --paper: #fff8e8;
  --card: #fff8e8;
  --display: var(--sans);
  --body: var(--sans);
  --mono: var(--sans);
  --muted: rgba(24, 21, 17, 0.72);
  --faint: rgba(24, 21, 17, 0.54);
  --rule: rgba(24, 21, 17, 0.14);
}

.interview-live-shell .header-home {
  background: var(--paper);
}

.interview-live-shell .interview-live-page {
  padding-top: 44px;
  padding-bottom: 82px;
  font-family: var(--sans);
}

.interview-live-shell h2,
.interview-live-shell .article-title,
.interview-live-shell .article-body,
.interview-live-shell .article-lede,
.interview-live-shell .guest,
.interview-live-shell .footnotes {
  font-family: var(--sans);
}

.interview-live-shell h2,
.interview-live-shell .article-title {
  font-variation-settings: normal;
  letter-spacing: 0;
  text-transform: none;
}

.interview-live-shell .portrait img,
.interview-live-shell .article-image img {
  border-radius: 0;
}

@media (max-width: 760px) {
  .site-top {
    width: min(100% - 34px, 680px);
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .intro-inner {
    width: min(100% - 34px, 680px);
    padding: 12px 0 82px;
  }

  .hand-stage .hand-cutout {
    height: clamp(180px, 34svh, 270px);
  }

  .intro-inner h1 {
    max-width: 420px;
    font-size: 2.25rem;
  }

  .intro-copy {
    font-size: 1rem;
  }

  .copy-line {
    display: inline;
  }

  .featured-row {
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
  }

  .featured-arrow {
    padding-top: 9px;
    font-size: 1.1rem;
  }

  .featured-link {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 11px;
    padding: 8px;
  }

  .featured-image {
    width: 64px;
    height: 64px;
  }

  .featured-link strong {
    font-size: 1.2rem;
  }

  .featured-copy .featured-desc {
    display: none;
  }

  .home-subscribe {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .interviews-draft-inner {
    width: min(100% - 34px, 680px);
    padding: 50px 0 72px;
  }

  .interviews-draft h1 {
    font-size: 2.25rem;
  }

  .interviews-draft-intro {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .interview-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .interview-card-grid .featured-link {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 0;
  }

  .interview-card-grid .featured-image {
    width: 64px;
    height: 82px;
  }

  .about-draft {
    align-items: flex-start;
  }

  .about-draft-inner {
    width: min(100% - 34px, 680px);
    padding: 54px 0 70px;
  }

  .about-draft h1 {
    max-width: 420px;
    font-size: 2.25rem;
  }

  .about-draft-copy {
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-notes {
    margin-top: 0;
    padding-top: 0;
    font-size: inherit;
    line-height: inherit;
  }

  .notes-draft {
    align-items: flex-start;
  }

  .notes-draft-inner {
    width: min(100% - 34px, 680px);
    padding: 54px 0 84px;
  }

  .notes-draft h1 {
    font-size: 2.7rem;
  }

  .notes-intro {
    font-size: 1.05rem;
  }

  .interview-live-shell .interview-live-page {
    padding-top: 52px;
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-marker {
    transition: none;
  }
}
