: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;
}

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

a {
  color: inherit;
}

.page {
  position: relative;
  width: min(700px, 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;
}

.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-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,
button {
  min-height: 42px;
  border: 1px solid rgba(24, 21, 17, 0.24);
  border-radius: 3px;
  font: inherit;
  font-size: 0.95rem;
}

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

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

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;
}

.subscribe-form.is-saved input[type="email"]::placeholder {
  color: transparent;
}

.subscribe-form.is-saved input[type="email"] {
  padding-right: 132px;
}

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: 14px;
  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 1px 0 rgba(24, 21, 17, 0.03);
}

.interview:last-child {
  margin-bottom: 0;
}

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

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

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

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

.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:nth-child(1) .portrait img {
  object-position: center 28%;
}

.interview:nth-child(3) .portrait img {
  object-position: 32% center;
}

.interview:nth-child(4) .portrait img {
  object-position: 44% center;
}

.interview:nth-child(5) .portrait img {
  object-position: center 9%;
}

.interview:nth-child(6) .portrait img {
  object-position: center 34%;
}

.interview:nth-child(7) .portrait img {
  object-position: center top;
}

.interview:nth-child(8) .portrait img {
  object-position: 35% center;
}

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

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

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

.interview p {
  margin-bottom: 0;
  color: var(--muted);
}

.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: 12px;
  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;
}

.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 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--wide {
  clear: both;
  width: min(100%, 540px);
}

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

.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 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;
}

.site-footer {
  margin-top: 38px;
  color: var(--faint);
  font-size: 0.84rem;
}

.site-footer a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

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

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.metric {
  padding: 13px 14px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.metric strong {
  display: block;
  margin-bottom: 1px;
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}

.metric span {
  color: var(--faint);
  font-size: 0.78rem;
  text-transform: lowercase;
}

.metrics-section {
  margin-top: 30px;
}

.metrics-section h2 {
  font-size: 1.5rem;
}

.world-map {
  position: relative;
  height: 250px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(24, 21, 17, 0.16);
  border-radius: 3px;
  background:
    radial-gradient(ellipse at 21% 39%, rgba(24, 21, 17, 0.12) 0 18%, transparent 19%),
    radial-gradient(ellipse at 50% 35%, rgba(24, 21, 17, 0.11) 0 15%, transparent 16%),
    radial-gradient(ellipse at 73% 50%, rgba(24, 21, 17, 0.1) 0 22%, transparent 23%),
    radial-gradient(ellipse at 31% 72%, rgba(24, 21, 17, 0.09) 0 10%, transparent 11%),
    #fffaf0;
}

.map-dot {
  position: absolute;
  width: var(--dot-size);
  height: var(--dot-size);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.map-dot span {
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.bar-list,
.recent-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bar-list li {
  display: grid;
  grid-template-columns: minmax(96px, 0.65fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.bar {
  height: 7px;
  background: rgba(24, 21, 17, 0.08);
}

.bar span {
  display: block;
  width: var(--bar-width);
  height: 100%;
  background: var(--ink);
}

.recent-list li {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.92rem;
}

.metric-empty {
  color: var(--faint);
}

.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;
  }

  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: 76px minmax(0, 1fr);
    gap: 13px;
    padding: 14px 14px 15px;
  }

  .portrait {
    width: 76px;
    height: 100px;
  }

  h3 {
    font-size: 1.08rem;
  }

  .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);
  }

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

  .bar-list li {
    grid-template-columns: minmax(72px, 0.7fr) minmax(0, 1fr) auto;
    gap: 8px;
    font-size: 0.9rem;
  }
}
