@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  margin: 0;
  font-family: var(--vu-font-body);
  font-size: var(--vu-fs-body);
  color: var(--vu-text);
  background: var(--vu-white);
  line-height: var(--vu-lh-normal);
}

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

a {
  color: var(--vu-navy);
}
a:hover {
  color: var(--vu-red);
}

.visually-hidden-focusable {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--vu-white);
  color: var(--vu-navy);
  padding: var(--vu-space-2) var(--vu-space-3);
}
.visually-hidden-focusable:focus {
  left: var(--vu-space-2);
  top: var(--vu-space-2);
}

.page-wrap {
  max-width: 100%;
  overflow-x: hidden;
}

.section {
  padding-block: var(--vu-space-8);
  background: var(--vu-white);
}
.section--tint {
  background: var(--vu-bg-tint);
}

.section__title {
  position: relative;
  padding-top: 1rem;
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-bold);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--vu-text-strong);
  margin: 0 0 var(--vu-space-5) 0;
}
.section__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--vu-accent-bar-w);
  height: var(--vu-accent-bar-h);
  background: var(--vu-red);
}
.section__title-accent {
  color: var(--vu-red);
}
@media (min-width: 768px) {
  .section__title {
    font-size: var(--vu-fs-h2);
  }
}

.btn-vu {
  display: inline-block;
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: var(--vu-fs-small);
  padding: 0.75rem 1.75rem;
  border-radius: var(--vu-radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--vu-transition);
  min-height: 44px;
  line-height: 1.5;
}
.btn-vu--outline {
  border: 2px solid var(--vu-navy);
  color: var(--vu-navy);
  background: transparent;
}
.btn-vu--outline:hover {
  background: var(--vu-navy);
  color: var(--vu-white);
}
.btn-vu--solid {
  border: none;
  background: var(--vu-red);
  color: var(--vu-white);
}
.btn-vu--solid:hover {
  background: var(--vu-navy);
  color: var(--vu-white);
}
.btn-vu--navy {
  border: none;
  background: var(--vu-navy);
  color: var(--vu-white);
}
.btn-vu--navy:hover {
  background: var(--vu-navy-dark);
  color: var(--vu-white);
}

.img-placeholder {
  background-image: repeating-linear-gradient(45deg, var(--vu-bg-tint), var(--vu-bg-tint) 20px, var(--vu-bg-gray) 20px, var(--vu-bg-gray) 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--vu-space-2);
}
.img-placeholder__label {
  font-family: monospace;
  font-size: var(--vu-fs-caption);
  color: var(--vu-text-muted);
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-block: var(--vu-space-3);
}
.header__inner {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-2);
}
.header__lang {
  display: flex;
  justify-content: flex-end;
}
.header__lang-group {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}
.header__lang-link {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-caption);
  padding: 0.3rem 0.6rem;
  text-decoration: none;
  color: var(--vu-navy);
  background: var(--vu-white);
}
.header__lang-link.is-active {
  background: var(--vu-red);
  color: var(--vu-white);
}
.header__lang-link:hover {
  color: var(--vu-navy);
}
.header__lang-link.is-active:hover {
  color: var(--vu-white);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: 22px;
  width: auto;
}
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 992px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vu-white);
  transition: var(--vu-transition);
}
.header.is-menu-open .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.is-menu-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.header.is-menu-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__nav {
  display: none;
  flex-direction: column;
  gap: var(--vu-space-3);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--vu-navy-dark);
  padding: var(--vu-space-4) var(--vu-space-3);
}
.header__nav.is-open {
  display: flex;
}
@media (min-width: 992px) {
  .header__nav {
    display: flex;
    flex-direction: row;
    gap: var(--vu-space-3);
    position: static;
    background: transparent;
    padding: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}
.header__nav-link {
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--vu-white);
  text-decoration: none;
}
.header__nav-link:hover, .header__nav-link.is-active {
  color: var(--vu-red);
}
@media (min-width: 992px) {
  .header__nav-link {
    min-height: auto;
  }
}

.hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  aspect-ratio: 4/5;
  background-color: var(--vu-bg-gray);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    aspect-ratio: 16/8;
  }
}
@media (min-width: 992px) {
  .hero {
    aspect-ratio: 16/6;
  }
}
.hero--story {
  aspect-ratio: unset;
  min-height: 60vh;
}
@media (min-width: 768px) {
  .hero--story {
    min-height: 70vh;
  }
}
@media (min-width: 992px) {
  .hero--story {
    min-height: 78vh;
  }
}
.hero__image {
  position: absolute;
  inset: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--vu-overlay-navy);
}
.hero__overlay--dark {
  background: var(--vu-overlay-dark);
}
.hero__content {
  position: relative;
  width: 100%;
  padding-block: var(--vu-space-6);
  color: var(--vu-white);
}
.hero__title {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-bold);
  font-size: 2rem;
  max-width: 640px;
  margin: 0 0 var(--vu-space-3) 0;
  line-height: var(--vu-lh-tight);
}
@media (min-width: 768px) {
  .hero__title {
    font-size: var(--vu-fs-h1);
  }
}
.hero__desc {
  font-family: var(--vu-font-body);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0;
  line-height: var(--vu-lh-normal);
}
@media (min-width: 768px) {
  .hero__desc {
    font-size: 1.125rem;
  }
}
.hero__eyebrow {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 var(--vu-space-3) 0;
}
.hero__title--story {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-bold);
  font-size: 2rem;
  max-width: 700px;
  margin: 0 0 var(--vu-space-3) 0;
  line-height: var(--vu-lh-tight);
}
@media (min-width: 768px) {
  .hero__title--story {
    font-size: var(--vu-fs-h1);
  }
}
.hero__title-accent {
  color: var(--vu-red);
}
.hero__lead {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-medium);
  font-size: 1.125rem;
  max-width: 620px;
  margin: 0;
  line-height: var(--vu-lh-normal);
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .hero__lead {
    font-size: var(--vu-fs-h4);
  }
}

.feature-story-list {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-5);
}
@media (min-width: 768px) {
  .feature-story-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-story-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  border-radius: var(--vu-radius-lg);
  overflow: hidden;
  box-shadow: var(--vu-shadow-card);
  transition: var(--vu-transition);
}
.feature-story-card:hover {
  box-shadow: var(--vu-shadow-hover);
  transform: translateY(-4px);
}
.feature-story-card__image {
  width: 100%;
  aspect-ratio: 16/9;
}
.feature-story-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 40, 72, 0.88) 0%, rgba(10, 40, 72, 0.35) 55%, rgba(10, 40, 72, 0) 100%);
}
.feature-story-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--vu-space-4);
  color: var(--vu-white);
}
@media (min-width: 768px) {
  .feature-story-card__body {
    padding: var(--vu-space-5);
  }
}
.feature-story-card__tag {
  display: inline-block;
  background: var(--vu-red);
  color: var(--vu-white);
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--vu-radius-sm);
  margin-bottom: var(--vu-space-3);
}
.feature-story-card__title {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-bold);
  font-size: 1.25rem;
  line-height: var(--vu-lh-tight);
  margin: 0 0 var(--vu-space-2) 0;
}
@media (min-width: 768px) {
  .feature-story-card__title {
    font-size: var(--vu-fs-h3);
  }
}
.feature-story-card__excerpt {
  font-size: var(--vu-fs-body);
  line-height: var(--vu-lh-normal);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--vu-space-3) 0;
}
.feature-story-card__link-label {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-small);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--vu-white);
}

.researcher-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vu-space-2);
  align-items: stretch;
  margin-bottom: var(--vu-space-6);
}
.researcher-toolbar__field, .researcher-toolbar__select {
  flex: 1 1 100%;
  min-width: 0;
  border: 1px solid var(--vu-border);
  border-radius: var(--vu-radius-sm);
  padding: 0.65rem 0.75rem;
  font-family: var(--vu-font-body);
  font-size: var(--vu-fs-small);
  color: var(--vu-text);
  background: var(--vu-white);
  min-height: 44px;
}
@media (min-width: 768px) {
  .researcher-toolbar__field, .researcher-toolbar__select {
    flex: 1 1 auto;
  }
}
@media (min-width: 768px) {
  .researcher-toolbar__field {
    flex: 2 1 160px;
  }
}
@media (min-width: 768px) {
  .researcher-toolbar__select {
    flex: 1 1 140px;
  }
}
.researcher-toolbar__submit,
.researcher-toolbar__reset {
  flex: 1 1 100%;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .researcher-toolbar__submit,
  .researcher-toolbar__reset {
    flex: 0 0 auto;
  }
}

