:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5e6875;
  --line: #d9e1ee;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --accent: #0057b8;
  --accent-dark: #003b79;
  --gold: #f6b221;
  --bedlab-orange: #de8f32;
  --bedlab-sky: #69d4ee;
  --rose: #f6d8e1;
  --coral: #c8553d;
  --leaf: #617b3a;
  --shadow: 0 16px 36px rgba(13, 32, 64, 0.1);
  --shadow-soft: 0 8px 22px rgba(13, 32, 64, 0.08);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(105, 212, 238, 0.16), transparent 360px),
    linear-gradient(180deg, #f8fbff 0, #ffffff 360px),
    var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
  padding: 12px clamp(20px, 4vw, 48px);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(13, 32, 64, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 50px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--accent-dark);
  font-size: 1.05rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-item {
  position: relative;
}

nav a,
.nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"],
.nav-item.child-active > .nav-link {
  color: var(--accent-dark);
  background: #edf4ff;
}

.nav-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 20;
  display: none;
  min-width: 230px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  display: grid;
  gap: 2px;
}

.nav-child {
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
}

.nav-child.depth-2 {
  padding-left: 24px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  max-width: none;
  min-height: min(660px, 74vh);
  margin: 0;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 48px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 36, 86, 0.92), rgba(0, 57, 121, 0.72) 52%, rgba(0, 57, 121, 0.3)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent),
    url("pages/lab-photos-2025-26-1.jpg") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--bedlab-orange), var(--bedlab-sky));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero h1,
.page-title h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.hero-logo {
  width: clamp(68px, 10vw, 104px);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
}

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: #3f444b;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero .lede {
  color: #ecf5ff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe1a3;
}

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

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.button.primary {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.hero .button {
  border-color: rgba(255, 255, 255, 0.74);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.hero .button.primary {
  border-color: var(--gold);
  color: #17202a;
  background: var(--gold);
}

.hero-mark {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  min-height: 420px;
}

.hero-mark img {
  width: min(320px, 70vw);
  height: auto;
}

.band,
.split-section,
.people-section,
.page-title {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 82px) clamp(20px, 4vw, 48px);
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.05), rgba(246, 178, 33, 0.08)),
    var(--soft);
}

.band.compact {
  border-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.institution-strip,
.home-news {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 4vw, 48px);
}

.institution-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 220px);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.institution-strip h2 {
  max-width: 640px;
}

.institution-strip p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.institution-strip img {
  display: block;
  width: min(220px, 36vw);
  height: auto;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.research-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: research-area;
  list-style: none;
}

.research-list li {
  position: relative;
  min-height: 108px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.research-list li::before {
  display: block;
  counter-increment: research-area;
  content: counter(research-area, decimal-leading-zero);
  margin-bottom: 12px;
  color: var(--bedlab-orange);
  font-size: 0.76rem;
  font-weight: 900;
}

.section-heading p {
  color: var(--muted);
}

.section-link {
  margin: 24px 0 0;
}

.section-link a,
.publication-links a,
.research-jump a {
  color: var(--accent-dark);
  font-weight: 800;
}

.research-title {
  border-bottom: 1px solid var(--line);
}

.page-title {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-title::before {
  content: "";
  position: absolute;
  inset: auto clamp(20px, 4vw, 48px) 0;
  height: 4px;
  max-width: 180px;
  background: linear-gradient(90deg, var(--gold), var(--bedlab-orange), var(--bedlab-sky));
}

.research-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) clamp(20px, 4vw, 48px);
}

.research-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.research-jump a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  text-decoration: none;
}

.research-writeup {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(24px, 5vw, 56px);
  border-top: 1px solid var(--line);
  padding: clamp(34px, 6vw, 64px) 0;
}

.research-heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

.research-heading p {
  color: var(--muted);
}

.research-copy {
  color: #30383b;
  font-size: 1.02rem;
}

.research-copy p {
  margin: 0 0 1.05rem;
}

.research-publications {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.content-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 48px) clamp(64px, 8vw, 96px);
}

.content-page.has-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.section-content-page {
  display: grid;
  gap: 0;
}

.content-section {
  display: grid;
  gap: clamp(20px, 4vw, 44px);
  border-top: 1px solid var(--line);
  padding: clamp(28px, 5vw, 48px) 0;
}

.content-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.content-section.has-media {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: start;
}

.content-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.content-section h2 a {
  color: var(--accent-dark);
}

.content-title {
  border-bottom: 1px solid var(--line);
}

.content-copy {
  max-width: 860px;
  color: #30383b;
  font-size: 1.02rem;
}

.content-copy p {
  margin: 0 0 1.05rem;
}

.content-media {
  display: grid;
  gap: 12px;
}

.content-media figure {
  margin: 0;
}

.content-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  border-radius: 6px;
  object-fit: contain;
  background: #eef4f0;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.news-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaf1fb;
}

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

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

.news-card-copy {
  padding: 16px;
}

.news-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.news-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.news-card h3 a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.news-card-copy p:not(.news-date) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.lab-photos-page {
  max-width: min(1420px, calc(100vw - 32px));
}

.lab-photos-page .content-section.has-media {
  grid-template-columns: minmax(420px, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 4vw, 60px);
}

.lab-photos-page .content-media img {
  max-height: 760px;
}

.lab-photos-page .content-copy {
  max-width: 620px;
}

@media (min-width: 1500px) {
  .lab-photos-page {
    max-width: min(1600px, calc(100vw - 48px));
  }

  .lab-photos-page .content-section.has-media {
    grid-template-columns: minmax(560px, 1fr) minmax(300px, 0.48fr);
    gap: clamp(52px, 5vw, 84px);
  }

  .lab-photos-page .content-media img {
    max-height: 860px;
  }
}

