:root {
  --sidebar-width: 300px;
  --bg: #0c0c0c;
  --panel: #151515;
  --muted: #d8d8d8;
  --fg: #f4f4f4;
  --line: #2c2c2c;
  --sidebar-heading: #d9d9d9;
  --sidebar-divider: #2b2b2b;
  --link: #f4f6ff;
  --link-underline: rgba(244, 246, 255, 0.45);
  --brand: #ffffff;
  --card: #181818;
  --tldr-border: transparent;
  --tldr-bg: #222222;
  --code-bg: #101010;
  --code-fg: var(--fg);
  --inline-code-bg: #1b1b1b;
  --shadow: rgba(0, 0, 0, 0.4);
  --header-bg: rgba(12, 12, 12, 0.96);
  --header-height: 3.6rem;
  --base-font-size: 18px;
  --callout-title: #dedede;
  --callout-text: var(--muted);
  --control-bg: #181818;
  --control-bg-active: #2a2a2a;
  --control-focus: rgba(255, 255, 255, 0.22);
}

:root[data-font-size='small'] {
  --base-font-size: 17px;
}

:root[data-font-size='medium'] {
  --base-font-size: 18px;
}

:root[data-font-size='large'] {
  --base-font-size: 20px;
}

:root[data-theme='light'] {
  --bg: #f6f6f6;
  --panel: #ffffff;
  --muted: #475467;
  --fg: #101828;
  --line: #e2e8f0;
  --sidebar-heading: #0f172a;
  --sidebar-divider: #d6dde8;
  --link: #155eef;
  --link-underline: rgba(21, 94, 239, 0.45);
  --brand: #0b1b6a;
  --card: #f3f4f6;
  --tldr-border: transparent;
  --tldr-bg: #dbe3ef;
  --callout-title: #0f172a;
  --callout-text: #27364f;
  --code-bg: #f2f4f8;
  --code-fg: #101828;
  --inline-code-bg: #e8edff;
  --shadow: rgba(16, 24, 40, 0.14);
  --header-bg: rgba(246, 246, 246, 0.95);
  --control-bg: #ffffff;
  --control-bg-active: #eceff3;
  --control-focus: rgba(16, 24, 40, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, 'Avenir Next', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: var(--base-font-size);
  line-height: 1.55;
  overflow-x: hidden;
}

html {
  scrollbar-gutter: stable;
}

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a:hover {
  border-color: var(--link-underline);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  overflow-anchor: none;
}

.site-header {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--header-bg);
  backdrop-filter: blur(4px);
  z-index: 3;
  overflow-anchor: none;
}

.site-header-inner {
  width: 100%;
  margin: 0;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 640px) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
}

.site-brand {
  color: var(--fg);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  justify-self: start;
}

.site-subtitle {
  color: var(--muted);
  font-size: 0.88rem;
  margin-left: 0.25rem;
  margin-right: auto;
}

.header-search {
  position: relative;
  width: 100%;
}

.header-search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--control-bg);
  color: var(--fg);
  padding: 0.52rem 0.72rem;
  font-size: 0.95rem;
  line-height: 1.35;
}

.header-search-input::placeholder {
  color: var(--muted);
}

.header-search-input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--control-focus);
}

.header-search-results {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 15;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 10px 26px var(--shadow);
  max-height: 480px;
  overflow-y: auto;
}

.header-search-results li {
  margin: 0;
}

.header-search-results a,
.header-search-empty {
  display: block;
  padding: 0.5rem 0.72rem;
  border-bottom: none;
  color: var(--fg);
  font-size: 0.92rem;
  line-height: 1.3;
}

.header-search-result-title {
  display: block;
  font-weight: 600;
}

.header-search-result-meta {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.header-search-results a:hover {
  background: var(--card);
}

.header-search-empty {
  color: var(--muted);
}

.font-size-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.theme-toggle,
.sidebar-toggle,
.sidebar-open-toggle,
.sidebar-mobile-toggle,
.mobile-search-toggle,
.font-size-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.theme-toggle,
.sidebar-toggle,
.sidebar-open-toggle,
.sidebar-mobile-toggle,
.mobile-search-toggle,
.font-size-control {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--control-bg);
  color: var(--fg);
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  text-align: center;
  cursor: pointer;
  line-height: 1;
  font-size: 1.05rem;
}