.researcher-empty {
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-body);
  margin: 0 0 var(--vu-space-5) 0;
}

.researcher-results {
  min-height: 120px;
  transition: opacity 0.2s ease;
}
.researcher-results.is-loading {
  opacity: 0.45;
  pointer-events: none;
}
.researcher-results__summary {
  margin: 0 0 var(--vu-space-4);
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
}

.researcher-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.researcher-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--vu-radius);
  overflow: hidden;
  background-image: repeating-linear-gradient(45deg, var(--vu-bg-gray), var(--vu-bg-gray) 16px, var(--vu-white) 16px, var(--vu-white) 32px);
  margin-bottom: var(--vu-space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.researcher-card__photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.researcher-card__name {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-bold);
  font-size: var(--vu-fs-h4);
  color: var(--vu-text-strong);
  margin: 0 0 0.25rem 0;
  line-height: var(--vu-lh-tight);
}
.researcher-card__name a {
  color: inherit;
  text-decoration: none !important;
}
.researcher-card__name a:hover {
  color: var(--vu-red);
  text-decoration: none;
}
.researcher-card__title {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-caption);
  color: var(--vu-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 var(--vu-space-2) 0;
  line-height: var(--vu-lh-normal);
}
.researcher-card__focus {
  font-size: var(--vu-fs-small);
  color: var(--vu-text-muted);
  line-height: var(--vu-lh-normal);
  margin: 0;
}

.researcher-grid {
  margin: 0 -8px;
}
.researcher-grid .slick-track {
  display: flex;
  align-items: stretch;
}
.researcher-grid .slick-slide {
  height: auto;
  display: flex;
}
.researcher-grid .slick-slide > div {
  display: flex;
  width: 100%;
}
.researcher-grid__item {
  padding-inline: 8px;
  padding-bottom: var(--vu-space-5);
  width: 100%;
}
@media (min-width: 768px) {
  .researcher-grid {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vu-space-5);
  }
  .researcher-grid__item {
    padding-inline: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .researcher-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.researcher-grid__actions {
  display: flex;
  justify-content: center;
  margin-top: var(--vu-space-6);
}

.story-prose {
  max-width: 760px;
  margin: 0 auto var(--vu-space-6);
  color: var(--vu-text);
  font-size: var(--vu-fs-body);
  line-height: var(--vu-lh-normal);
}
.story-prose p + p {
  margin-top: var(--vu-space-4);
}

.story-quote {
  max-width: 720px;
  margin: 0 auto var(--vu-space-6);
  text-align: center;
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: 1.375rem;
  color: var(--vu-text-strong);
  line-height: var(--vu-lh-tight);
}
@media (min-width: 768px) {
  .story-quote {
    font-size: var(--vu-fs-h2);
  }
}
.story-quote__mark {
  color: var(--vu-red);
}

.story-media {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: var(--vu-space-6);
  border-radius: var(--vu-radius);
  overflow: hidden;
}
@media (min-width: 768px) {
  .story-media {
    aspect-ratio: 16/9;
  }
}
.story-media__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.story-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vu-space-3);
  margin-bottom: var(--vu-space-6);
}
.story-callout__mark {
  width: 40px;
  height: 40px;
  background: var(--vu-red);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .story-callout__mark {
    width: 56px;
    height: 56px;
  }
}
.story-callout__text {
  max-width: 520px;
  text-align: center;
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: 1.125rem;
  color: var(--vu-text-strong);
  margin: 0;
  line-height: var(--vu-lh-normal);
}
@media (min-width: 768px) {
  .story-callout__text {
    font-size: var(--vu-fs-h4);
  }
}

