@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('./fonts/manrope-latin-variable.woff2') format('woff2');
}
:root {
  --paper: #f7f8fc;
  --white: #fff;
  --ink: #171a2d;
  --body: #434c68;
  --muted: #68708a;
  --accent: #5756df;
  --accent-dark: #35358f;
  --tint: #ececfe;
  --line: #d9dced;
  --display: Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: Candara, Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  --ease: cubic-bezier(0.22, 0.68, 0.2, 1);
  --header: 80px;
  --text-body: 17px;
  --text-reading: 18px;
  --text-small: 15px;
  --text-meta: 14px;
  --text-caption: 13px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: calc(var(--header) + 24px);
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.15s,
    background-color 0.15s,
    border-color 0.15s;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
strong,
b {
  font-weight: 400;
}
h1 {
  font-size: clamp(44px, 6.8vw, 80px);
  letter-spacing: -0.065em;
  line-height: 1.08;
}
h2 {
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.23;
  letter-spacing: -0.045em;
}
h3 {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
a:hover {
  color: var(--accent);
}
::selection {
  background: #dcdbff;
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
  border-radius: 2px;
}
#main:focus {
  outline: none;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1160px, calc(100% - 96px));
  margin-inline: auto;
}
.accent {
  color: var(--accent);
}
.muted {
  color: var(--muted);
}
.icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.eyebrow {
  font-family: var(--mono);
  font-size: var(--text-caption);
  letter-spacing: 0.105em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 10px;
  padding: 10px 20px;
  background: var(--ink);
  color: white;
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
  color: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: var(--text-small);
  font-weight: 400;
  line-height: 1.5;
  color: var(--accent);
}
.text-link:hover {
  color: var(--accent-dark);
}
.text-link .icon {
  transition: transform 0.16s var(--ease);
}
.text-link:hover .icon {
  transform: translateX(3px);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 48px;
  padding: 12px 21px;
  font-size: var(--text-small);
  font-weight: 400;
  border: 1px solid transparent;
  border-radius: 6px;
  transition:
    transform 0.16s var(--ease),
    background 0.16s,
    box-shadow 0.16s;
}
.button-primary {
  background: var(--accent-dark);
  color: white;
  box-shadow:
    0 3px 5px #3032840b,
    0 10px 22px #3032840f;
}
.button-primary:hover {
  background: var(--accent);
  color: white;
  box-shadow:
    0 5px 8px #30328412,
    0 14px 28px #3032841a;
  transform: translateY(-2px);
}

/* A compact shared header leaves the content in control. */
.site-header {
  height: var(--header);
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 248, 252, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.site-nav {
  display: flex;
  gap: 5px;
  align-items: center;
}
.site-nav a {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: var(--text-small);
  font-weight: 400;
  padding: 9px 15px;
  border-radius: 0;
  color: var(--body);
}
.site-nav a:hover {
  color: var(--accent-dark);
}
.site-nav a[aria-current='page'] {
  color: var(--accent-dark);
}
.site-nav a[aria-current='page']::after {
  content: '';
  position: absolute;
  inset: 5px 3px 6px;
  border: 1px solid #7771dcaa;
  border-radius: 49% 53% 46% 55% / 55% 45% 53% 47%;
  transform: rotate(-1.8deg);
  pointer-events: none;
}
/* A short, full-width landing page; project content lives in the collections. */
.layout-home {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  background: var(--paper);
}
.layout-home .site-header {
  flex-shrink: 0;
  border-bottom: 0;
}
.layout-home #main {
  flex: 1;
  display: flex;
}
.home-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(48px, 5.5vw, 76px);
  padding-block: clamp(32px, 5vh, 60px) 28px;
}
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}
.home-intro {
  animation: home-arrive 220ms var(--ease);
}
.home-intro h1 {
  color: var(--ink);
}
.home-intro h1 span {
  display: block;
}
.home-intro .home-greeting {
  display: block;
  margin-bottom: 14px;
  color: var(--body);
  font: 400 clamp(18px, 1.55vw, 21px) / 1.4 var(--display);
  letter-spacing: 0;
}
.home-intro .home-name {
  font-size: clamp(64px, 7.7vw, 108px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.052em;
}
.home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 28px;
}
.home-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--accent);
}
.home-links a:hover {
  color: var(--accent-dark);
}
.home-links .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.14s var(--ease);
}
.home-links a:hover .icon {
  transform: translate(2px, -2px);
}

