:root {
  --ink: #121212;
  --muted: #585c62;
  --line: #d8d8d8;
  --paper: #f7f7f4;
  --white: #ffffff;
  --rice-blue: #00205b;
  --rice-blue-soft: #0e3a72;
  --active-blue: #0057ff;
  --copper: #b44814;
  --sage: #7b8c6d;
  --mist: #ededeb;
  --shadow: 0 1px 0 rgba(18, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--rice-blue);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: top 150ms ease;
}

.skip-link:focus {
  top: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  overflow: visible;
  background: rgba(247, 247, 244, 0.42);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  backdrop-filter: blur(22px) saturate(135%);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  height: 30px;
  background: linear-gradient(180deg, rgba(247, 247, 244, 0.34), rgba(247, 247, 244, 0));
  content: "";
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(247, 247, 244, 0.58);
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--rice-blue);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  max-width: 460px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  transition: color 160ms ease;
}

.site-nav:hover a:not(.active) {
  color: var(--muted);
}

.site-nav:hover a:not(.active):hover {
  color: var(--ink);
}

.site-nav a.active {
  color: var(--active-blue);
  font-weight: 500;
}

.site-nav a.active:hover {
  color: var(--active-blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 1280px);
  min-height: calc(100vh - 83px);
  margin: 0 auto;
  padding: 84px 32px 48px;
  background: var(--paper);
}

.hero-background {
  overflow: hidden;
  background-image: url("assets/uq-hero-background-clean.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-background::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(247, 247, 244, 0.92) 10%, rgba(247, 247, 244, 0) 28%, rgba(247, 247, 244, 0) 78%, rgba(247, 247, 244, 0.9) 100%),
    linear-gradient(180deg, var(--paper) 0%, rgba(247, 247, 244, 0) 16%, rgba(247, 247, 244, 0) 82%, var(--paper) 100%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 650;
  line-height: 1.02;
}

h1 {
  margin-bottom: 26px;
  max-width: 980px;
  font-size: 64px;
}

h2 {
  margin-bottom: 20px;
  font-size: 54px;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 660px;
  color: #141413;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.28;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--rice-blue);
  font-size: 14px;
  font-weight: 400;
}

.button.primary {
  background: var(--rice-blue);
  color: var(--white);
}

.button.secondary {
  color: var(--rice-blue);
}

.contact-card span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.section,
.bio-section,
.contact-section {
  padding: 64px 32px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.bio-section,
.section,
.contact-section {
  max-width: 1280px;
  margin: 0 auto;
}

.bio-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 38px;
  align-items: stretch;
}

.pi-portrait {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f2f2ef;
  border: 1px solid #cfcfcf;
}

.pi-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.bio-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 4px;
}

.bio-details p {
  max-width: 820px;
  color: #141413;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.34;
}

.bio-details p a {
  color: var(--rice-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 26px;
}

.profile-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--rice-blue);
  font-size: 14px;
  font-weight: 800;
}

.link-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  flex: 0 0 20px;
  background: var(--rice-blue);
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.linkedin-icon,
.orcid-icon {
  border-radius: 3px;
}

.scholar-icon {
  border-radius: 50%;
  font-size: 8px;
}

.image-icon {
  overflow: hidden;
  background: transparent;
  color: inherit;
}

.image-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svg-icon {
  background: transparent;
  color: currentColor;
}

.svg-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.orcid-icon {
  background: #a6ce39;
}

.orcid-text-icon {
  background: transparent;
  color: #a6ce39;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.bio-subtitle {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.credential-grid span {
  min-height: 104px;
  padding: 18px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
}

.credential-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rice-blue);
  font-size: 18px;
}

.section-head {
  max-width: 100%;
  margin-bottom: 26px;
}

.wide-head h2 {
  max-width: 100%;
}

.bio-section .wide-head h2 {
  max-width: 100%;
  font-size: 48px;
}

.bio-section .section-head {
  max-width: 1360px;
}

.section-head p:not(.section-kicker) {
  max-width: 100%;
  color: var(--muted);
  font-size: 18px;
}