.researcher-highlight {
  background: var(--vu-white);
  border-left: 4px solid var(--vu-red);
  border-radius: var(--vu-radius);
  padding: var(--vu-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-4);
}
@media (min-width: 768px) {
  .researcher-highlight {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--vu-space-5);
    align-items: center;
    padding: var(--vu-space-5);
  }
}
.researcher-highlight__photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
  border-radius: var(--vu-radius-sm);
  overflow: hidden;
}
@media (min-width: 768px) {
  .researcher-highlight__photo {
    max-width: none;
  }
}
.researcher-highlight__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.researcher-highlight__eyebrow {
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.25rem 0;
}
.researcher-highlight__name {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-bold);
  font-size: 1.375rem;
  color: var(--vu-navy);
  margin: 0 0 var(--vu-space-3) 0;
}
@media (min-width: 768px) {
  .researcher-highlight__name {
    font-size: var(--vu-fs-h3);
  }
}
.researcher-highlight__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vu-space-2);
  margin: 0 0 var(--vu-space-3) 0;
  padding: 0;
  list-style: none;
}
.researcher-highlight__tag {
  background: var(--vu-bg-tint);
  border: 1px solid var(--vu-border);
  border-radius: 99px;
  padding: 0.25rem 0.75rem;
  font-size: var(--vu-fs-caption);
  color: var(--vu-navy);
}
.researcher-highlight__bio {
  color: var(--vu-text);
  font-size: var(--vu-fs-body);
  line-height: var(--vu-lh-normal);
  margin: 0 0 var(--vu-space-4) 0;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-5);
}
@media (min-width: 768px) {
  .project-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .project-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background: var(--vu-white);
  border-radius: var(--vu-radius);
  box-shadow: var(--vu-shadow-card);
  overflow: hidden;
  transition: var(--vu-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  box-shadow: var(--vu-shadow-hover);
  transform: translateY(-4px);
}
.project-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
}
.project-card__badge {
  position: absolute;
  top: var(--vu-space-3);
  left: var(--vu-space-3);
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--vu-radius-sm);
  background: var(--vu-navy);
  color: var(--vu-white);
}
.project-card__badge--completed {
  background: var(--vu-gold);
  color: var(--vu-text-strong);
}
.project-card__badge--red {
  background: var(--vu-red);
}
.project-card__body {
  padding: var(--vu-space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-card__title {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-h4);
  color: var(--vu-text-strong);
  margin: 0 0 var(--vu-space-2) 0;
  line-height: var(--vu-lh-tight);
}
.project-card__summary {
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
  line-height: var(--vu-lh-normal);
  margin: 0 0 var(--vu-space-3) 0;
  flex: 1;
}
.project-card__link {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: var(--vu-fs-caption);
  color: var(--vu-navy);
  text-decoration: none;
}
.project-card__link:hover {
  color: var(--vu-red);
}

.research-project-detail-template #project-related .project-card__link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--vu-navy);
}
.research-project-detail-template #project-related .project-card__link:hover,
.research-project-detail-template #project-related .project-card__link:focus-visible {
  background: var(--vu-navy);
  color: var(--vu-white);
}

.project-search {
  display: flex;
  gap: var(--vu-space-2);
}
.project-search__field {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--vu-border);
  border-radius: var(--vu-radius-sm);
  padding: 0.85rem 1.25rem;
  font-family: var(--vu-font-body);
  font-size: var(--vu-fs-body);
  color: var(--vu-text);
  min-height: 44px;
}
.project-search__submit {
  flex: 0 0 auto;
  background: var(--vu-red);
  color: var(--vu-white);
  border: none;
  border-radius: var(--vu-radius-sm);
  padding: 0 1.5rem;
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  cursor: pointer;
  transition: var(--vu-transition);
  min-height: 44px;
}
.project-search__submit:hover {
  background: var(--vu-navy);
}

#project-results {
  padding-top: calc(var(--vu-space-8) / 2);
}
@media (min-width: 768px) {
  #project-results {
    padding-top: var(--vu-space-8);
  }
}

.project-layout {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-6);
  align-items: flex-start;
}
@media (min-width: 992px) {
  .project-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
  }
}

.project-filters-toggle {
  width: 100%;
  margin-bottom: var(--vu-space-4);
  background: var(--vu-white);
  border: 2px solid var(--vu-navy);
  color: var(--vu-navy);
  border-radius: var(--vu-radius-sm);
  padding: 0.7rem 1rem;
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: var(--vu-fs-small);
  cursor: pointer;
  min-height: 44px;
}
@media (min-width: 992px) {
  .project-filters-toggle {
    display: none;
  }
}