.news-page {
  max-width: min(1420px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 48px) clamp(72px, 8vw, 104px);
}

.news-list {
  display: grid;
  gap: 22px;
}

.news-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.news-story.no-media {
  grid-template-columns: 1fr;
}

.news-date {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.news-story h2 {
  max-width: 780px;
  margin-bottom: 16px;
}

.news-story-copy p:not(.news-date) {
  max-width: 760px;
  margin: 0 0 0.9rem;
  color: #30383b;
}

.award-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  max-width: 760px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}

.award-list li {
  display: block;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 11px 13px 12px;
  background: #f7f9fd;
}

.award-list li.has-award-image {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.award-image {
  display: block;
  width: 72px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background: #eef4f0;
}

.award-text {
  min-width: 0;
}

.award-label {
  display: block;
  margin-bottom: 3px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.award-list strong,
.award-list small {
  display: block;
}

.award-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

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

.news-carousel {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.news-carousel-stage {
  position: relative;
  min-width: 0;
}

.news-carousel-track {
  min-width: 0;
}

.news-carousel figure {
  margin: 0;
}

.news-carousel figure[hidden] {
  display: none;
}

.news-carousel-button {
  position: absolute;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 59, 121, 0.46);
  box-shadow: 0 4px 12px rgba(13, 32, 64, 0.2);
  font-size: 1.7rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 140ms ease, background 140ms ease;
  cursor: pointer;
}

.news-carousel:hover .news-carousel-button,
.news-carousel:focus-within .news-carousel-button {
  opacity: 1;
}

.news-carousel-button:hover,
.news-carousel-button:focus-visible {
  background: rgba(0, 59, 121, 0.8);
}

.news-carousel-button.previous {
  left: 10px;
}

.news-carousel-button.next {
  right: 10px;
}

.news-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
}

.news-carousel-controls p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.news-carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #b8c4d8;
  cursor: pointer;
}

.news-carousel-dots button.is-active {
  background: var(--accent-dark);
}

@media (pointer: coarse) {
  .news-carousel-button {
    opacity: 0.72;
  }
}

.news-media figure {
  margin: 0;
}

.news-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  border-radius: 6px;
  object-fit: contain;
  background: #eaf1fb;
}

@media (min-width: 1500px) {
  .news-page {
    max-width: min(1580px, calc(100vw - 48px));
  }

  .news-story {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.82fr);
    gap: clamp(44px, 5vw, 76px);
  }

  .news-media img {
    max-height: 700px;
  }
}

.news-load-control {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 26px 0 8px;
  border-top: 1px solid var(--line);
}

.news-load-control p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.news-load-control button[hidden] {
  display: none;
}

.news-sentinel {
  width: 100%;
  height: 1px;
}

.publication-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding-left: 18px;
}

.papers-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 48px) clamp(72px, 8vw, 104px);
}

.paper-section {
  border-top: 1px solid var(--line);
  padding: clamp(28px, 5vw, 48px) 0;
}

.paper-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.paper-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
}

.paper-list li {
  padding-left: 6px;
}

.paper-list p {
  max-width: 900px;
  margin: 0;
  color: #30383b;
}

.paper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.paper-actions a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 9px;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.split-section p,
.page-title p,
.measure {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  min-height: 132px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  color: var(--accent-dark);
  font-size: 2.2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.page-title {
  padding-bottom: 32px;
}

.people-section {
  padding-top: 24px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.member-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.alumni-list-modern {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
}

.member-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.member-photo {
  width: 92px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #eaf1fb;
}

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

.initials {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--accent-dark);
  background: linear-gradient(135deg, rgba(246, 178, 33, 0.2), rgba(105, 212, 238, 0.22));
  font-size: 1.8rem;
  font-weight: 800;
}

.member-copy h3,
.alumni-row h2 {
  margin: 0;
  color: var(--accent-dark);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.member-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.member-copy h3 a:hover {
  text-decoration: underline;
}

.member-copy p,
.alumni-row p {
  margin: 6px 0 0;
  color: var(--muted);
}

.member-bio {
  max-width: 58rem;
  font-size: 0.94rem;
}

.member-bio strong {
  color: var(--accent-dark);
}

.alumni-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.alumni-row {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(20px, 4vw, 48px) 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 4px;
}

.site-footer strong {
  color: var(--accent-dark);
}

.site-footer img {
  width: 92px;
  height: auto;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-mark {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 32px;
  }

  .research-list,
  .people-grid,
  .news-card-grid,
  .member-list,
  .alumni-list-modern,
  .stat-grid,
  .alumni-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .institution-strip {
    grid-template-columns: 1fr;
  }

  .institution-strip img {
    justify-self: start;
  }

  .member-list {
    grid-template-columns: 1fr;
  }

  .research-writeup {
    grid-template-columns: 1fr;
  }

  .news-story {
    grid-template-columns: 1fr;
  }

  .content-page.has-media {
    grid-template-columns: 1fr;
  }

  .content-section.has-media {
    grid-template-columns: 1fr;
  }

  .award-list {
    grid-template-columns: 1fr;
  }

  .research-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-item {
    width: 100%;
  }

  .nav-menu {
    position: static;
    display: grid;
    width: 100%;
    margin: 2px 0 8px;
    box-shadow: none;
  }

  nav a {
    padding: 7px 9px;
  }

  .research-list,
  .people-grid,
  .news-card-grid,
  .member-list,
  .alumni-list-modern,
  .stat-grid,
  .alumni-list {
    grid-template-columns: 1fr;
  }

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

  .hero h1,
  .page-title h1 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .member-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .member-photo {
    width: 72px;
  }
}