#research .section-head,
#research .section-head p:not(.section-kicker) {
  max-width: 100%;
}

.research-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.research-head h2 {
  margin-bottom: 0;
}

.section-view-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  flex: 0 0 auto;
  color: var(--rice-blue);
  font-size: 15px;
  font-weight: 800;
}

.section-view-link::after {
  content: "->";
  margin-left: 8px;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(0, 3.1fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: start;
}

.research-side-stack {
  display: grid;
  gap: 30px;
}

.research-feature-panel {
  position: sticky;
  top: 112px;
}

.research-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.research-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 16px;
}

.research-card-heading {
  min-height: auto;
  margin-bottom: 12px;
}

.research-card-heading h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.14;
}

.research-card-image {
  display: grid;
  aspect-ratio: 16 / 10;
  padding: 14px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.research-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-research .research-card-image {
  aspect-ratio: 16 / 9;
  padding: 22px;
}

.featured-research .research-card-heading {
  min-height: auto;
}

.featured-research .research-card-heading h3 {
  max-width: 780px;
  font-size: 46px;
  line-height: 1.05;
}

.research-card.featured-research small {
  max-width: 780px;
  font-size: 16px;
}

.research-card small {
  margin-top: auto;
  color: var(--copper);
  font-size: 14px;
  font-weight: 750;
}

#team {
  border-top: 1px solid var(--line);
}

.team-head {
  margin-bottom: 14px;
}

.team-roster {
  display: grid;
  gap: 12px;
}

.team-group {
  border-top: 1px solid var(--line);
}

.team-group:last-child {
  border-bottom: 1px solid var(--line);
}

.team-group-toggle {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}

.team-group-toggle::-webkit-details-marker {
  display: none;
}

.team-group-toggle span:first-child {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-group-toggle span:last-child {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.team-group-toggle span:last-child::before,
.team-group-toggle span:last-child::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--rice-blue);
  content: "";
  transform: translate(-50%, -50%);
}

.team-group-toggle span:last-child::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.team-group[open] .team-group-toggle span:last-child::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

#publications,
#teaching,
#news,
.contact-section {
  border-top: 1px solid var(--line);
}

.team-member-card {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.team-member-photo {
  min-width: 0;
  margin: 0;
  border-right: 1px solid var(--line);
  background: #f1f1ee;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
}

.team-member-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 16px;
}

.team-member-role {
  margin: 0;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-member-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
}

.team-member-bio {
  max-width: 860px;
  margin: 0;
  color: #141413;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 16px;
  line-height: 1.28;
}

.team-topic-row,
.team-member-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-topic-row {
  align-items: center;
}

.team-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-topic-label {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
}

.team-topic-list span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--rice-blue);
  font-size: 12px;
  font-weight: 750;
}

.team-member-links {
  margin: 0;
}