.project-filters {
  display: none;
  width: 100%;
  background: var(--vu-bg-tint);
  border-radius: var(--vu-radius);
  padding: var(--vu-space-4);
}
.project-filters.is-open {
  display: block;
}
@media (min-width: 992px) {
  .project-filters {
    display: block;
    position: sticky;
    top: var(--vu-space-4);
  }
}
.project-filters__group {
  border-bottom: 1px solid var(--vu-border);
  padding-block: var(--vu-space-3);
}
.project-filters__group:first-child {
  padding-top: 0;
}
.project-filters__title {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-small);
  text-transform: uppercase;
  color: var(--vu-navy);
  margin: 0 0 var(--vu-space-2) 0;
}
.project-filters__options {
  max-height: 170px;
  overflow-y: auto;
}
.project-filters__option {
  display: flex;
  align-items: center;
  gap: var(--vu-space-2);
  font-size: var(--vu-fs-small);
  color: var(--vu-text);
  padding-block: 0.4rem;
  cursor: pointer;
}
.project-filters__checkbox {
  accent-color: var(--vu-red);
  width: 16px;
  height: 16px;
  flex: none;
}
.project-filters__apply {
  width: 100%;
  margin-top: var(--vu-space-3);
  background: var(--vu-red);
  color: var(--vu-white);
  border: none;
  border-radius: var(--vu-radius-sm);
  padding: 0.75rem;
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: var(--vu-fs-small);
  cursor: pointer;
  transition: var(--vu-transition);
  min-height: 44px;
}
.project-filters__apply:hover {
  background: var(--vu-navy);
}
.project-filters__clear {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
  text-decoration: underline;
  margin-top: var(--vu-space-2);
  cursor: pointer;
  min-height: 44px;
  text-align: center;
}

.project-results-panel {
  min-width: 0;
}
.project-results-panel.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vu-space-2);
  margin-bottom: var(--vu-space-4);
  padding: 0;
  list-style: none;
}

.filter-chip {
  background: var(--vu-white);
  border: 1px solid var(--vu-navy);
  color: var(--vu-navy);
  border-radius: 99px;
  padding: 0.3rem 0.4rem 0.3rem 0.9rem;
  font-size: var(--vu-fs-caption);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.filter-chip__remove {
  background: none;
  border: none;
  color: var(--vu-navy);
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.filter-chip__remove:hover {
  background: var(--vu-bg-tint);
  color: var(--vu-red);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--vu-space-3);
  flex-wrap: wrap;
  margin-bottom: var(--vu-space-3);
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
}
.project-meta strong {
  color: var(--vu-text-strong);
}

.project-empty {
  text-align: center;
  padding: var(--vu-space-7) var(--vu-space-3);
  background: var(--vu-bg-tint);
  border-radius: var(--vu-radius);
}
.project-empty__text {
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-body);
  margin: 0 0 var(--vu-space-3) 0;
}

.project-row-list {
  display: flex;
  flex-direction: column;
}

.project-row {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-3);
  padding: var(--vu-space-4) 0;
  border-bottom: 1px solid var(--vu-border);
}
@media (min-width: 768px) {
  .project-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: var(--vu-space-4);
    align-items: center;
  }
}
.project-row__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--vu-radius-sm);
}
.project-row__title {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-h4);
  color: var(--vu-text-strong);
  margin: 0 0 0.25rem 0;
  line-height: var(--vu-lh-tight);
}
.project-row__title-link {
  color: inherit;
  text-decoration: none;
}
.project-row__title-link:hover {
  color: var(--vu-red);
}
.project-row__summary {
  color: var(--vu-text);
  font-size: var(--vu-fs-small);
  line-height: var(--vu-lh-normal);
  margin: 0 0 var(--vu-space-2) 0;
}
.project-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-row__tag {
  background: var(--vu-bg-gray);
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-caption);
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
}
.project-row__action {
  white-space: nowrap;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .project-row__action {
    align-self: center;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--vu-space-2);
  margin-top: var(--vu-space-6);
  padding: 0;
  list-style: none;
}

.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.9rem;
  border-radius: var(--vu-radius-sm);
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-small);
  cursor: pointer;
  transition: var(--vu-transition);
  background: var(--vu-white);
  color: var(--vu-navy);
  border: 2px solid var(--vu-border);
  text-decoration: none;
}
.pagination__btn:hover:not(:disabled) {
  border-color: var(--vu-navy);
}
.pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination__btn.is-active {
  background: var(--vu-navy);
  color: var(--vu-white);
  border-color: var(--vu-navy);
}