.theme-toggle:focus-visible,
.sidebar-toggle:focus-visible,
.sidebar-open-toggle:focus-visible,
.sidebar-mobile-toggle:focus-visible,
.mobile-search-toggle:focus-visible,
.font-size-control:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--control-focus);
}

.theme-toggle:hover,
.sidebar-toggle:hover {
  border-color: var(--line);
}

.sidebar-toggle {
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  position: relative;
  z-index: 3;
}

.sidebar-open-toggle {
  position: fixed;
  left: 0.55rem;
  top: calc(var(--header-height) + 0.85rem);
  display: none;
  z-index: 3;
}

.sidebar-open-toggle:hover {
  border-color: var(--line);
}

.sidebar-mobile-toggle {
  display: none;
}

.mobile-search-toggle {
  display: none;
}

.sidebar-header-control {
  position: fixed;
  top: calc(var(--header-height) + 0.55rem);
  left: calc(var(--sidebar-width) + 0.4rem);
  z-index: 4;
}

.font-size-control {
  border-radius: 999px;
  width: 2.05rem;
  height: 2.05rem;
  font-size: 0.9rem;
}

.font-size-control:hover {
  border-color: var(--line);
}

.font-size-control.is-active {
  background: var(--control-bg-active);
  border-color: var(--fg);
}

.shell-body {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: calc(100vh - var(--header-height));
}

.site-sidebar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--fg);
  padding: 1rem;
  padding-top: 1.35rem;
  height: calc(100vh - var(--header-height));
  overflow: auto;
  scrollbar-gutter: stable;
  position: fixed;
  left: 0;
  width: var(--sidebar-width);
  top: var(--header-height);
  z-index: 2;
  transition: none;
  overscroll-behavior: contain;
  overflow-anchor: none;
}

:root[data-sidebar='collapsed'] .site-sidebar {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

:root[data-sidebar='collapsed'] .sidebar-open-toggle {
  display: inline-flex;
}

:root[data-sidebar='collapsed'] .sidebar-toggle {
  display: none;
}

:root:not([data-sidebar='collapsed']) .sidebar-open-toggle {
  display: none;
}

:root:not([data-sidebar='collapsed']) .sidebar-toggle {
  display: inline-flex;
}

.site-main {
  min-width: 0;
  padding: 0.35rem 0.9rem 0;
  margin-left: var(--sidebar-width);
}

:root[data-sidebar='collapsed'] .site-main {
  margin-left: 0;
}

.content-pane {
  width: min(78ch, calc(100vw - var(--sidebar-width) - 2rem));
  min-width: 0;
  margin: 0 auto;
  margin-inline: auto;
}

:root[data-sidebar='collapsed'] .content-pane {
  width: min(78ch, calc(100vw - 2rem));
}

.sidebar-group {
  margin-bottom: 1.25rem;
}

.sidebar-part h3,
.sidebar-group h2,
.sidebar-group h3 {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sidebar-heading);
  line-height: 1.25;
}

.sidebar-part + .sidebar-part {
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--sidebar-divider);
}

.sidebar-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-group a {
  color: var(--fg);
}

.sidebar-group li {
  margin: 0.5rem 0;
}

.sidebar-search-label {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sidebar-heading);
}

.sidebar-search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--control-bg);
  color: var(--fg);
  padding: 0.52rem 0.62rem;
  font-size: 0.92rem;
  line-height: 1.3;
}

.sidebar-search-input::placeholder {
  color: var(--muted);
}

.sidebar-search-input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--control-focus);
}

.sidebar-search-meta {
  min-height: 1rem;
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sidebar-group a {
  display: block;
  border-bottom: none;
  line-height: 1.35;
}

.sidebar-part li {
  margin: 0;
}

.sidebar-part li + li {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--sidebar-divider);
}

.sidebar-part a {
  padding: 0.05rem 0.05rem;
}

.sidebar-subtle {
  opacity: 0.87;
}

.chronology-section,
.reference-section {
  margin-top: 1.4rem;
}

.note-text {
  color: var(--muted);
  margin-top: 0;
}