.team-empty-state {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.publication-section {
  padding-top: 56px;
}

.publication-section .section-head {
  display: grid;
  gap: 14px;
}

.publication-tabs {
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.publication-tabs::-webkit-scrollbar {
  display: none;
}

.publication-tab {
  min-height: 34px;
  padding: 0 0 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.publication-tab.is-active {
  color: var(--rice-blue);
}

.publication-tab-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rice-blue);
  transform: translateX(0);
  transition: transform 220ms ease, width 220ms ease;
}

.publication-board {
  display: grid;
  max-height: 480px;
  overflow-y: auto;
  background: var(--paper);
  padding-right: 12px;
  border-top: 1px solid var(--line);
  scrollbar-gutter: stable;
  scrollbar-color: #bdbdb8 var(--paper);
}

.publication-board::-webkit-scrollbar {
  width: 10px;
}

.publication-board::-webkit-scrollbar-track {
  background: var(--paper);
}

.publication-board::-webkit-scrollbar-thumb {
  border: 3px solid var(--paper);
  border-radius: 999px;
  background: #bdbdb8;
}

.publication-card {
  display: grid;
  grid-template-columns: 78px 112px minmax(0, 1fr);
  gap: 22px;
  padding: 16px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.publication-card.is-targeted {
  background: rgba(0, 32, 91, 0.06);
}

.publication-index {
  color: var(--copper);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.publication-type {
  width: fit-content;
  padding: 3px 7px;
  background: #f2f2ef;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-body {
  display: grid;
  gap: 8px;
}

.publication-body h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.publication-body h3 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.publication-award {
  color: var(--ink);
  font-weight: 900;
}

.publication-empty {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.authors,
.publisher {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.publisher {
  color: var(--rice-blue);
  font-weight: 800;
}

.publication-meta {
  color: var(--ink);
  font-weight: 400;
}

.teaching-section {
  padding-top: 56px;
}

.teaching-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 48px;
  align-items: end;
}

.teaching-copy {
  max-width: 640px;
}

.teaching-copy h2 {
  margin-bottom: 0;
  font-size: 48px;
}

.teaching-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin: 28px 0 22px;
}

.teaching-meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--rice-blue);
  font-size: 13px;
  font-weight: 800;
}

.teaching-description {
  max-width: 620px;
  color: #141413;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.34;
}

.teaching-link {
  margin-top: 12px;
}

.teaching-feature,
.teaching-gallery figure {
  margin: 0;
}

.teaching-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.teaching-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f2f2ef;
  border: 1px solid var(--line);
  display: block;
}

.teaching-feature figcaption,
.teaching-gallery figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.teaching-carousel {
  position: relative;
  margin-top: 34px;
  padding: 0;
  overflow: visible;
}

.teaching-gallery {
  display: flex;
  gap: 16px;
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.teaching-gallery::-webkit-scrollbar {
  display: none;
}

.teaching-gallery figure {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
}

.teaching-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  display: block;
}

.teaching-carousel-button {
  position: absolute;
  top: calc(50% - 34px);
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--rice-blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.teaching-carousel-button:hover {
  color: var(--active-blue);
}

.teaching-carousel-button.previous {
  left: -46px;
}

.teaching-carousel-button.next {
  right: -46px;
}

body.site-lightbox-open {
  overflow: hidden;
}

.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 32px;
  pointer-events: none;
  visibility: hidden;
}

.site-lightbox[aria-hidden="false"] {
  pointer-events: auto;
  visibility: visible;
}

.site-lightbox-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 18, 18, 0.72);
  opacity: 0;
  transition: opacity 160ms ease;
}

.site-lightbox[aria-hidden="false"] .site-lightbox-scrim {
  opacity: 1;
}

.site-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 92vw);
  max-height: 88vh;
  margin: 0;
  padding: 18px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform: scale(0.98);
  transition: transform 160ms ease;
}

.site-lightbox[aria-hidden="false"] .site-lightbox-panel {
  transform: scale(1);
}

.site-lightbox-panel img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: var(--white);
}

