:root {
  --bg: #faf7f2;
  --bg-overlay: rgba(255, 252, 248, 0.68);
  --text: #000;
  --text-muted: #000;
  --text-muted-2: #000;
  --text-subtle: #555;
  --border: #d4cfc7;
  --link: #2563eb;
  --link-hover: #1d4ed8;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --site-header-min-height: 2.65rem;
  --site-header-line-height: 1.3;
  --pub-authors-color: #4a4a4a;
  --pub-title-blue: #3d4f6f;
  --pub-title-blue-hover: #2d3d56;
  --pub-rule: #c8c2b8;
  --pub-footnote-color: #6b6b6b;
  --copy-text-size: 1.03rem;
  --copy-text-leading: 1.4;
  --pub-meta-size: 0.9rem;
  --pub-footnote-size: 0.82rem;
}

* {
  font-family: "Geist Sans", system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: var(--copy-text-size);
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 2.15rem 1rem 2.5rem;
  background-color: var(--bg);
}

body > .wrapper {
  position: relative;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.wrapper,
.wrapper * {
  background-color: transparent;
}

ul {
  margin-left: 1rem;
}

ul.long-list li:not(:last-child) {
  margin-bottom: 0.25rem;
}


.essay {
  text-align: left;
  max-width: 60%;
  padding: 5rem;
}

.intro-heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: flex;
  align-items: center;
  min-height: var(--site-header-min-height);
  min-width: 0;
  flex: 0 1 auto;
}

.intro-text {
  font-size: var(--copy-text-size);
  font-weight: 600;
  padding-left: 0;
  text-align: left;
  margin: 0;
  text-decoration: none;
  line-height: var(--site-header-line-height);
}

.home-title-link {
  color: var(--text);
  text-decoration: none;
}

.home-title-link:hover {
  color: var(--link);
}

.site-header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  width: 100%;
  margin-bottom: 0.85rem;
  min-height: var(--site-header-min-height);
  box-sizing: border-box;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  padding-left: 0;
  margin: 0;
  font-size: var(--copy-text-size);
  line-height: var(--site-header-line-height);
  justify-content: flex-end;
  flex: 0 0 auto;
  min-height: var(--site-header-min-height);
}

.site-nav-link {
  font: inherit;
  font-size: var(--copy-text-size);
  line-height: var(--site-header-line-height);
  font-weight: 600;
  color: var(--text-subtle);
  padding: 0.2rem 0.35rem;
  border-radius: 0.2rem;
  text-decoration: none;
}

.site-nav-link:hover {
  color: var(--link);
}

.site-nav-link[aria-current="page"] {
  color: var(--text);
}

.site-nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.home-central {
  max-width: 44rem;
  margin: 0 auto;
  text-align: left;
}

.page-section {
  scroll-margin-top: 1rem;
}

.section-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  text-align: left;
}

.section-lede {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text-subtle);
  text-align: left;
}

.pub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.pub-section .pub-list {
  margin-left: 0;
}

.pub-item {
  margin-bottom: 0;
  padding: 0.75rem 0 0.85rem;
  border-bottom: 1px solid var(--pub-rule);
}

.pub-item:first-child {
  padding-top: 0;
}

.pub-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pub-title {
  display: block;
  font-weight: 400;
  font-style: normal;
  font-size: var(--copy-text-size);
  line-height: var(--copy-text-leading);
  letter-spacing: -0.02em;
  color: var(--pub-title-blue);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}

.pub-title a {
  color: inherit;
  font-weight: inherit;
  font-style: normal;
  font-size: inherit;
  text-decoration: none;
}

.pub-title a:hover {
  color: var(--pub-title-blue-hover);
}

.pub-venue {
  display: block;
  font-size: var(--pub-meta-size);
  font-weight: 400;
  font-style: normal;
  line-height: var(--copy-text-leading);
  color: var(--text);
  margin-top: 0.3rem;
}