.pagination__dots {
  color: var(--vu-text-muted);
  padding-inline: 0.25rem;
}

.researcher-pagination .pagination__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff !important;
  border: 2px solid #dee2e6 !important;
  color: #134d8b !important;
  box-shadow: none !important;
}
.researcher-pagination .pagination__btn:hover:not(:disabled),
.researcher-pagination .pagination__btn:focus-visible:not(:disabled) {
  background: #fff !important;
  border: 2px solid #134d8b !important;
  color: #134d8b !important;
}
.researcher-pagination .pagination__btn.is-active,
.researcher-pagination .pagination__btn[aria-current=page] {
  background: #C62127 !important;
  border: 2px solid #C62127 !important;
  color: #fff !important;
}
.researcher-pagination .pagination__btn:disabled {
  background: #fff !important;
  border: 2px solid #dee2e6 !important;
  color: #134d8b !important;
}

.project-hero-breadcrumb {
  font-size: var(--vu-fs-caption);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--vu-space-3);
}
.project-hero-breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.project-hero-breadcrumb__link:hover {
  color: var(--vu-white);
}
.project-hero-breadcrumb__current {
  color: var(--vu-white);
}

.project-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-hero-tags__tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--vu-white);
  font-size: var(--vu-fs-caption);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
}

.detail-section {
  padding-block: var(--vu-space-6);
  border-top: 1px solid var(--vu-border);
}
.detail-section--first {
  border-top: none;
}

.detail-title {
  position: relative;
  padding-top: 1rem;
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-bold);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--vu-text-strong);
  margin: 0 0 var(--vu-space-4) 0;
}
.detail-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--vu-accent-bar-w);
  height: var(--vu-accent-bar-h);
  background: var(--vu-red);
}
.detail-title-accent {
  color: var(--vu-red);
}
@media (min-width: 768px) {
  .detail-title {
    font-size: var(--vu-fs-h2);
  }
}

.summary-funder {
  display: inline-block;
  background: var(--vu-bg-tint);
  color: var(--vu-navy);
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--vu-radius-sm);
  border: 1px solid var(--vu-navy);
  margin-bottom: var(--vu-space-4);
}

.summary-text {
  font-size: var(--vu-fs-body);
  line-height: var(--vu-lh-normal);
  color: var(--vu-text);
  margin: 0;
}

.summary-subtopics {
  list-style: none;
  padding: 0;
  margin: var(--vu-space-4) 0 0 0;
}
.summary-subtopics__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--vu-border);
  font-size: var(--vu-fs-body);
  color: var(--vu-text);
}
.summary-subtopics__item:last-child {
  border-bottom: 0;
}
.summary-subtopics__label {
  color: var(--vu-navy);
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
}

.project-gallery__slide {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: var(--vu-radius-lg);
  overflow: hidden;
}
.project-gallery .slick-prev,
.project-gallery .slick-next {
  width: 40px;
  height: 40px;
  z-index: 2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  transition: var(--vu-transition);
}
.project-gallery .slick-prev:hover,
.project-gallery .slick-next:hover {
  background: var(--vu-white);
}
.project-gallery .slick-prev::before,
.project-gallery .slick-next::before {
  font-family: sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--vu-navy);
  opacity: 1;
}
.project-gallery .slick-prev:hover::before,
.project-gallery .slick-next:hover::before {
  color: var(--vu-red);
}
.project-gallery .slick-prev {
  left: var(--vu-space-3);
}
.project-gallery .slick-prev::before {
  content: "‹";
}
.project-gallery .slick-next {
  right: var(--vu-space-3);
}
.project-gallery .slick-next::before {
  content: "›";
}
.project-gallery .slick-dots {
  position: static;
  margin-top: var(--vu-space-3);
}
.project-gallery .slick-dots li {
  width: 9px;
  height: 9px;
  margin: 0 4px;
}
.project-gallery .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
}
.project-gallery .slick-dots li button::before {
  width: 9px;
  height: 9px;
  font-size: 9px;
  line-height: 9px;
  color: var(--vu-border);
  opacity: 1;
}
.project-gallery .slick-dots li.slick-active button::before {
  color: var(--vu-navy);
}

