@font-face {
  font-family: "Geist Mono";
  src: url("https://cdn.jsdelivr.net/gh/vercel/geist-font@main/fonts/GeistMono/webfonts/GeistMono%5Bwght%5D.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --background: #f3f2ee;
  --surface: #ffffff;
  --text: #252525;
  --muted: #686868;
  --border: #ddddda;
  --link: #2a7ae2;
  --link-hover: #155fae;
}

.pattern-background {
position: relative;
overflow: hidden;
background-color: #ffffff;
mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
-webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
mask-size: 100% 100%;
-webkit-mask-size: 100% 100%;
mask-repeat: no-repeat;
-webkit-mask-repeat: no-repeat;
}

.pattern-background::before {
content: "";
position: absolute;
inset: -100%;
transform: rotate(175deg);
transform-origin: center;
background-color: #ffffff;
opacity: 1;
background: radial-gradient(circle, transparent 20%, #ffffff 20%, #ffffff 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #ffffff 20%, #ffffff 80%, transparent 80%, transparent) 15px 15px, linear-gradient(#2088ff 1.2000000000000002px, transparent 1.2000000000000002px) 0 -0.6000000000000001px, linear-gradient(90deg, #2088ff 1.2000000000000002px, #ffffff 1.2000000000000002px) -0.6000000000000001px 0;
background-size: 30px 30px, 30px 30px, 15px 15px, 15px 15px;
}

.pattern-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.site {
  position: relative;
  z-index: 1;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* font-family: "Geist Mono", monospace; */

  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.site {
  width: min(960px, calc(100% - 24px));
  margin: 0 auto;
  padding: 44px 0 0;
}

.profile {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.profile-photo {
  width: 168px;
  height: 168px;
  flex: 0 0 168px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 50%;
}

h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.affiliation {
  margin: 7px 0 13px;
  color: var(--muted);
  font-size: 1.2rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.links a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.links i {
  width: 1em;
  text-align: center;
}

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

a:hover,
a:focus-visible {
  color: var(--link-hover);
  text-decoration: underline;
}

section {
  margin-top: 24px;
  padding: 26px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

section > p {
  margin: 0;
}

.publications {
  margin: 0;
  padding-left: 1.3rem;
}

.publications li {
  padding-left: 0.35rem;
  margin-bottom: 1.35rem;
}

.publications li:last-child {
  margin-bottom: 0;
}

.publications p {
  margin: 0;
}

.authors,
.venue {
  color: var(--muted);
}

.publication-links {
  margin-top: 3px !important;
}

footer {
  text-align: center;
  padding: 12px 20px 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #eaeaea;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .site {
    width: calc(100% - 16px);
    padding: 38px 0 0;
  }

  section {
    padding: 22px 20px;
  }

  .profile {
    align-items: flex-start;
    gap: 16px;
  }

  .profile-photo {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }
}