.site-lightbox-panel figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.site-lightbox-close {
  justify-self: end;
  min-height: 34px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--rice-blue);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.news-thumb {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: var(--white);
  color: inherit;
  cursor: zoom-in;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.news-thumb:hover img {
  transform: scale(1.025);
}


.news-archive {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.news-year-group {
  border-bottom: 1px solid var(--line);
}

.news-year-group summary {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  padding: 18px 0;
  color: var(--rice-blue);
  cursor: pointer;
  list-style: none;
}

.news-year-group summary::-webkit-details-marker {
  display: none;
}

.news-year-group summary > span:first-child {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.news-year-toggle {
  justify-self: end;
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.news-year-group[open] .news-year-toggle {
  transform: rotate(225deg) translate(-2px, -2px);
}

.news-year-rows {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
}

.news-year-rows > * {
  grid-column: 2;
}

.news-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.news-row:first-child {
  border-top: 0;
}

.news-row time {
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

.news-row-body {
  display: grid;
  gap: 12px;
}

.news-row-body p {
  margin: 0;
  color: #34383e;
}

.news-row-body a,
.news-details a {
  color: var(--rice-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.news-details {
  display: grid;
  gap: 8px;
}

.news-details > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.news-details ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.news-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-color: #bdbdb8 var(--paper);
}

.news-thumb {
  flex: 0 0 300px;
  border: 1px solid var(--line);
}

.news-thumb img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.news-thumb span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 8px 7px;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.76), rgba(18, 18, 18, 0));
  color: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

@media (max-width: 900px) {

  .news-year-group summary,
  .news-year-rows {
    grid-template-columns: 1fr;
  }

  .news-year-rows > * {
    grid-column: 1;
  }
}

@media (max-width: 680px) {

  .news-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-thumb {
    flex-basis: 240px;
  }
}

.contact-section {
  margin-bottom: 64px;
  padding-top: 48px;
  background: #e8ebe8;
}

.contact-section > div:first-child {
  max-width: 660px;
}

.contact-card {
  padding: 30px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(20, 24, 30, 0.12);
}

.contact-card strong {
  display: block;
  margin: 12px 0;
  color: var(--rice-blue);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 34px;
  line-height: 1.1;
}

.contact-title {
  margin-bottom: 48px;
  font-size: 48px;
}

.contact-description {
  color: #141413;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.34;
}
.contact-copy > p a,
.contact-guidance-body a {
  color: var(--rice-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-profile-link {
  display: inline-flex;
  gap: 7px;
  margin-top: 26px;
  color: var(--rice-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-card p {
  color: var(--muted);
}

.contact-guidance {
  margin-top: 22px;
}

.contact-guidance summary {
  width: fit-content;
  cursor: pointer;
  list-style: none;
}

.contact-guidance summary::-webkit-details-marker {
  display: none;
}

.contact-guidance[open] summary {
  margin-bottom: 22px;
}

.contact-guidance-body {
  display: grid;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-guidance-body h3,
.contact-guidance-body p {
  margin: 0;
}

.contact-guidance-body h3 {
  color: var(--rice-blue);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 25px;
  line-height: 1.15;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 32px;
  background: #121212;
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  font-weight: 750;
}

.site-footer div,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
}

.footer-icon-link .link-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--rice-blue);
}

.footer-icon-link .image-icon,
.footer-icon-link .svg-icon {
  background: transparent;
}

.footer-icon-link .svg-icon {
  color: rgba(255, 255, 255, 0.74);
}

.footer-icon-link:hover .svg-icon {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero,
  .contact-section,
  .bio-layout,
  .teaching-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100vh - 75px);
    background-position: center center;
  }

  .pi-portrait {
    min-height: 420px;
  }
  .research-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-feature-panel {
    position: static;
    grid-column: span 2;
  }

  .research-side-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: span 2;
  }

  .teaching-gallery figure {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand strong {
    max-width: calc(100vw - 140px);
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 75px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero,
  .section,
  .bio-section,
  
.contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    padding-top: 58px;
    background-position: 58% center;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .bio-details p,
  .section-head p:not(.section-kicker) {
    font-size: 16px;
  }
  .research-layout,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .research-side-stack {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .pi-portrait {
    min-height: 360px;
  }

  .research-card {
    min-height: 300px;
  }

  .research-feature-panel {
    grid-column: auto;
  }

  .teaching-gallery figure {
    flex-basis: 100%;
  }

  .teaching-carousel {
    padding-bottom: 44px;
  }

  .teaching-carousel-button {
    top: auto;
    bottom: 0;
  }

  .teaching-carousel-button.previous {
    left: calc(50% - 42px);
  }

  .teaching-carousel-button.next {
    right: calc(50% - 42px);
  }

  .featured-research .research-card-heading h3 {
    font-size: 34px;
  }

  .publication-card,
  .team-member-card {
    grid-template-columns: 1fr;
  }

  .team-member-photo {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .team-member-photo img {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .team-member-copy {
    padding: 18px;
  }

  .team-member-copy h3 {
    font-size: 24px;
  }

  .team-member-bio {
    font-size: 16px;
  }

  .publication-card {
    gap: 10px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 18px;
  }
}


.hero-text .contact-profile-link {
  display: inline-flex;
  margin-top: 0;
  margin-left: 8px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  vertical-align: baseline;
}
