.title {
  font-family: "Google Sans";
  font-weight: 700;
}

.portrait {
  overflow: hidden;
}

.footer .footer-links a {
  font-size: 25px;
  color: #000;
}

.publication-block .publication-title {
  width: fit-content;
  margin: 0 !important;
  font-weight: 600;
  font-size: 110% !important;
}
.publication-block .publication-title a {
  color: #000;
}
.publication-block .publication-venue {
  color: #555;
  width: fit-content;
  margin-top: 0;
}
.publication-block .publication-venue-emph {
  font-style: normal;
  font-size: 80%;
  font-weight: 500;
  color: firebrick;
  padding-left: 0.25em;
}
.publication-block .publication-awards {
  color: firebrick;
  width: fit-content;
  font-weight: bolder;
}
.publication-block .publication-authors .author-me {
  color: #000;
  font-weight: 600;
}
.publication-block .publication-authors a {
  color: #000 !important;
}
.publication-block .publication-authors a:hover {
  text-decoration: underline;
}
.publication-block .publication-image {
  border-radius: 2%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 0;
}
.publication-block .publication-image img {
  width: 100%;
}
.publication-block .publication-mousecell {
  position: relative;
  font-size: 0;
}
.publication-block .publication-mousecell {
  width: 100%;
  height: 100%;
  display: inline-block;
  overflow: hidden;
}
.publication-block .publication-mousecell video {
  display: none;
}
.publication-block .publication-description {
  color: #333;
  margin: 0.5em 0;
}
.publication-block .publication-links {
  margin: 0 !important;
  margin-top: 0.5em !important;
}

/*# sourceMappingURL=index.css.map */
body, .content, .subtitle, .publication-authors, .publication-venue, .publication-description {
  font-family: "Noto Sans", sans-serif;
}

.hero-body .content p {
  margin-bottom: 1em;
}

.portrait img {
  border-radius: 6px;
  width: 100%;
}

.footer .footer-links a {
  margin: 0 0.4em;
}

.hr {
  margin: 0;
}

.affiliation-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; /* spread across the full row: first logo flush-left, last flush-right */
  column-gap: 1.25rem; /* minimum gap; extra space is distributed evenly between logos */
  row-gap: 0.75rem;
  margin: 1.5rem 0 0.5rem 0;
  padding: 0.5rem 0;
}

.affiliation-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 0;
}

/* Per-gap tweaks: logos are evenly spread by space-between; a margin nudges one
   specific gap wider/tighter than the rest (only affects the gap on that side).
   Children order: 1 KU, 2 ETH, 3 Meta, 4 Google, 5 EPFL, 6 Oxford. */
.affiliation-logos a:nth-child(4) { /* Google: tighten the Meta-Google gap */
  margin-left: -0.25rem;
}
.affiliation-logos a:nth-child(6) { /* Oxford: widen the EPFL-Oxford gap */
  margin-left: 0.25rem;
}

.affiliation-logos img {
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* Per-logo size tweaks (override the default max-height above) */
.affiliation-logos img[alt="ETH Zurich"] { /* enlarge ETH */
  max-height: 31px;
}
.affiliation-logos img[alt="EPFL"] { /* shrink EPFL */
  max-height: 30px;
}
.affiliation-logos img[alt="Google"] {
  max-height: 42px;
}

@media (max-width: 768px) {
  .affiliation-logos {
    justify-content: center; /* on narrow screens logos wrap; keep them centered instead of spread */
    column-gap: 1rem;
  }
}

.experience-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.experience-table td {
  vertical-align: middle;
}

.experience-table td.experience-text {
  width: 86%;
  padding-right: 1rem;
}

.experience-table td.experience-logo {
  width: 14%;
  text-align: right;
}

.experience-table td.experience-logo img {
  display: block;
  margin-left: auto;
  margin-right: 0;
  height: 40px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

/* Nudge individual experience logos horizontally (positive = right, negative = left) */
.experience-table td.experience-logo img[alt="Meta"] {
  transform: translateX(1rem);
}