.team-block {
  margin-bottom: var(--vu-space-5);
}

.team-block__title {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  font-size: var(--vu-fs-small);
  text-transform: uppercase;
  color: var(--vu-red);
  margin: 0 0 var(--vu-space-3) 0;
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .team-list--researchers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--vu-space-5);
  }
}

.team-list__item {
  border-bottom: 1px solid var(--vu-border);
}

.team-list__link {
  display: block;
  padding: var(--vu-space-3) 0;
  text-decoration: none;
  min-height: 44px;
}

.team-list__name {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
  color: var(--vu-text-strong);
  margin: 0;
}
.team-block--pi .team-list__name {
  font-size: var(--vu-fs-h4);
}

.team-list__role {
  font-size: var(--vu-fs-caption);
  color: var(--vu-text-muted);
  margin: 0.15rem 0 0 0;
}
.team-block--pi .team-list__role {
  font-size: var(--vu-fs-small);
}

.alumni-list {
  list-style: none;
  padding: 0;
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
  margin: 0;
}
.alumni-list__item {
  padding: 0.35rem 0;
}
.alumni-list__note {
  font-style: italic;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vu-space-5);
  text-align: center;
  margin-bottom: var(--vu-space-5);
}
@media (min-width: 768px) {
  .stat-band {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-band__value {
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-bold);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  color: var(--vu-navy);
}
.stat-band__value--accent {
  color: var(--vu-red);
}
@media (min-width: 768px) {
  .stat-band__value {
    font-size: var(--vu-fs-stat);
  }
}

.stat-band__label {
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
  margin-top: var(--vu-space-2);
}

.outcome-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.outcome-list__item {
  display: flex;
  gap: var(--vu-space-3);
  padding: var(--vu-space-3) 0;
  border-bottom: 1px solid var(--vu-border);
}
.outcome-list__item:last-child {
  border-bottom: 0;
}

.outcome-list__mark {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vu-navy);
  color: var(--vu-white);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.outcome-list__title {
  color: var(--vu-text-strong);
  font-family: var(--vu-font-heading);
  font-weight: var(--vu-fw-semibold);
}

.outcome-list__desc {
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
  margin-top: 0.15rem;
}

.publication-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.publication-list__item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--vu-border);
  font-size: var(--vu-fs-body);
}
.publication-list__item:last-child {
  border-bottom: 0;
}

.publication-list__link {
  color: var(--vu-navy);
  font-weight: var(--vu-fw-semibold);
  text-decoration: none;
}
.publication-list__link:hover {
  color: var(--vu-red);
}

.publication-list__year {
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
}

.btn-vu--outline-white {
  border: 2px solid var(--vu-white);
  color: var(--vu-white);
  background: transparent;
}
.btn-vu--outline-white:hover,
.btn-vu--outline-white:focus-visible {
  background: var(--vu-white);
  border-color: var(--vu-white);
  color: var(--vu-navy);
}

.research-home-template .btn-vu--outline-white,
.research-home-template .btn-vu--outline-white:visited {
  color: var(--vu-white) !important;
}
.research-home-template .btn-vu--outline-white:hover,
.research-home-template .btn-vu--outline-white:focus-visible {
  color: var(--vu-navy) !important;
}
.research-home-template #research-impact .section__title::before {
  left: 50%;
  transform: translateX(-50%);
}
.research-home-template #research-highlight .btn-vu--navy,
.research-home-template #research-highlight .btn-vu--navy:visited {
  background: var(--vu-navy) !important;
  color: var(--vu-white) !important;
}
.research-home-template #research-highlight .btn-vu--navy:hover,
.research-home-template #research-highlight .btn-vu--navy:focus-visible {
  background: var(--vu-red) !important;
  color: var(--vu-white) !important;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-5);
  align-items: center;
}
@media (min-width: 768px) {
  .split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--vu-space-7);
  }
}
.split-section--media-first .split-section__media {
  order: -1;
}
.split-section__eyebrow-title {
  margin-bottom: var(--vu-space-4);
}
.split-section__media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--vu-radius-lg);
  overflow: hidden;
}
.split-section__text {
  color: var(--vu-text);
  font-size: 1.0625rem;
  line-height: var(--vu-lh-normal);
  margin: 0 0 var(--vu-space-4);
}