.pub-venue-sub {
  display: block;
  font-size: var(--pub-meta-size);
  line-height: var(--copy-text-leading);
  color: var(--text);
  margin-top: 0.12rem;
  font-weight: 400;
}

.pub-authors {
  display: block;
  font-size: var(--pub-meta-size);
  line-height: var(--copy-text-leading);
  color: var(--pub-authors-color);
  margin-top: 0.35rem;
  overflow-wrap: anywhere;
}

.pub-authors * {
  font-size: inherit;
}

.pub-author-self {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.pub-footnote {
  margin: 0.65rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--pub-rule);
  font-size: var(--pub-footnote-size);
  line-height: var(--copy-text-leading);
  color: var(--pub-footnote-color);
  font-style: italic;
  text-align: left;
}

.site-footer-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-top: 0.85rem;
  padding-top: 0;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  line-height: 0;
}

.icon-link:hover {
  color: var(--link);
}

.icon-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.icon-link svg {
  display: block;
}

.page-section .links-row,
.home-central .links-row {
  margin-top: 0.5rem;
}

.text-container.home-central {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.essay-quote, .credits {
  color: var(--text-muted);
}

.essay-quote {
  font-style: italic;
}

hr {
  margin: 1rem 0;
  background-color: var(--border);
  height: 1px;
  border: 0;
}

.footnotes {
  font-size: 1rem;
}

.footnotes a {
  font-size: inherit;
}

.essay-header {
  margin-bottom: 1rem;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem 1rem 1rem 1rem;
  margin-top: 0;
}

.project-wrapper {
  max-height: 70vh;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.project-wrapper::-webkit-scrollbar {
  display: none;
}

.text-container {
  max-width: 44rem;
  width: 100%;
  text-align: left;
}

.text-container:not(.home-central) {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.video-container {
  position: relative;
  display: block;
}

.about-media {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
  font-size: var(--copy-text-size);
  line-height: var(--copy-text-leading);
}

.return-link {
  font-size: 1rem;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
  transition: 0.2s;
}

.links-row a {
  color: var(--link);
}

.links-row a:hover {
  color: var(--link-hover);
}

address {
  font-style: normal;
  display: inline;
}

.links-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}


.project-card + .project-card {
  padding-top: 1rem;
}

.project-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.5rem;
}

sup {
  font-size: 0.75rem;
}

.essay-card {
  display: block;
  line-height: 1.5rem;
}

.essay-date {
  color: var(--text-muted-2);
  display: inline-block;
  width: 7.5rem;
}

.essay-name, .essay-title {
  color: var(--accent);
}

.essay-name {
  margin-left: 0.5rem;
}

.essay-title {
  font-size: 1.5rem;
}

.essay-name:hover {
  color: var(--accent-hover);
  transition: 0.2s;
}

.project-year {
  color: var(--text-muted);
}

.project-description {
  margin-top: 0.25rem;
  line-height: 1.25;
}

@media (max-width: 1024px) {
  .about-container,
  .site-main {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .essay {
    max-width: 90%;
    padding: 2rem 0rem;
  }

  .essay-date {
    display: inline;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 1rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 87.5%;
  }

  body {
    background-attachment: scroll;
    padding: 0.5rem 0 2rem;
  }

  .wrapper {
    padding: 0 1rem;
    width: 100%;
  }

  .site-header {
    flex-wrap: nowrap;
    gap: 0.35rem 0.5rem;
  }

  .site-nav {
    flex-shrink: 0;
    gap: 0.2rem 0.35rem;
  }

  .site-nav-link {
    padding: 0.12rem 0.22rem;
  }

  .intro-heading {
    flex: 1 1 auto;
    min-width: 0;
  }

  .about-container {
    padding: 0 0.5rem 0;
  }

  .text-container:not(.home-central) {
    gap: 1.75rem;
  }

  .video-container .about-media {
    max-height: 35vh;
    max-height: 35dvh;
    object-fit: contain;
  }
}

@media (max-width: 360px) {
  .site-header .intro-text,
  .site-header .site-nav-link {
    font-size: 0.9rem;
  }
}