/* A small line-art robot swarm replaces the former decorative torus. */
.home-art {
  position: relative;
  min-width: 0;
  height: clamp(250px, 25vw, 330px);
  overflow: visible;
  isolation: isolate;
}
.home-robot-scene {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.robot-trail {
  fill: none;
  stroke: #7774d2;
  stroke-width: 1;
  stroke-dasharray: 4 9;
  stroke-linecap: round;
  opacity: 0.36;
  animation: robot-trail-flow 4.8s linear infinite;
}
.robot-trail-two {
  stroke: #43aeb3;
  animation-duration: 5.8s;
  animation-direction: reverse;
}
.robot-trail-three {
  opacity: 0.24;
  animation-duration: 4.2s;
}
.robot-unit {
  transform-box: fill-box;
  transform-origin: center;
  stroke-width: 1.45;
  filter: drop-shadow(0 7px 9px rgba(62, 59, 139, 0.13));
}
.robot-unit use {
  vector-effect: non-scaling-stroke;
}
.robot-unit-main {
  color: #5052c8;
  animation: robot-approach-main 4.6s var(--ease) infinite;
}
.robot-unit-far {
  color: #35aeb3;
  opacity: 0.68;
  animation: robot-approach-far 5.8s ease-in-out infinite;
}
.robot-unit-low {
  color: #9365c6;
  opacity: 0.74;
  animation: robot-approach-low 5.2s ease-in-out infinite;
}
.robot-eye {
  animation: robot-eye-pulse 2.8s ease-in-out infinite;
}
.robot-eye-delay {
  animation-delay: 0.18s;
}
.robot-sparks {
  color: #6968c5;
  stroke-width: 1;
  opacity: 0.52;
  animation: robot-sparks-drift 5s ease-in-out infinite;
}
.home-art:hover .robot-unit-main {
  animation-duration: 2.8s;
}
@keyframes robot-trail-flow {
  to {
    stroke-dashoffset: -52;
  }
}
@keyframes robot-approach-main {
  0%,
  100% {
    transform: translate(9px, 5px) scale(0.965) rotate(0.4deg);
  }
  50% {
    transform: translate(-10px, -5px) scale(1.035) rotate(-0.7deg);
  }
}
@keyframes robot-approach-far {
  0%,
  100% {
    transform: translate(10px, -5px) scale(0.96);
  }
  50% {
    transform: translate(-7px, 7px) scale(1.05);
  }
}
@keyframes robot-approach-low {
  0%,
  100% {
    transform: translate(8px, 8px) scale(0.97) rotate(-0.8deg);
  }
  50% {
    transform: translate(-8px, -5px) scale(1.04) rotate(0.8deg);
  }
}
@keyframes robot-eye-pulse {
  0%,
  44%,
  52%,
  100% {
    opacity: 1;
  }
  48% {
    opacity: 0.16;
  }
}
@keyframes robot-sparks-drift {
  0%,
  100% {
    transform: translate(0, 2px);
    opacity: 0.42;
  }
  50% {
    transform: translate(-7px, -4px);
    opacity: 0.68;
  }
}
@media (prefers-reduced-motion: reduce) {
  .robot-trail,
  .robot-unit,
  .robot-eye,
  .robot-sparks {
    animation: none;
  }
}

.home-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
  animation: home-arrive 220ms var(--ease);
}
.home-index-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  width: 100%;
  padding: 17px 4px 19px;
  color: var(--accent-dark);
  transition:
    color 140ms,
    padding 140ms var(--ease);
}
.home-index-heading {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.home-index-heading h2 {
  font-family: var(--sans);
  font-size: 26px;
  letter-spacing: 0.012em;
}
.home-index-link p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
}
.home-index-heading > .icon {
  width: 24px;
  height: 24px;
  transition: transform 140ms var(--ease);
}
.home-index-link:hover,
.home-index-link:focus-visible {
  color: var(--accent);
  padding-inline: 8px 0;
}
.home-index-link:hover .home-index-heading > .icon,
.home-index-link:focus-visible .home-index-heading > .icon {
  transform: translateX(4px);
}
@keyframes home-arrive {
  from {
    transform: translateY(6px);
  }
  to {
    transform: translateY(0);
  }
}

.site-footer.site-footer-compact {
  border-top: 0;
  padding-block: 18px;
}
.site-footer.site-footer-compact small {
  position: static;
  margin-left: auto;
}