.stat-band--quad {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.stat-band--quad > div {
  padding: var(--vu-space-3);
}
@media (min-width: 768px) {
  .stat-band--quad {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-5);
}
@media (min-width: 768px) {
  .news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--vu-white);
  border-radius: var(--vu-radius);
  box-shadow: var(--vu-shadow-card);
  transition: var(--vu-transition);
}
.news-card:hover {
  box-shadow: var(--vu-shadow-hover);
  transform: translateY(-4px);
}
.news-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
}
.news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--vu-space-4);
}
.news-card__date {
  display: block;
  margin-bottom: var(--vu-space-2);
  color: var(--vu-red);
  font-family: var(--vu-font-heading);
  font-size: var(--vu-fs-caption);
  font-weight: var(--vu-fw-semibold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.news-card__title {
  margin: 0 0 var(--vu-space-2);
  color: var(--vu-text-strong);
  font-family: var(--vu-font-heading);
  font-size: var(--vu-fs-h4);
  font-weight: var(--vu-fw-semibold);
  line-height: var(--vu-lh-tight);
}
.news-card__title a,
.news-card__title a:visited {
  color: inherit;
  text-decoration: none;
}
.news-card__title a:hover,
.news-card__title a:focus-visible {
  color: var(--vu-red);
}
.news-card__excerpt {
  margin: 0;
  color: var(--vu-text-muted);
  font-size: var(--vu-fs-small);
  line-height: var(--vu-lh-normal);
}

.quote-block {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-4);
  align-items: center;
}
@media (min-width: 768px) {
  .quote-block {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 3.75rem;
  }
}
.quote-block__portrait {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.quote-block__content {
  min-width: 0;
}
.quote-block__text {
  margin: 0 0 var(--vu-space-4);
  color: var(--vu-text-strong);
  font-family: var(--vu-font-heading);
  font-size: 1.25rem;
  font-weight: var(--vu-fw-regular);
  line-height: 1.15;
}
@media (min-width: 768px) {
  .quote-block__text {
    font-size: 1.275rem;
  }
}
.quote-block__attribution {
  margin: 0;
  color: var(--vu-text-strong);
  font-size: 1.25rem;
  line-height: var(--vu-lh-normal);
}
.quote-block__name {
  color: var(--vu-navy);
  font-family: var(--vu-font-heading);
}

.site-footer {
  position: relative;
  background: url("../images/footer-bg.webp") center/cover no-repeat;
  color: var(--vu-white);
  overflow: hidden;
  padding-block: var(--vu-space-7);
}
.site-footer__overlay {
  position: absolute;
  inset: 0;
  background: var(--vu-overlay-navy);
}
.site-footer__wedge {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 38%;
  background: var(--vu-navy-dark);
  opacity: 0.55;
  clip-path: polygon(0 0, 100% 0, 55% 100%, 0 100%);
}
.site-footer__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-5);
}
@media (min-width: 768px) {
  .site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.site-footer__logo {
  margin-bottom: var(--vu-space-4);
}
.site-footer__logo img {
  height: 32px;
  width: auto;
}
.site-footer__copy {
  font-weight: var(--vu-fw-bold);
  font-size: var(--vu-fs-small);
  margin: 0 0 var(--vu-space-2) 0;
}
.site-footer__privacy {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: var(--vu-fs-small);
}
.site-footer__privacy:hover {
  color: var(--vu-white);
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-3);
  font-size: var(--vu-fs-small);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__nav-link {
  color: var(--vu-white);
  text-decoration: none;
}
.site-footer__nav-link:hover {
  color: var(--vu-red);
}
.site-footer__resources {
  display: flex;
  flex-direction: column;
  gap: var(--vu-space-3);
  font-size: var(--vu-fs-small);
  list-style: none;
  margin: 0 0 var(--vu-space-4) 0;
  padding: 0;
}
.site-footer__social {
  display: flex;
  gap: var(--vu-space-3);
}
.site-footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--vu-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vu-white);
  text-decoration: none;
  font-family: var(--vu-font-heading);
  font-size: 0.8rem;
  font-weight: var(--vu-fw-bold);
}
.site-footer__social-link:hover {
  background: var(--vu-white);
  color: var(--vu-navy);
}