.home-link-list,
.chronology-section ul,
.reference-section ul {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.chronology-section ul,
.reference-section ul {
  margin-top: 0.4rem;
}

.home-link-list li,
.chronology-section li,
.reference-section li {
  margin: 0.45rem 0;
}

.home-link-list a,
.chronology-section a,
.reference-section a {
  display: block;
  border-bottom: none;
}

.sidebar-share {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.topic-link {
  font-weight: 700;
}

.site-main :where(h1, h2, h3, h4) {
  scroll-margin-top: 100px;
}

.site-main h1 {
  margin-top: 0;
  line-height: 1.2;
}

.home-intro {
  margin-bottom: 1.8rem;
}

.home-header-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 1.1rem;
}

.home-intro p:last-of-type {
  margin-bottom: 1.6rem;
}

.intro-image-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0.95rem 0 1.25rem;
}

.intro-image-row img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ai-channels-image-wrap {
  margin: 1rem 0 1.2rem;
  text-align: center;
}

.ai-channels-image {
  display: inline-block;
  max-height: 50vh;
  width: auto;
  max-width: 100%;
  height: auto;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1rem 0 1.25rem;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-figure {
  margin: 1rem auto 1.25rem;
  width: 100%;
}

.post-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.post-figure figcaption {
  margin-top: 0.45rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--muted);
}

.about-headshot {
  float: left;
  width: auto;
  margin: 0.15rem 1rem 0.75rem 0;
}

.about-headshot-image {
  display: block;
  width: auto;
  height: 15vh;
  min-height: 80px;
  max-height: 140px;
  border-radius: 6px;
}

.post-image-row {
  display: grid;
  gap: 0.75rem;
}

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

.post-list-item,
.topic-card {
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 10px;
  background: var(--panel);
}

.post-grid,
.home-topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1rem;
}

.post-list-item p,
.topic-card p {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.active {
  opacity: 1;
  font-weight: 700;
  border-bottom: none;
  color: var(--brand);
}

.post-header {
  margin-bottom: 1.5rem;
}

.post-tldr {
  border: none;
  background: var(--tldr-bg);
  border-radius: 0;
  padding: 0.85rem 1rem;
  margin: 0 0 1rem;
  width: 100%;
  box-sizing: border-box;
  box-shadow: none;
}

.post-content {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  padding-top: 2.1rem;
  background: transparent;
  border: none;
}

.post-tldr h2 {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--callout-title);
}

.post-tldr p,
.topic-post-list span {
  margin: 0.25rem 0 0;
  color: var(--callout-text);
}

.post-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.post-header h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
}

.share-button {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--fg);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.share-button:hover {
  border-color: var(--line);
}

.post-article,
.topic-post-list {
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  max-width: 78ch;
}

.post-article {
  background: transparent;
}

.post-article code,
.post-article pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

.post-article pre {
  color: var(--code-fg);
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--code-bg);
  padding: 0.85rem;
  border-radius: 10px;
}

.post-article pre code {
  color: inherit;
}

.post-article code {
  color: var(--code-fg);
  background: var(--inline-code-bg);
  padding: 0.08rem 0.2rem;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.post-article blockquote {
  border-left: 3px solid var(--line);
  margin-left: 0;
  padding-left: 1rem;
  color: #d6d6d6;
  color: var(--muted);
  line-height: 1.65;
}

.post-article p,
.post-article li {
  max-width: 72ch;
}

.share-menu {
  position: relative;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.share-menu-toggle {
  list-style: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  color: var(--fg);
}

.share-menu-toggle:hover {
  border-color: var(--line);
}

.share-menu-panel {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.4rem;
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem;
  box-shadow: 0 10px 24px var(--shadow);
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
}

.share-menu[open] .share-menu-panel {
  display: flex;
}

.share-link,
.share-menu .share-button {
  width: 100%;
}

.share-link {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  display: inline-block;
  color: var(--muted);
}

.share-link:hover {
  border-color: var(--line);
}

.share-menu .share-button {
  margin-top: 0;
}

.share-menu [data-share-url] {
  border: 1px solid var(--line);
  background: var(--card);
}

.share-menu-toggle::-webkit-details-marker {
  display: none;
}

.topic-post-list {
  list-style: none;
  padding: 1rem;
}

.topic-post-list li {
  margin: 0.85rem 0;
}

.topic-post-list span {
  display: block;
  color: #c8c8c8;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.more-to-read-box {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  background: var(--card);
  box-shadow: 0 8px 24px var(--shadow);
  width: 100%;
  box-sizing: border-box;
}

.more-to-read-box h2 {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--callout-title);
}

.more-to-read-box ul {
  margin: 0;
  padding-left: 1rem;
}

.next-article-box {
  margin-top: 1.25rem;
  margin-bottom: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.95rem 1.2rem;
  background: var(--card);
  box-shadow: 0 8px 24px var(--shadow);
  width: 100%;
  box-sizing: border-box;
}

.next-article-box h2 {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--callout-title);
}

