:root {
  --paper: #f4f2ed;
  --surface: #faf9f6;
  --ink: #171715;
  --muted: #6e6a63;
  --line: #d1cdc4;
  --line-strong: #a19c92;
  --max: 1180px;
  --header: 72px;
  --radius: 3px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--ink); color: var(--paper); }

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

a:hover { text-decoration-color: var(--muted); }

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

button { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 237, .94);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-copy { display: grid; line-height: 1.15; }

.identity-copy strong {
  font-size: .88rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.identity-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav a {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-current { color: var(--ink); }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

main { overflow: clip; }

.hero {
  min-height: min(760px, calc(100vh - var(--header)));
  display: grid;
  align-items: center;
  padding: 94px 0 100px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .55fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: end;
}

.kicker,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.kicker::before,
.section-label::before {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

.hero h1 em {
  display: block;
  color: var(--muted);
  font-weight: 400;
}

.hero-copy {
  max-width: 700px;
  margin: 30px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover { background: transparent; color: var(--ink); text-decoration: none; }
.button.secondary { background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--ink); color: var(--paper); }

.facts {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.facts div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.section.compact { padding: 82px 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .34fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 52px;
}

.section h2,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.section-note,
.page-intro {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.section-end {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.more-link,
.inline-links a,
.card-footer a {
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.article-image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e7e4dc;
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.article-card:hover .article-image { transform: scale(1.015); }

.article-body { padding: 24px; }

.eyebrow-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.article-card h3,
.book-card h3,
.work-card h3 {
  margin: 17px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.article-card h3 a { text-decoration: none; }
.article-card h3 a:hover { text-decoration: underline; }

.article-card p,
.book-card p,
.work-copy p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .93rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .76rem;
}

.card-footer a { color: var(--ink); }

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.book-card {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, .58fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.book-cover-link {
  display: block;
  align-self: start;
  width: 100%;
  overflow: hidden;
}

.book-cover {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  object-fit: contain;
}

.book-card {
  align-items: start;
}

.book-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}

.rating span {
  font-size: .9rem;
  letter-spacing: .06em;
}

.rating small { color: var(--muted); font-size: .76rem; }
.book-body .card-footer { margin-top: auto; }

.work-list { border-top: 1px solid var(--ink); }

.work-card {
  display: grid;
  grid-template-columns: 140px 250px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.work-card h3 { margin: 0; font-size: 1.35rem; }

.work-period,
.work-company {
  color: var(--muted);
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.work-company { margin-top: 6px; }
.work-copy p { margin-top: 0; }

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 15px;
}

.page-hero {
  padding: 92px 0 62px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
  gap: 50px;
  align-items: end;
}

.page-intro { max-width: 510px; }

.management-note {
  margin-bottom: 34px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: .88rem;
}

.management-note code {
  color: var(--ink);
  font-size: .85em;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  padding: 65px 0;
}

.contact-strip h2 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.02;
}

.site-footer {
  padding: 24px 0;
  background: var(--ink);
  color: #bcb8b0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: .76rem;
  letter-spacing: .04em;
}

.footer-inner a { color: var(--paper); }

@media (max-width: 980px) {
  .article-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .work-card { grid-template-columns: 110px 220px minmax(0, 1fr); }
}

@media (max-width: 800px) {
  :root { --header: 66px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero-grid,
  .section-head,
  .page-hero-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 78px 0 84px; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 3.8rem); }
  .facts { max-width: 520px; }
  .section { padding: 78px 0; }
  .section-head { gap: 20px; margin-bottom: 40px; }
  .work-card { grid-template-columns: 110px minmax(0, 1fr); }
  .work-copy { grid-column: 2; }
  .contact-strip { grid-template-columns: 1fr; }
  .contact-strip .button { justify-self: start; }
}

@media (max-width: 720px) {
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 26px 20px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-7px);
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: -.02em;
    text-transform: none;
  }
  .book-card { grid-template-columns: 135px minmax(0, 1fr); }
  .book-cover { min-height: 100%; }
  .book-body { padding: 20px; }
  .book-card h3 { font-size: 1.55rem; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 560px) {
  .identity-copy span { display: none; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .book-card { grid-template-columns: 1fr; }
  .book-cover { height: auto; max-height: 520px; object-fit: contain; padding: 20px; }
  .work-card { grid-template-columns: 1fr; gap: 8px; }
  .work-copy { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

body[data-page="articles"] .page-hero,
body[data-page="fiction"] .page-hero,
body[data-page="work"] .page-hero {
  padding-top: 35px;
  padding-bottom: 25px;
  border-bottom: none;
}

body[data-page="articles"] main > .section,
body[data-page="fiction"] main > .section,
body[data-page="work"] main > .section {
  padding-top: 25px;
}

body[data-page="about"] .hero {
  min-height: auto;
  padding-top: 35px;
  padding-bottom: 35px;
}

/* Homepage introduction */
body[data-page="about"] .hero {
  min-height: auto;
  padding-top: 35px;
  padding-bottom: 35px;
}

/* Homepage content sections */
body[data-page="about"] .section {
  padding-top: 55px;
  padding-bottom: 55px;
}

/* Dedicated page headings */
body[data-page="articles"] .page-hero,
body[data-page="fiction"] .page-hero,
body[data-page="work"] .page-hero {
  padding-top: 35px;
  padding-bottom: 25px;
  border-bottom: none;
}

/* Dedicated page content */
body[data-page="articles"] main > .section,
body[data-page="fiction"] main > .section,
body[data-page="work"] main > .section {
  padding-top: 25px;
}

.book-grid {
  align-items: start;
}

.book-card {
  align-self: start;
}

.book-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
}


.book-description.is-expanded {
  display: block;
  overflow: visible;
}


.book-description-toggle:hover {
  color: var(--muted);
}

.book-description {
  margin-bottom: 0;
}

.book-description-toggle {
  display: block;
  align-self: flex-start;
  width: fit-content;
  margin: 2px 0 18px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 0.92rem;
  text-align: left;
  opacity: 0.65;
  cursor: pointer;
}
.book-description-toggle:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .site-header {
    background: #f3f1eb;
    backdrop-filter: none;
  }

  .site-nav {
    background: #f3f1eb;
  }
}

.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.pagination a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.pagination-next {
  justify-self: end;
}

.pagination a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.availability {
  color: var(--ink);
}

.availability::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d7a4d;
  box-shadow: 0 0 0 4px rgba(61, 122, 77, .12);
}

.hero-copy-secondary {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.availability-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.publication-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .03em;
}

.publication-proof span {
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.publication-proof strong {
  color: var(--ink);
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.tag-type {
  border-color: var(--line-strong);
  color: var(--ink);
}

.tag:hover {
  border-color: var(--ink);
  color: var(--ink);
  text-decoration: none;
}

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

.service-card {
  padding: 28px 28px 4px 0;
  border-right: 1px solid var(--line);
}

.service-card + .service-card {
  padding-left: 28px;
}

.service-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-number {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.service-card h3 {
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.service-card > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.expertise-line {
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
}

.expertise-line strong {
  color: var(--ink);
}

.about-summary,
.fiction-preview-inner {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 110px);
}

.about-summary h2,
.fiction-preview h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.about-summary p,
.fiction-preview p {
  margin: 0 0 16px;
  color: var(--muted);
}

.fiction-preview {
  background: var(--surface);
}

.contact-strip > div > p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.article-tools {
  margin-bottom: 42px;
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.article-search,
.filter-group {
  display: grid;
  gap: 9px;
}

.article-search > span,
.filter-group > span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-search input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.article-search input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(23, 23, 21, .08);
}

.filter-group {
  margin-top: 20px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.article-results {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 800px) {
  .service-grid,
  .about-summary,
  .fiction-preview-inner {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card + .service-card {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .publication-proof {
    display: grid;
  }

  .article-tools {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .pagination {
    grid-template-columns: 1fr 1fr;
  }

  .pagination-status {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }
}

/* ---------------------------------
   Full article pages
---------------------------------- */

.article-page {
  padding: 45px 0 90px;
}

.article-header {
  max-width: 900px;
}

.article-back-link {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-back-link:hover {
  color: var(--ink);
}

.article-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-header h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.article-deck {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

.article-byline {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-featured-image {
  margin-top: 48px;
  margin-bottom: 50px;
}

.article-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: cover;
}

.article-content {
  max-width: 760px;
}

.article-content p {
  margin: 0 0 1.5em;
}

.article-content h2 {
  margin: 1.25em 0 0.55em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.article-content h3 {
  margin: 1.4em 0 0.55em;
  font-size: 1.15rem;
  line-height: 1.3;
}

.article-content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content blockquote {
  margin: 2em 0;
  padding-left: 22px;
  border-left: 2px solid var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.55;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.6em;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 0.5em;
}

.article-content img {
  width: 100%;
  height: auto;
  margin: 30px 0;
}

.article-figure {
  margin: 34px 0;
}

.article-figure img {
  display: block;
  margin: 0;
}

.article-featured-image figcaption,
.article-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.article-content hr {
  margin: 48px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.article-content table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.article-content th,
.article-content td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  font-weight: 700;
}

.article-content pre {
  overflow-x: auto;
  margin: 30px 0;
  padding: 18px;
  background: rgba(0, 0, 0, 0.04);
  font-size: 0.86rem;
}

.article-content code {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.9em;
}

@media (max-width: 720px) {
  .article-page {
    padding-top: 28px;
    padding-bottom: 65px;
  }

  .article-back-link {
    margin-bottom: 26px;
  }

  .article-featured-image {
    margin-top: 32px;
    margin-bottom: 36px;
  }

  .article-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.author-box {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 20, 20, 0.16);
}

.author-box__label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}

.author-box__name {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.author-box__name a {
  color: inherit;
  text-decoration: none;
}

.author-box p {
  max-width: 42rem;
}

.hero-title-second-line {
  display: block;
  margin-top: 6px;
}

.author-box .text-link {
  display: inline-block;
  margin-top: 0.25rem;
}