/* Projects use a compact text list without mixed institution labels. */
.work-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.work-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  column-gap: 28px;
  padding: 24px 0;
  color: var(--ink);
  transition: color 0.14s;
}
.work-entry::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(144, 143, 191, 0.38) 0,
    rgba(144, 143, 191, 0.38) 76%,
    transparent 100%
  );
  pointer-events: none;
}
.project-list > article:last-child .work-entry::after,
.project-list > article:not([hidden]):not(:has(~ article:not([hidden]))) .work-entry::after {
  display: none;
}
.work-entry > * {
  min-width: 0;
}
.work-entry:hover,
.work-entry:focus-visible {
  color: var(--ink);
}
.work-entry:focus-visible {
  outline-offset: 4px;
}
.work-entry-title {
  grid-column: 1;
  grid-row: 2;
  font-size: 23px;
  line-height: 1.45;
  letter-spacing: -0.025em;
  text-wrap: initial;
  color: var(--accent-dark);
  position: relative;
  isolation: isolate;
  width: fit-content;
}
.work-entry-title::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -0.16em;
  right: -0.22em;
  top: 47%;
  height: 0.82em;
  background:
    radial-gradient(ellipse at 12% 50%, #7a72ff57 0 48%, transparent 72%),
    radial-gradient(ellipse at 54% 50%, #61d6d05c 0 52%, transparent 75%),
    radial-gradient(ellipse at 88% 50%, #a47cff4f 0 50%, transparent 74%);
  clip-path: polygon(
    0 21%,
    8% 10%,
    20% 17%,
    34% 5%,
    49% 14%,
    64% 4%,
    80% 12%,
    100% 2%,
    98% 86%,
    83% 78%,
    68% 91%,
    51% 81%,
    34% 94%,
    18% 84%,
    2% 95%
  );
  filter: blur(0.55px);
  opacity: 0;
  transform: scaleX(0.12) rotate(-0.35deg);
  transform-origin: left center;
  transition:
    opacity 130ms,
    transform 240ms var(--ease);
}
.work-entry-areas {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--accent-dark);
  font: 400 14px/1.45 var(--sans);
  letter-spacing: 0;
}
.work-entry-areas span + span::before {
  content: '·';
  margin-right: 8px;
  color: var(--muted);
}
.work-entry-summary {
  grid-column: 1 / -1;
  grid-row: 3;
  max-width: 1010px;
  margin-top: 7px;
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--body);
}
.work-entry-note {
  grid-column: 1 / -1;
  grid-row: 4;
  margin-top: 10px;
  font-size: var(--text-meta);
  line-height: 1.6;
  color: var(--accent-dark);
}
.work-entry-aside {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: start;
  padding-top: 5px;
  gap: 12px;
  color: var(--accent);
}
.work-entry-aside time {
  font-family: var(--mono);
  font-size: var(--text-meta);
  line-height: 1.7;
}
.work-entry-aside .icon {
  width: 18px;
  height: 18px;
  transition:
    transform 0.14s var(--ease),
    color 0.14s;
}
.work-entry:hover .work-entry-title::before,
.work-entry:focus-visible .work-entry-title::before {
  opacity: 0.76;
  transform: scaleX(1) rotate(-0.35deg);
}
.work-entry:hover .icon,
.work-entry:focus-visible .icon {
  color: var(--accent-dark);
  transform: translateX(3px);
}

.section {
  padding-block: 77px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 34px;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.section-heading > div {
  max-width: 780px;
}
.section-heading > .text-link {
  flex-shrink: 0;
  margin-bottom: 4px;
}
.section-heading h2 {
  font-size: 34px;
}
.count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: var(--text-caption);
  font-weight: 400;
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--muted);
}

