@import"https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap";

:root {
  --key-blue: #4a4e76;
  --key-red: #FC4765;
  --key-yellow: #FFE943;
  --title-font: "Playfair Display", serif;
  --serif-font: "Source Serif 4", "Playfair", serif;
  --sans-font: "Outfit", "Inter", "Helvetica Neue", "Helvetica", sans-serif
}

* {
  color: var(--key-blue);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box
}

::selection {
  background-color: var(--key-yellow);
  color: #352d61
}

::-moz-selection {
  background-color: var(--key-yellow);
  color: #352d61
}

a {
  text-decoration: none;
  font-style: italic
}

a:hover,
a:focus {
  text-decoration: underline;
  text-decoration-color: var(--key-red);
  font-style: italic
}

p {
  line-height: 1.3
}

.content p {
  font-family: var(--serif-font);
  font-size: 1rem
}

.content p.home {
  font-size: 1.15rem
}

h2 {
  font-family: var(--sans-font);
  margin: .5rem 0;
  font-size: 1.35rem;
  font-weight: 500
}

h3 {
  font-family: var(--sans-font);
  color: var(--key-red);
  font-weight: 500;
  margin: .5rem 0
}

h2 a {
  display: inline-block;
  font-size: .95rem;
  margin-left: 1rem;
  font-style: normal;
  font-weight: 400;
  padding-top: .35rem;
  vertical-align: top
}

h2 a:hover {
  font-style: normal
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%
}

@media screen and (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto
  }

  .container.narrow {
    max-width: 600px
  }

  .layout {
    display: flex;
    flex-direction: row;
    column-gap: 3rem
  }

  .layout .profile {
    position: sticky;
    top: 0;
    width: 300px;
    height: 100%
  }

  .layout .content {
    width: calc(100% - 300px - 3rem);
    padding: 1rem 0
  }

  .layout .content p {
    max-width: 600px;
    margin: 1rem 0
  }

  hr.sectioning {
    display: none
  }
}

@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
  }

  .container.narrow {
    max-width: 600px
  }

  .layout {
    display: flex;
    flex-direction: row;
    column-gap: 3rem
  }

  .layout .profile {
    position: sticky;
    top: 0;
    width: 300px;
    height: 100%
  }

  .layout .content {
    width: calc(100% - 300px - 3rem);
    padding: 1rem 0
  }

  .layout .content p {
    max-width: 600px;
    margin: 1rem 0
  }

  hr.sectioning {
    display: none
  }
}

@media screen and (max-width: 960px) {
  .container {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto
  }

  .container.narrow {
    padding-left: 1rem;
    padding-right: 1rem
  }

  .layout {
    display: flex;
    flex-direction: column;
    row-gap: 0
  }

  .layout .profile {
    position: relative;
    width: 100%
  }

  .layout .content {
    width: 100%;
    padding: 1rem;
    border-top: 1px solid #ddd;
    padding-top: 2rem
  }

  .layout .content p {
    width: auto;
    margin: 0 0 1rem 0
  }

  hr.sectioning {
    display: block
  }
}

@media screen and (max-width: 720px) {
  .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto
  }

  .container.narrow {
    padding-left: 1rem;
    padding-right: 1rem
  }

  .layout {
    display: flex;
    flex-direction: column;
    row-gap: 0
  }

  .layout .profile {
    position: relative;
    width: 100%
  }

  .layout .content {
    width: 100%;
    padding: 1rem;
    padding-top: 2rem
  }

  .layout .content p {
    width: auto;
    margin: 0 0 1rem 0
  }

  hr.sectioning {
    display: block
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: 100%;
    margin-left: 0;
    margin-right: 0
  }

  .container.narrow {
    padding-left: 1rem;
    padding-right: 1rem
  }

  .layout {
    display: flex;
    flex-direction: column;
    row-gap: 0
  }

  .layout .profile {
    position: relative;
    width: 100%
  }

  .layout .content {
    width: 100%;
    padding: 1rem;
    padding-top: 2rem
  }

  .layout .content p {
    width: auto;
    margin: 0 0 1rem 0
  }

  hr.sectioning {
    display: block
  }
}

hr.sectioning {
  width: calc(100% - 2rem);
  margin: 0 1rem;
  border: 0;
  border-bottom: 1px solid #ddd
}

.content hr.sectioning {
  width: 100%;
  margin: 1.5rem 0
}

.back {
  margin-top: 2rem
}

.container.narrow {
  padding-bottom: 2rem
}

.profile-wrap {
  font-family: var(--title-font)
}

@media screen and (min-width: 960px) {
  .profile-wrap {
    padding: 2rem 0 2rem 0
  }

  .profile-wrap .large-image {
    display: block;
    margin-bottom: 1rem;
    width: 100%
  }

  .profile-wrap .small-image {
    display: none
  }

  .profile-wrap .large-image img {
    width: 100%
  }
}

@media screen and (max-width: 960px) {
  .profile-wrap {
    position: relative;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 280px
  }

  .profile-wrap .large-image {
    display: none
  }

  .profile-wrap .small-image {
    display: block;
    width: 100%;
    min-height: 280px;
    background-size: auto 100%
  }

  .profile-wrap h1,
  .profile-wrap p {
    padding: 0 1rem
  }

  .profile-wrap h1,
  .profile-wrap p,
  .profile-wrap a {
    color: #fff
  }

  .profile-wrap .profile-info {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 0 1rem 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .7), 0 1px 3px rgba(0, 0, 0, .5)
  }
}

