:root {
  --background: #ffffff;
  --text: #111310;
  --muted: #656a65;
  --accent: #244c38;
  --accent-soft: #95a99d;
  --rule: #c9cdc9;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body-copy-size: clamp(1.08rem, 1.22vw, 1.2rem);
  --compact-copy-size: clamp(0.98rem, 1.05vw, 1.05rem);
  --page-gutter: clamp(22px, 4.1vw, 68px);
  --content-width: 1536px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  color: #fff;
  background: var(--accent);
  font-size: 0.78rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(100%, var(--content-width));
  min-height: 100svh;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.site-header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  display: none;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
  text-decoration: none;
}

.site-header nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 46px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-block;
  padding-block: 22px 19px;
  font-size: 0.75rem;
  font-weight: 560;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-list a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.profile {
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: clamp(58px, 8.5vw, 138px);
  min-height: calc(100svh - 137px);
  padding-block: clamp(54px, 7.2vh, 96px);
}

.data-portrait {
  align-self: stretch;
  display: flex;
  align-items: center;
  min-height: 620px;
}

.profile-photo {
  display: block;
  width: min(100%, 480px);
  height: auto;
}

.field-diagram {
  display: block;
  width: min(100%, 620px);
  height: auto;
  overflow: visible;
  color: var(--accent);
}

.field-diagram .grid-dots,
.field-diagram .pitch,
.field-diagram .routes,
.field-diagram .markers {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.field-diagram .grid-dots {
  fill: currentColor;
  stroke: none;
  opacity: 0.65;
}

.field-diagram .routes {
  stroke-dasharray: 5 7;
  stroke-width: 1.15;
}

.field-diagram .routes .filled,
.field-diagram .pitch .filled {
  fill: currentColor;
  stroke: currentColor;
}

.field-diagram .markers {
  stroke-width: 1.45;
}

.field-diagram .mini-chart {
  fill: var(--accent);
  opacity: 0.88;
}

.field-diagram .mini-chart line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
}

.field-diagram .mini-chart rect:nth-of-type(3n) {
  fill: var(--accent-soft);
  opacity: 0.7;
}