.next-article-box p {
  margin: 0;
}

:root[data-theme='light'] .post-tldr,
:root[data-theme='light'] .more-to-read-box,
:root[data-theme='light'] .next-article-box {
  background: #000;
  border-color: #000;
}

:root[data-theme='light'] .post-tldr h2,
:root[data-theme='light'] .more-to-read-box h2,
:root[data-theme='light'] .next-article-box h2,
:root[data-theme='light'] .post-tldr p,
:root[data-theme='light'] .more-to-read-box li,
:root[data-theme='light'] .next-article-box p {
  color: #fff;
}

:root[data-theme='light'] .post-tldr a,
:root[data-theme='light'] .more-to-read-box a,
:root[data-theme='light'] .next-article-box a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

:root[data-theme='light'] .post-tldr a:hover,
:root[data-theme='light'] .more-to-read-box a:hover,
:root[data-theme='light'] .next-article-box a:hover {
  border-color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 980px) {
  .site-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand controls"
      "search search";
    row-gap: 0.6rem;
  }

  .site-brand {
    grid-area: brand;
  }

  .header-controls {
    grid-area: controls;
  }

  .header-search {
    grid-area: search;
  }

  .shell-body {
    width: 100%;
    padding: 0 1rem 1rem;
  }

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

  .content-pane {
    width: min(78ch, 100%);
  }

  .site-sidebar {
    position: static;
    left: auto;
    width: auto;
    height: auto;
    max-height: none;
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 4.6rem;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    padding: 0.55rem 0.65rem;
  }

  .site-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    grid-template-areas: "mobile brand msearch controls";
    gap: 0.55rem;
    padding: 0 0.15rem;
  }

  .sidebar-mobile-toggle {
    display: inline-flex;
    grid-area: mobile;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 8px;
    font-size: 1.02rem;
    z-index: 8;
  }

  .site-brand {
    grid-area: brand;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-search-toggle {
    display: inline-flex;
    grid-area: msearch;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 8px;
    font-size: 1.02rem;
    z-index: 8;
  }

  .header-controls {
    grid-area: controls;
    gap: 0.42rem;
  }

  .font-size-controls {
    display: none;
  }

  .header-search {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 6;
    padding: 0.45rem 0.65rem 0;
    background: var(--header-bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.14s ease, transform 0.14s ease;
  }

  .header-search-input {
    height: 2.5rem;
    font-size: 1rem;
  }

  .header-search-results {
    max-height: 52vh;
  }

  :root[data-mobile-search='open'] .header-search {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .intro-image-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .site-sidebar {
    display: block;
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: min(86vw, 320px);
    height: calc(100vh - var(--header-height));
    max-height: none;
    margin: 0;
    border-radius: 0;
    border-top: none;
    border-left: none;
    z-index: 7;
    transform: translateX(-100%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.18s ease;
  }

  :root:not([data-sidebar='collapsed']) .site-sidebar {
    transform: translateX(0);
    pointer-events: auto;
  }

  .sidebar-open-toggle,
  .sidebar-header-control {
    display: none !important;
  }

  .post-image-row-2 {
    grid-template-columns: 1fr;
  }

  .post-content {
    padding-top: 1.1rem;
  }

  .post-header {
    gap: 0.55rem;
    margin-bottom: 0.9rem;
  }

  .post-header h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 1.06;
    letter-spacing: -0.01em;
  }

  .share-menu {
    margin-top: 0;
    align-self: flex-end;
  }

  .post-article,
  .topic-post-list {
    padding: 0.7rem 0.15rem;
  }

  .about-headshot {
    float: none;
    margin: 0 0 0.85rem;
  }

  .about-headshot-image {
    height: auto;
    width: min(56vw, 220px);
    max-height: none;
  }
}