@media screen and (max-width: 720px)and (min-width: 576px) {
  .profile-wrap {
    position: relative;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 300px
  }

  .profile-wrap .large-image {
    display: none
  }

  .profile-wrap .small-image {
    display: block;
    width: 100%;
    min-height: 300px;
    background-size: auto 100%
  }

  .profile-wrap h1,
  .profile-wrap p {
    padding: 0 1rem
  }

  .profile-wrap h1,
  .profile-wrap p,
  .profile-wrap a {
    color: #fff
  }

  .profile-wrap .profile-info {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 0 1rem 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .7), 0 1px 3px rgba(0, 0, 0, .5)
  }
}

@media screen and (max-width: 576px) {
  .profile-wrap {
    position: relative;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 240px
  }

  .profile-wrap .large-image {
    display: none
  }

  .profile-wrap .small-image {
    display: block;
    width: 100%;
    min-height: 240px;
    background-size: auto 100%
  }

  .profile-wrap h1,
  .profile-wrap p {
    padding: 0 1rem
  }

  .profile-wrap h1,
  .profile-wrap p,
  .profile-wrap a {
    color: #fff
  }

  .profile-wrap .profile-info {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 0 1rem 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
    text-shadow: 0 1px 0 rgba(0, 0, 0, .7), 0 1px 3px rgba(0, 0, 0, .5)
  }
}

@media screen and (max-width: 360px) {
  .profile-wrap {
    position: relative;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 160px
  }

  .profile-wrap .large-image {
    display: none
  }

  .profile-wrap .small-image {
    display: block;
    width: 100%;
    min-height: 160px;
    background-size: auto 100%
  }

  .profile-wrap .profile-info h1 {
    font-size: 1.6rem !important
  }

  .profile-wrap .profile-info p {
    font-size: .8rem !important
  }
}

.profile-wrap h1,
.profile-mini h1 {
  font-size: 2rem;
  font-weight: 300;
  margin: 0 0 .3rem 0;
  line-height: 100%
}

.profile-wrap p {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 .2rem 0;
  line-height: 100%
}

.profile-mini p {
  font-size: 1rem;
  font-weight: 400;
  margin: .5rem 0 .5rem 0;
  line-height: 100%
}

.profile-wrap p.links {
  margin-top: 1rem;
  font-family: var(--sans-font)
}

.profile-mini p.links {
  margin-top: .5rem;
  font-family: var(--sans-font)
}

.profile-mini .afill span {
  display: block;
  margin-top: .25rem
}

span.profile-link::after {
  content: " • "
}

span.profile-link:last-of-type::after {
  content: ""
}

.profile-mini {
  font-family: var(--title-font);
  padding-top: 1rem;
  padding-bottom: 2rem
}

.layout .news {
  font-size: 16px
}

.layout .news p {
  font-family: var(--sans-font);
  font-size: 1em;
  margin: 0;
  line-height: 140%
}

.layout .news h3 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1em
}

@media screen and (min-width: 960px) {
  .layout .news {
    padding: 0 0 2rem 0
  }

  .layout .news article.news-item {
    border: 1px solid #ddd;
    padding: 1rem;
    margin-bottom: 1rem
  }
}

@media screen and (max-width: 960px) {
  .layout .news {
    padding: 1rem 0 0 0;
    margin-bottom: 0
  }

  .layout .news h2 {
    padding: 0 1rem;
    margin: 0
  }

  .layout .news article.news-item {
    width: 100%;
    padding: 1rem
  }

  .layout .news article.news-item:nth-of-type(even) {
    background-color: rgba(0, 0, 0, .035)
  }

  .layout .news h3 {
    font-size: .9rem;
    margin-bottom: .25rem
  }

  .layout .news p {
    font-size: .9rem
  }
}

.layout .news article:last-of-type {
  margin-bottom: 0
}

.pubs-selected {
  margin-top: 2rem
}

.pub-item {
  margin-bottom: 1.25rem;
  font-family: var(--serif-font)
}

.pub-item span {
  display: block;
  margin-bottom: .3rem;
  line-height: 115%
}

.pub-item .title,
.pub-item .title a {
  font-family: var(--sans-font);
  font-style: normal;
  font-weight: 500
}

.pub-item .venue {
  font-family: var(--sans-font);
  font-size: .9rem;
  margin-bottom: .3rem
}

.pub-item .authors {
  margin-bottom: .25rem;
  font-size: .95rem
}

.pub-item .authors strong {
  font-weight: 600
}

.pub-item .pub_note {
  font-family: var(--sans-font);
  font-size: .9rem
}

.pub-item .links {
  font-size: .85rem
}

.pub-item .links a.other_link::after {
  content: ' ⋅ '
}

.pub-item .links a.other_link:last-of-type:after {
  content: ''
}

.trophy-wrap {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: .25rem;
  border-radius: .5rem;
  transform: translateY(0.125rem)
}

.trophy {
  display: inline-block;
  width: .9rem;
  height: .9rem;
  fill: var(--key-red);
  vertical-align: top
}