.field-diagram .data-table {
  fill: var(--accent);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.profile-copy {
  max-width: 660px;
}

.profile-heading {
  margin-bottom: clamp(38px, 4.6vh, 58px);
}

h1 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.disciplines {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.55vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.bio {
  color: #1c201c;
  font-size: var(--body-copy-size);
  line-height: 1.7;
}

.bio p {
  margin: 0;
}

.bio p + p {
  margin-top: 0.9em;
}

.bio a,
.cv-link {
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.bio a,
.cv-link {
  transition: color 160ms ease;
}

.bio a:hover,
.bio a:focus-visible,
.cv-link:hover,
.cv-link:focus-visible {
  color: var(--accent);
}

.cv-note {
  margin: clamp(34px, 4.8vh, 54px) 0 0;
  font-size: var(--body-copy-size);
}

.cv-link {
  color: var(--accent);
}

.research-page {
  display: grid;
  grid-template-columns: minmax(230px, 0.54fr) minmax(600px, 1.46fr);
  gap: clamp(64px, 9.5vw, 160px);
  min-height: calc(100svh - 137px);
  padding-block: clamp(82px, 11vh, 142px);
}

.research-intro {
  align-self: start;
  padding-top: 7px;
}

.research-name {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 3.65vw, 3.9rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.research-intro .disciplines {
  max-width: 280px;
  margin-top: 17px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.research-content {
  max-width: 920px;
}

.research-title {
  margin: 0 0 clamp(44px, 6vh, 70px);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5.2vw, 5.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.project-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: project;
}

.project-list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 22px;
  padding-block: clamp(24px, 3.3vh, 34px);
  border-top: 1px solid var(--rule);
  counter-increment: project;
}

.project-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.project-list li::before {
  padding-top: 0.2em;
  color: var(--accent);
  content: counter(project);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.project-list h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.2vw, 2.3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.17;
}

.project-entry {
  min-width: 0;
}

.project-credit {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.16vw, 1.16rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
}

.project-status {
  margin: 11px 0 0;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.105em;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-description {
  max-width: 840px;
  margin: 18px 0 3px;
  color: #242824;
  font-size: var(--body-copy-size);
  line-height: 1.72;
}

.applied-projects .project-description {
  margin-top: 14px;
}

.project-description p {
  margin: 0;
}

.project-description p + p {
  margin-top: 0.85em;
}

.conference-content {
  max-width: 980px;
}

.conference-map {
  margin: 0;
}

.map-canvas {
  position: relative;
  border: 1px solid var(--rule);
  background: #eef1f3;
  isolation: isolate;
}

.europe-map {
  display: block;
  width: 100%;
  height: auto;
}

.map-marker {
  --x: 50%;
  --y: 50%;
  position: absolute;
  z-index: 3;
  top: var(--y);
  left: var(--x);
}

.marker-zurich {
  --x: 34.3%;
  --y: 65.2%;
}

.marker-innsbruck {
  --x: 39.4%;
  --y: 66.1%;
}

.marker-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  font: inherit;
  transform: translate(-24%, -93%);
}

.marker-button:focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.marker-flag {
  display: block;
  width: 34px;
  height: 44px;
  overflow: visible;
  filter: drop-shadow(0 2px 2px rgb(17 19 16 / 0.25));
  transition: transform 160ms ease;
}

.flag-pole {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.1;
}

.flag-shape,
.flag-point {
  fill: currentColor;
}

.marker-label {
  position: absolute;
  bottom: 25px;
  padding: 4px 7px 3px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: rgb(255 255 255 / 0.94);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.marker-zurich .marker-label {
  right: 27px;
}

.marker-innsbruck .marker-label {
  left: 27px;
}

.marker-tooltip {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 52px;
  width: clamp(245px, 30vw, 330px);
  padding: 15px 17px 14px;
  border: 1px solid var(--accent);
  color: var(--text);
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 12px 34px rgb(17 19 16 / 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-45%, 7px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.marker-innsbruck .marker-tooltip {
  top: 23px;
  bottom: auto;
  transform: translate(-45%, -7px);
}

.marker-tooltip strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.03rem;
  font-weight: 400;
  line-height: 1.25;
}

.marker-tooltip ul {
  margin: 10px 0 0;
  padding-left: 17px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.marker-tooltip li + li {
  margin-top: 4px;
}

.map-marker:hover,
.map-marker:focus-within {
  z-index: 7;
}

.map-marker:hover .marker-flag,
.map-marker:focus-within .marker-flag {
  transform: translateY(-3px);
}

.map-marker:hover .marker-tooltip,
.map-marker:focus-within .marker-tooltip {
  opacity: 1;
  transform: translate(-45%, 0);
}

.conference-map figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.conference-details {
  margin-top: clamp(52px, 7vh, 84px);
}

.conference-entry {
  padding-block: clamp(28px, 4vh, 42px);
  border-top: 1px solid var(--rule);
}

.conference-entry:last-child {
  border-bottom: 1px solid var(--rule);
}

.conference-entry h2 {
  max-width: 870px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.25vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.conference-entry p {
  max-width: 840px;
  margin: 17px 0 0;
  color: #242824;
  font-size: var(--body-copy-size);
  line-height: 1.72;
}

.conference-entry p:last-child {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.12vw, 1.13rem);
}

.teaching-page {
  padding-block: clamp(50px, 7vh, 88px);
}

.teaching-content {
  max-width: 980px;
}

.teaching-content .research-title {
  margin-bottom: clamp(34px, 4.5vh, 52px);
}

.research-assistant-entry {
  margin-bottom: clamp(54px, 7vh, 82px);
  padding: clamp(24px, 3vw, 34px) 0 clamp(30px, 4vw, 44px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.assistant-appointment {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.assistant-appointment p {
  margin: 0;
}

.assistant-appointment p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.assistant-appointment p:last-child {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assistant-supervisor {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.assistant-description {
  max-width: 790px;
  margin: 30px 0 0;
  color: #242824;
  font-size: var(--body-copy-size);
  line-height: 1.72;
}

.teaching-section-title {
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
}

.teaching-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.teaching-card {
  display: flex;
  min-width: 0;
  min-height: 280px;
  padding: clamp(25px, 2.5vw, 34px);
  flex-direction: column;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.course-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px;
}

.course-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 1.9vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.course-heading time {
  padding-top: 0.35em;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.course-context {
  margin: 12px 0 0;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 620;
  letter-spacing: 0.035em;
  line-height: 1.45;
}

.course-instructor {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.course-instructor strong,
.course-instructor span {
  display: block;
}

.course-instructor strong {
  margin-bottom: 3px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
}

.course-responsibilities {
  margin: auto 0 0;
  padding: 20px 0 0 17px;
  border-top: 1px solid var(--rule);
  color: #242824;
  font-size: var(--compact-copy-size);
  line-height: 1.58;
}

.courses-content {
  max-width: 1040px;
}

.courses-content .research-title {
  margin-bottom: 17px;
}

.courses-degree {
  max-width: 780px;
  margin: 0 0 clamp(36px, 5vh, 56px);
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.5;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.course-column {
  min-width: 0;
  padding: clamp(24px, 2.25vw, 32px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.course-column h2 {
  min-height: 3.45em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.42rem, 1.7vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.course-column h2 span {
  display: block;
  margin-top: 9px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.completed-course-list {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.completed-course-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  color: #242824;
  font-size: var(--compact-copy-size);
  line-height: 1.48;
}

.completed-course-list li:last-child {
  border-bottom: 0;
}

.personal-content {
  max-width: 980px;
  padding-left: clamp(32px, 4vw, 62px);
  border-left: 1px solid var(--accent-soft);
}

.personal-content .research-title {
  margin-bottom: clamp(38px, 5vh, 58px);
}

.personal-story {
  display: grid;
  grid-template-columns: minmax(250px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(36px, 4.5vw, 64px);
}

.personal-story + .personal-story {
  margin-top: clamp(44px, 6vh, 68px);
  padding-top: clamp(44px, 6vh, 68px);
  border-top: 1px solid var(--rule);
}

.personal-story-reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.88fr);
}

.personal-photo-frame {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #eef0ee;
}

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

.personal-story:first-child .personal-photo-frame img {
  object-position: center 62%;
}

.personal-story-copy h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.personal-story-copy p {
  margin: 0;
  color: #242824;
  font-size: var(--body-copy-size);
  line-height: 1.78;
}

.contacts-content {
  max-width: 920px;
}

.contact-list {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.contact-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: baseline;
  gap: clamp(30px, 4vw, 64px);
  padding-block: clamp(26px, 3.8vh, 38px);
  border-bottom: 1px solid var(--rule);
}

.contact-row dt {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row dd {
  min-width: 0;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.35;
}

.contact-row a {
  text-decoration-color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.contact-row a:hover,
.contact-row a:focus-visible {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

@media (max-width: 1040px) {
  .profile {
    grid-template-columns: minmax(310px, 0.8fr) minmax(430px, 1.2fr);
    gap: 48px;
  }

  .data-portrait {
    min-height: 520px;
  }

  .field-diagram .data-table {
    display: none;
  }

  .research-page {
    grid-template-columns: minmax(190px, 0.45fr) minmax(480px, 1.55fr);
    gap: 50px;
  }
}

@media (max-width: 790px) {
  .site-header {
    min-height: auto;
    align-items: flex-start;
    padding-block: 18px;
  }

  .wordmark {
    display: inline-block;
    padding-top: 2px;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: end;
    gap: 2px 18px;
  }

  .nav-list a {
    padding: 3px 0 7px;
    font-size: 0.64rem;
  }

  .nav-list li:first-child {
    display: none;
  }

  .profile {
    grid-template-columns: 1fr;
    gap: 45px;
    min-height: auto;
    padding-block: 58px 48px;
  }

  .profile-copy {
    max-width: 680px;
    order: -1;
  }

  .data-portrait {
    min-height: 0;
    max-width: 570px;
  }

  .profile-heading {
    margin-bottom: 34px;
  }

  h1 {
    font-size: clamp(3.4rem, 13vw, 5.4rem);
  }

  .research-page {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
    padding-block: 58px 72px;
  }

  .research-intro {
    padding-top: 0;
  }

  .research-name {
    font-size: clamp(2.7rem, 10vw, 4rem);
  }

  .research-intro .disciplines {
    max-width: none;
    margin-top: 10px;
  }

  .research-content {
    max-width: none;
  }

  .personal-content {
    padding-left: 30px;
  }
}

@media (max-width: 680px) {
  .assistant-appointment {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .assistant-description {
    margin-top: 24px;
  }

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

  .teaching-card {
    min-height: 0;
  }

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

  .course-column h2 {
    min-height: 0;
  }

  .personal-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .personal-photo-frame {
    width: min(100%, 520px);
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding-inline: 19px;
  }

  .site-header {
    gap: 15px;
  }

  .nav-list {
    gap: 2px 14px;
  }

  .nav-list li:last-child {
    grid-column: auto;
  }

  .nav-list a {
    max-width: 176px;
    text-align: right;
  }

  .profile {
    gap: 38px;
    padding-top: 43px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.2rem);
  }

  .disciplines {
    max-width: 300px;
    font-size: 1rem;
    line-height: 1.4;
  }

  .bio {
    font-size: 1.03rem;
    line-height: 1.72;
  }

  .field-diagram {
    margin-left: -7px;
  }

  .research-page {
    gap: 43px;
    padding-top: 43px;
  }

  .research-title {
    margin-bottom: 34px;
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .personal-content {
    padding-left: 0;
    border-left: 0;
  }

  .personal-content .research-title {
    margin-bottom: 34px;
  }

  .personal-story-copy h2 {
    margin-bottom: 15px;
    font-size: 1.75rem;
  }

  .personal-story-copy p {
    font-size: 1.03rem;
    line-height: 1.72;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 9px;
    padding-block: 24px;
  }

  .contact-row dd {
    font-size: 1.25rem;
  }

  .project-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 13px;
    padding-block: 23px;
  }

  .project-list h2 {
    font-size: 1.56rem;
    line-height: 1.2;
  }

  .project-credit {
    margin-top: 8px;
    font-size: 1.05rem;
  }

  .project-status {
    margin-top: 10px;
  }

  .project-description {
    margin-top: 15px;
    font-size: 1.03rem;
    line-height: 1.68;
  }

  .marker-flag {
    transform: scale(0.9);
    transform-origin: bottom left;
  }

  .marker-zurich .marker-label {
    right: 23px;
  }

  .marker-innsbruck .marker-label {
    left: 23px;
  }

  .marker-tooltip {
    width: min(270px, 78vw);
    padding: 13px 14px 12px;
  }

  .marker-tooltip strong {
    font-size: 0.95rem;
  }

  .marker-tooltip ul {
    font-size: 0.72rem;
  }

  .conference-entry h2 {
    font-size: 1.58rem;
  }

  .conference-entry p {
    font-size: 1.03rem;
    line-height: 1.68;
  }

  .teaching-page {
    padding-top: 43px;
  }

  .teaching-content .research-title {
    margin-bottom: 32px;
  }

  .teaching-card {
    padding: 25px 23px;
  }

  .course-heading h2 {
    font-size: 1.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
