* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: #ffffff;
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42;
}

a {
  color: #1772d0;
  text-decoration: none;
}

a:focus-visible,
a:hover {
  color: #f09228;
  text-decoration: none;
}

.page {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 28px 20px 40px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 34px;
  align-items: center;
  padding: 22px 0 26px;
}

.intro-copy {
  min-width: 0;
}

h1 {
  margin: 0 0 18px;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

h2 {
  margin: 0 0 14px;
  color: #111111;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.35;
}

p {
  margin: 0 0 10px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 7px;
  justify-content: center;
  margin-top: 16px;
}

.portrait {
  margin: 0;
  width: 190px;
  height: 190px;
  overflow: hidden;
  border-radius: 50%;
  clip-path: circle(50%);
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 12px 0;
}

.publication {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 14px 0;
}

.publication.highlighted {
  background: #ffffd0;
  box-shadow: 12px 0 0 #ffffd0, -12px 0 0 #ffffd0;
}

.pub-media {
  display: block;
  width: 160px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background: #ffffff;
}

.pub-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.pub-body {
  min-width: 0;
}

.authors,
.venue,
.pub-links {
  margin-bottom: 4px;
}

.venue {
  color: #444444;
}

.footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eeeeee;
  color: #666666;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 700px) {
  .page {
    padding: 20px 16px 34px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
    text-align: left;
  }

  .intro-copy {
    width: 100%;
  }

  h1 {
    font-size: 30px;
  }

  .publication {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .pub-media {
    width: 120px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .publication {
    grid-template-columns: 1fr;
  }

  .pub-media {
    width: 100%;
    max-width: 260px;
  }
}