.publication {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}
.publication-venue {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.publication-venue > span:last-child {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--body);
}
.publication h3 {
  font-size: 21px;
  line-height: 1.45;
  max-width: 700px;
  letter-spacing: -0.026em;
  color: var(--ink);
}
.authors {
  font-size: var(--text-small);
  color: var(--body);
  line-height: 1.9;
  margin-top: 14px;
}
.authors strong {
  color: var(--ink);
  font-weight: 600;
}
.venue-full {
  font-size: var(--text-meta);
  color: var(--muted);
  margin-top: 8px;
}
.publication .text-link {
  font-size: var(--text-small);
  margin-top: 20px;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding-block: 36px 56px;
}
.footer-name {
  font-weight: 400;
  letter-spacing: -0.03em;
  font-size: 20px;
}
.site-footer p {
  font-size: var(--text-meta);
  color: var(--muted);
  margin-top: 7px;
}
.site-footer nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  padding-top: 5px;
}
.site-footer nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-small);
  color: var(--accent);
}
.site-footer .icon {
  width: 14px;
  height: 14px;
}
.site-footer small {
  position: absolute;
  right: 0;
  bottom: 26px;
  font: var(--text-caption) var(--mono);
  color: var(--muted);
}
/* Browsing: direct navigation, native links, instant local filtering. */
.page-shell {
  padding-top: 67px;
  padding-bottom: 90px;
}
.page-heading {
  margin-bottom: 49px;
}
.page-heading > .eyebrow {
  margin-bottom: 19px;
}
.page-heading h1 {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--accent-dark);
}
.page-heading > p:not(.eyebrow) {
  color: var(--body);
  font-size: 18px;
  line-height: 1.9;
  max-width: 660px;
  margin-top: 23px;
}
.library-controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 2px 2px 20px;
}
.filter-cluster {
  min-width: 0;
}
.filter-label {
  margin-bottom: 10px;
  color: var(--body);
  font: 400 15px/1.4 var(--sans);
  letter-spacing: 0;
}
.filter-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.filter-separator {
  flex: 0 0 auto;
  color: #a8adc1;
  font: 400 15px/1 var(--sans);
}
.filter-button {
  position: relative;
  isolation: isolate;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 7px 4px 6px;
  font: 400 16px/1.25 var(--sans);
  letter-spacing: 0;
  color: var(--body);
  transition:
    color 0.12s,
    transform 0.12s var(--ease);
}
.filter-button::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0 -6px -1px;
  border: 1px solid transparent;
  border-radius: 51% 46% 54% 48% / 44% 57% 46% 55%;
  transform: rotate(-1.8deg) scale(0.94);
  transition:
    border-color 0.12s,
    transform 0.16s var(--ease);
  pointer-events: none;
}
.filter-button:hover {
  color: var(--accent-dark);
}
.filter-button:hover::after {
  border-color: #aaa8df80;
  transform: rotate(-1deg) scale(1);
}
.filter-button[aria-pressed='true'] {
  color: var(--accent-dark);
}
.filter-button[aria-pressed='true']::after {
  border-color: #6f69d8d9;
  box-shadow: 0 0 0 0.45px #9d99e47a;
  transform: rotate(-1.8deg) scale(1);
}
.project-search {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 10px;
  min-width: 210px;
  max-width: 250px;
}
.project-search::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 2px -4px;
  background:
    radial-gradient(ellipse at 13% 48%, #8e86ef4f 0 40%, transparent 70%),
    radial-gradient(ellipse at 52% 56%, #69d9d153 0 48%, transparent 75%),
    radial-gradient(ellipse at 88% 43%, #a783ee43 0 42%, transparent 72%);
  clip-path: polygon(
    1% 25%,
    12% 10%,
    29% 18%,
    45% 5%,
    63% 16%,
    80% 7%,
    99% 21%,
    96% 80%,
    83% 91%,
    66% 84%,
    50% 96%,
    31% 86%,
    14% 94%,
    2% 76%
  );
  filter: blur(0.45px);
  opacity: 0;
  transform: scaleX(0.18) rotate(-0.4deg);
  transform-origin: left center;
  transition:
    opacity 0.13s,
    transform 0.22s var(--ease);
}
.project-search:hover::before,
.project-search:focus-within::before {
  opacity: 0.65;
  transform: scaleX(1) rotate(-0.4deg);
}
.project-search .icon {
  height: 16px;
  width: 16px;
  color: var(--muted);
}
.project-search input {
  min-width: 0;
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
  color: var(--ink);
  padding: 3px 0;
}
.project-search input::placeholder {
  color: var(--muted);
}
.library-status {
  display: flex;
  justify-content: space-between;
  margin: 20px 2px 6px;
  font-family: var(--mono);
  font-size: var(--text-caption);
  letter-spacing: 0.015em;
  color: var(--muted);
}
.project-page .page-heading h1,
.about-page .page-heading h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  letter-spacing: -0.05em;
  line-height: 1.18;
}
.empty-state {
  text-align: center;
  padding: 80px 0;
}
.empty-state p {
  color: var(--body);
  margin-top: 12px;
}
.empty-state button {
  border: 0;
  background: none;
  margin-top: 22px;
  color: var(--accent);
}
.timeline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 24px;
  row-gap: 0;
  padding: 12px 0 16px;
  border-top: 1px solid var(--line);
}
.timeline-date {
  grid-column: 2;
  grid-row: 1 / 3;
  font-family: var(--mono);
  font-size: var(--text-meta);
  color: var(--accent);
  text-align: right;
  padding-top: 2px;
}
.timeline-row h3 {
  grid-column: 1;
  grid-row: 1;
  font-size: 21px;
  line-height: 1.4;
}
.timeline-row p {
  font-size: var(--text-body);
  color: var(--body);
  line-height: 1.65;
}
.timeline-row .timeline-role {
  grid-column: 1;
  grid-row: 2;
  color: var(--body);
  font-size: 17px;
  line-height: 1.55;
  margin-top: 6px;
}
.timeline-summary {
  grid-column: 1 / -1;
  grid-row: 3;
  max-width: 960px;
  margin-top: 6px;
}
.education-row .timeline-summary {
  line-height: 1.55;
}
.timeline-link {
  display: flex;
  width: fit-content;
  min-height: 28px;
  margin-top: 7px;
  white-space: nowrap;
}
.about-page {
  padding-block: 67px 56px;
}
.about-page .page-heading {
  margin-bottom: 18px;
}
.about-intro {
  margin-top: 0;
}
.about-intro .prose {
  max-width: 780px;
  font-size: var(--text-reading);
  line-height: 1.95;
}
.about-intro .prose p {
  margin: 18px 0;
}
.about-intro .prose p:first-child {
  margin-top: 0;
}
.about-intro .prose p:last-child {
  margin-bottom: 0;
}
.about-section {
  margin-top: clamp(46px, 5.5vw, 68px);
}
.about-section .section-heading {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
}
.about-section .section-heading::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -0.2em;
  right: -0.32em;
  top: 51%;
  height: 0.62em;
  background:
    radial-gradient(ellipse at 18% 52%, #8880ea45 0 48%, transparent 73%),
    radial-gradient(ellipse at 58% 48%, #70dad33c 0 52%, transparent 76%),
    radial-gradient(ellipse at 88% 55%, #a58de33b 0 45%, transparent 72%);
  clip-path: polygon(
    0 28%,
    12% 13%,
    26% 22%,
    43% 7%,
    60% 18%,
    77% 4%,
    100% 21%,
    96% 82%,
    81% 74%,
    64% 91%,
    47% 79%,
    29% 94%,
    12% 81%,
    2% 92%
  );
  filter: blur(0.45px);
  transform: rotate(-0.55deg);
  pointer-events: none;
}
.about-publication {
  margin-top: clamp(52px, 6vw, 74px);
}
.about-publication .section-heading {
  margin-bottom: 0;
}
.about-publication .publication {
  padding: 8px 0 4px;
  border-top: 0;
}
.about-awards {
  margin-top: clamp(56px, 6.5vw, 80px);
}
.about-awards .section-heading {
  margin-bottom: 22px;
}
.about-page .timeline-row,
.about-page .award-row {
  border-top: 0;
}
.about-page .timeline-row + .timeline-row {
  margin-top: 14px;
}
.about-page .award-row + .award-row {
  margin-top: 14px;
}
.award-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  padding-block: 25px;
}
.award-row h3 {
  font-size: 19px;
}
.award-row p {
  margin-top: 7px;
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--body);
}
.award-year {
  font-family: var(--mono);
  font-size: var(--text-meta);
  color: var(--accent);
  padding-top: 4px;
}
.video-player {
  position: relative;
  margin: 24px 0;
}
.prose .video-player video {
  margin: 0;
}
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  min-height: 46px;
  max-width: 90%;
  border: 1px solid #ffffff90;
  background: #f8f9fced;
  color: var(--ink);
  box-shadow: 0 5px 22px #20254a29;
  backdrop-filter: blur(8px);
  border-radius: 6px;
  font: 400 var(--text-small) var(--sans);
  white-space: nowrap;
  transition:
    background 0.15s,
    box-shadow 0.15s;
}
.video-play:hover {
  background: #fff;
  box-shadow: 0 7px 26px #20254a40;
}
.video-play:disabled {
  opacity: 0.6;
}
.video-message:not(.sr-only) {
  display: block;
  padding: 10px 12px;
  font-size: var(--text-small);
  color: var(--ink);
  background: var(--tint);
}
/* Long-form reading uses a measured line length, without peripheral widgets. */
.article-page {
  max-width: 1020px;
  padding-top: 38px;
}
.back-link {
  font-size: var(--text-small);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
}
.article-header {
  padding-bottom: 34px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font: var(--text-meta) var(--mono);
  color: var(--muted);
  margin-top: 32px;
}
.article-meta > span:first-child {
  color: var(--accent);
}
.article-header h1 {
  max-width: 925px;
  font-size: clamp(33px, 4.2vw, 51px);
  letter-spacing: -0.045em;
  line-height: 1.22;
  margin-top: 16px;
  text-wrap: balance;
  color: var(--accent-dark);
}
.article-summary {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.8;
  color: var(--body);
  margin-top: 23px;
}
.article-topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 21px;
}
.article-topics a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: var(--text-caption);
  color: var(--muted);
}
.article-topics a:hover {
  color: var(--accent);
}
.article-topics .icon {
  width: 13px;
  height: 13px;
}
.article-reading {
  max-width: 768px;
  margin-inline: auto;
  padding-top: 26px;
}
.article-contents {
  border: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 34px;
}
.article-contents summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: var(--text-small);
  font-weight: 400;
  padding: 14px 0;
}
.article-contents summary::before {
  content: '//';
  font-family: var(--mono);
  color: var(--accent);
}
.article-contents summary:focus-visible {
  outline: 0;
  color: var(--accent-dark);
  text-shadow: 0 3px 14px rgba(80, 78, 170, 0.18);
}
.article-contents summary::-webkit-details-marker {
  display: none;
}
.article-contents .icon {
  margin-left: auto;
  width: 15px;
  height: 15px;
  transition: transform 0.15s;
}
.article-contents[open] .icon {
  transform: rotate(45deg);
}
.article-contents nav {
  padding-bottom: 17px;
}
.article-contents ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 25px;
}
.article-contents li {
  font-size: var(--text-small);
  color: var(--body);
  line-height: 1.7;
}
.article-contents a {
  display: block;
}
.article-contents li a:hover {
  color: var(--accent);
}
.prose {
  font-size: var(--text-reading);
  line-height: 1.92;
  color: var(--body);
  overflow-wrap: break-word;
}
.prose p {
  margin: 18px 0;
}
.prose > h2 {
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: var(--accent-dark);
  margin: 40px 0 17px;
  padding-top: 3px;
}
.prose > h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: 23px;
  margin: 28px 0 13px;
  color: var(--accent-dark);
}
.prose h4 {
  font-size: 20px;
  margin: 23px 0 12px;
  color: var(--accent-dark);
}
.prose strong {
  color: inherit;
  font-weight: 400;
}
.prose a:not(.headerlink) {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: #b5b7e6;
  text-underline-offset: 4px;
  word-break: break-word;
}
.prose a:not(.headerlink):hover {
  text-decoration-color: var(--accent);
}
.prose .headerlink {
  display: none;
}
.prose ul,
.prose ol {
  padding-left: 25px;
  margin: 15px 0 23px;
}
.prose li {
  padding-left: 3px;
  margin: 7px 0;
}
.prose li::marker {
  color: var(--accent);
}
.prose li > p {
  margin: 10px 0;
}
.prose blockquote {
  margin: 25px 0;
  padding: 4px 22px;
  border-left: 2px solid var(--accent);
  background: var(--tint);
  font-size: 17px;
}
.prose blockquote p {
  margin: 12px 0;
}
.prose hr {
  border: 0;
  border-top: 1px dashed #8d89cf;
  width: min(160px, 36%);
  margin: 38px 0;
  opacity: 0.62;
  transform: rotate(-0.35deg);
}
.prose img {
  height: auto;
  max-width: 100%;
  margin: 24px auto;
  border-radius: 4px;
}
.prose video {
  width: 100%;
  height: auto;
  border-radius: 5px;
  background: #eef0f6;
  margin: 24px auto;
}
.prose .media-caption {
  font: var(--text-caption)/1.7 var(--mono);
  text-align: center;
  color: var(--muted);
  margin: 12px 0 27px;
}
.table-scroll {
  max-width: 100%;
  overflow: auto;
  margin: 25px 0;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
  border: 0;
  border-radius: 4px;
  background: transparent;
}
.prose table {
  border-collapse: collapse;
  width: 100%;
  font-size: var(--text-small);
  line-height: 1.8;
  text-align: left;
  margin: 0;
}
.prose th {
  background: var(--tint);
  color: var(--ink);
  font-weight: 400;
  white-space: nowrap;
}
.prose th,
.prose td {
  padding: 13px 16px;
  vertical-align: top;
}
.prose tbody tr:nth-child(odd) {
  background: rgba(236, 236, 254, 0.48);
}
.prose code {
  font-family: var(--mono);
  font-size: 0.875em;
  background: #eef0f7;
  border-radius: 3px;
  padding: 3px 5px;
  word-break: break-word;
}
.prose pre {
  padding: 20px;
  background: #eef0f7;
  overflow-x: auto;
  border-radius: 4px;
  font-size: var(--text-meta);
}
.prose pre code {
  background: none;
  font-size: inherit;
  padding: 0;
  word-break: normal;
}
.prose .highlight {
  overflow: auto;
  max-width: 100%;
  background: #eef0f7;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin: 25px 0;
}
.prose .highlight table {
  margin: 0;
  font-size: var(--text-meta);
  line-height: 1.6;
}
.prose .highlight td {
  padding: 0;
  border: 0;
}
.prose .highlight pre {
  margin: 0;
  padding: 15px;
  background: none;
}
.prose .highlight .gutter {
  width: 30px;
  color: var(--muted);
  border-right: 1px solid var(--line);
}
.prose .highlight .gutter pre {
  padding-inline: 10px;
}
.prose .katex-display {
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 10px;
  max-width: 100%;
  font-size: 0.9em;
}
.prose .katex {
  font-size: 1.05em;
}
.prose .katex-display > .katex {
  min-width: max-content;
}
.article-end {
  max-width: 768px;
  margin: 46px auto 0;
  padding: 25px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.article-end .text-link {
  font-size: var(--text-small);
}
.related-work {
  padding: 40px 0 70px;
  max-width: 1020px;
}
.related-work .section-heading {
  margin-bottom: 26px;
}
.related-work h2 {
  font-size: 25px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.related-grid > a {
  position: relative;
  padding: 23px 35px 23px 0;
}
.related-grid h3 {
  font-size: 21px;
  line-height: 1.5;
  margin-top: 8px;
  text-wrap: initial;
}
.related-grid .icon {
  position: absolute;
  right: 0;
  top: 45%;
}
.archive-list article {
  display: grid;
  grid-template-columns: 110px 1fr 25px;
  gap: 30px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.archive-list article > span {
  font: var(--text-meta) var(--mono);
  color: var(--muted);
  padding-top: 6px;
}
.archive-list h2 {
  font-size: 24px;
  line-height: 1.5;
}
.archive-list p {
  font-size: 16px;
  color: var(--body);
  margin-top: 8px;
}
.archive-list .icon {
  width: 18px;
  height: 18px;
  margin-top: 6px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
}
.pagination a,
.pagination span {
  font-size: var(--text-small);
  padding: 7px 12px;
  border-radius: 4px;
}
.pagination .current {
  background: var(--accent);
  color: #fff;
}
.pagination a:hover {
  background: var(--tint);
}
.generic-page {
  max-width: 768px;
  margin-inline: auto;
}
.easter-page {
  max-width: 860px;
  padding-block: clamp(64px, 10vw, 132px) clamp(76px, 11vw, 148px);
}
.easter-page .back-link {
  margin-bottom: clamp(42px, 7vw, 76px);
}
.easter-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--muted);
  font: var(--text-caption) var(--mono);
  letter-spacing: 0.04em;
}
.easter-kicker span:first-child {
  color: var(--accent);
}
.easter-page h1 {
  margin-top: 17px;
  color: var(--ink);
  font-size: clamp(46px, 8vw, 86px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.easter-copy {
  margin-top: clamp(34px, 5vw, 56px);
  font-size: 19px;
}
.easter-copy p {
  margin-block: 0 18px;
}
.easter-cursor {
  display: inline-block;
  width: 0.62em;
  height: 1.05em;
  margin-top: 18px;
  background: var(--accent);
  vertical-align: -0.12em;
  animation: easter-blink 1.05s steps(1, end) infinite;
}
@keyframes easter-blink {
  50% {
    opacity: 0;
  }
}
.not-found {
  padding-block: 110px 130px;
}
.not-found h1 {
  margin: 20px 0;
  font-size: 60px;
}
.not-found > p:not(.eyebrow) {
  color: var(--body);
  margin-bottom: 35px;
}
.not-found > .text-link {
  margin-left: 25px;
}

@media (min-width: 1600px) {
  .container {
    width: min(1240px, calc(100% - 160px));
  }

  .article-page,
  .related-work {
    max-width: 1020px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }

  .library-controls {
    flex-wrap: wrap;
  }
  .project-search {
    max-width: 240px;
  }

  .award-row {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .article-page {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .site-nav a {
    padding-inline: 12px;
  }

  .publication {
    grid-template-columns: 160px 1fr;
    gap: 25px;
  }
  .publication h3 {
    font-size: 21px;
  }
  .project-search {
    max-width: none;
    flex: 1;
    min-width: 220px;
  }

  .page-heading h1 {
    font-size: 58px;
  }
  .article-reading {
    max-width: 720px;
  }
  .award-row {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 25px;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-heading > .text-link {
    margin-top: 5px;
  }
}
@media (max-width: 680px) {
  :root {
    --header: 72px;
    --text-body: 16px;
    --text-reading: 17px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    display: flex;
    justify-content: flex-end;
    gap: 0;
  }
  .site-nav {
    gap: 0;
    width: 100%;
  }
  .site-nav a {
    flex: 1;
    font-size: 14px;
    padding: 9px 6px;
  }

  .section {
    padding-block: 48px;
  }
  .section-heading {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 26px;
  }
  .section-heading .eyebrow {
    margin-bottom: 11px;
  }
  .section-heading h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  .section-heading > .text-link {
    margin: 0;
  }

  .publication {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
  }
  .publication-venue {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
  }
  .publication h3 {
    font-size: 20px;
  }
  .authors {
    margin-top: 14px;
  }
  .venue-full {
    margin-top: 9px;
  }
  .publication .text-link {
    margin-top: 20px;
  }

  .site-footer {
    flex-wrap: wrap;
    gap: 26px;
    padding-block: 29px 62px;
  }
  .site-footer nav {
    gap: 24px;
    padding: 0;
    margin-left: 0;
  }
  .site-footer nav a {
    min-height: 40px;
  }
  .site-footer small {
    left: 0;
    bottom: 22px;
  }
  .page-shell {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .page-heading {
    margin-bottom: 32px;
  }
  .page-heading h1 {
    font-size: 52px;
  }
  .page-heading > .eyebrow {
    margin-bottom: 16px;
  }
  .page-heading > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .library-controls {
    gap: 16px;
    padding: 0 0 16px;
  }
  .filter-cluster {
    flex: 1 0 100%;
  }
  .filter-list {
    flex-wrap: nowrap;
    gap: 9px;
    overflow-x: auto;
    padding: 3px 7px 6px;
    scrollbar-width: none;
  }
  .filter-list::-webkit-scrollbar {
    display: none;
  }
  .filter-button {
    flex: 0 0 auto;
    padding: 10px 4px 8px;
    min-height: 44px;
  }
  .project-search {
    flex: 1 0 100%;
    min-width: 0;
    padding: 9px 10px;
  }
  .library-status {
    margin-top: 22px;
  }

  .empty-state {
    padding-block: 55px;
  }
  .empty-state h2 {
    font-size: 28px;
  }
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline-date {
    grid-column: 1;
    grid-row: 3;
    text-align: left;
    padding-top: 0;
    margin-top: 6px;
  }
  .timeline-summary {
    grid-row: 4;
  }
  .timeline-row h3 {
    font-size: 20px;
  }
  .project-page .page-heading h1,
  .about-page .page-heading h1 {
    font-size: 42px;
    line-height: 1.23;
  }
  .about-section {
    margin-top: 42px;
  }
  .about-awards {
    margin-top: 42px;
  }
  .about-awards .section-heading {
    margin-bottom: 26px;
  }
  .award-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 24px;
  }
  .award-year {
    padding-top: 0;
  }
  .article-page {
    padding-top: 25px;
  }
  .article-header {
    padding-bottom: 28px;
  }
  .back-link {
    min-height: 40px;
  }
  .article-meta {
    gap: 12px 18px;
    margin-top: 26px;
  }
  .article-header h1 {
    font-size: 33px;
    letter-spacing: -0.04em;
    line-height: 1.28;
    margin-top: 18px;
    text-wrap: initial;
  }
  .article-summary {
    font-size: 17px;
    margin-top: 22px;
    line-height: 1.8;
  }
  .article-topics {
    gap: 13px 18px;
    margin-top: 20px;
  }
  .article-reading {
    padding-top: 24px;
  }
  .article-contents {
    margin-bottom: 28px;
    padding-inline: 0;
  }
  .article-contents summary {
    padding: 15px 0;
  }
  .article-contents ol {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .prose {
    line-height: 1.9;
  }
  .prose > h2 {
    font-size: 26px;
    line-height: 1.4;
    margin-top: 35px;
  }
  .prose h3 {
    font-size: 22px;
  }
  .prose blockquote {
    padding-inline: 16px;
    font-size: 16px;
  }
  .prose ul,
  .prose ol {
    padding-left: 21px;
  }
  .prose table {
    min-width: 550px;
  }
  .prose th,
  .prose td {
    padding: 12px 14px;
  }
  .prose .table-scroll:focus-visible {
    outline-offset: 2px;
  }
  .prose .highlight table {
    min-width: 0;
  }
  .prose .katex-display {
    font-size: 0.95em;
  }
  .article-end {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 30px;
    margin-top: 34px;
  }
  .related-work {
    padding-top: 28px;
    padding-bottom: 44px;
  }
  .related-work h2 {
    font-size: 26px;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .related-grid > a {
    padding-block: 22px;
  }
  .related-grid h3 {
    font-size: 20px;
  }
  .archive-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 24px;
  }
  .archive-list h2 {
    font-size: 23px;
  }
  .archive-list .icon {
    display: none;
  }
  .not-found {
    padding-block: 70px 85px;
  }
  .not-found h1 {
    font-size: 46px;
  }
  .not-found > .text-link {
    display: flex;
    margin: 23px 0 0;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }

  .article-header h1 {
    font-size: 31px;
  }
  .project-page .page-heading h1,
  .about-page .page-heading h1 {
    font-size: 39px;
  }
}
@media (max-width: 760px) {
  .home-page {
    padding-block: 32px 16px;
    gap: 32px;
  }
  .home-hero {
    display: block;
    min-height: 0;
  }
  .home-art {
    display: none;
  }
  .home-art * {
    animation: none;
  }
  .home-intro .home-name {
    font-size: clamp(54px, 14vw, 74px);
  }
  .home-links {
    margin-top: 16px;
    gap: 8px 22px;
  }
  .home-index {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .home-index-link {
    width: 100%;
    padding: 18px 0;
    gap: 6px 18px;
  }
  .home-index-heading h2 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .button-primary:hover,
  .home-links a:hover .icon,
  .home-index-link:hover,
  .home-index-link:focus-visible,
  .home-index-link:hover .home-index-heading > .icon,
  .home-index-link:focus-visible .home-index-heading > .icon {
    transform: none;
  }
}
@media print {
  :root {
    --paper: #fff;
    --ink: #000;
    --body: #222;
    --muted: #444;
    --accent: #000;
    --accent-dark: #000;
    --tint: #f3f3f3;
    --line: #ccc;
  }
  .site-header,
  .site-footer,
  .article-contents,
  .reading-progress,
  .related-work,
  .article-end,
  .back-link,
  .library-controls {
    display: none;
  }
  body {
    background: white;
    color: black;
    font-size: 11pt;
  }
  .container {
    width: 100%;
    max-width: none;
  }
  .page-shell,
  .article-page {
    padding-top: 0;
  }
  .article-reading {
    max-width: none;
  }
  .prose {
    font-size: 11pt;
    color: black;
  }
  .prose h2 {
    break-after: avoid;
  }
  .table-scroll {
    overflow: visible;
  }
  .prose table {
    min-width: 0;
  }
  .article-header h1 {
    font-size: 26pt;
  }
  .prose a {
    color: inherit;
  }

  .section {
    padding-block: 25px;
  }
}

@media print {
  .layout-home {
    display: block;
    min-height: 0;
    background: white;
  }
  .home-page {
    padding-block: 0;
  }
  .home-hero {
    display: block;
    min-height: 0;
  }
  .home-art {
    display: none;
  }
  .home-intro .home-name {
    font-size: 32pt;
  }
  .home-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .work-entry {
    grid-template-columns: minmax(0, 1fr) 70px;
    column-gap: 16px;
    padding-block: 22px;
  }
  .work-entry-title {
    font-size: 22px;
  }
  .work-entry-aside {
    padding-top: 4px;
    gap: 8px;
  }
  .work-entry-summary {
    line-height: 1.8;
  }
}
@media (prefers-reduced-motion: reduce) {
  .work-entry:hover .icon,
  .work-entry:focus-visible .icon {
    transform: none;
  }
}
@media print {
  .work-entry {
    break-inside: avoid;
    padding-block: 14px;
  }
  .work-entry .icon {
    display: none;
  }
}
