:root {
  --purple: #372365;
  --ink: #0b0918;
  --muted: #f2f2f2;
  --cyan: #60d4e4;
  --content: 1300px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: #28262f;
  background: white;
  font:
    18px/1.5 "F6 Sans",
    "Arial",
    sans-serif;
}
a {
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #00a6bb;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0 0 1em;
}
h1,
h2,
h3 {
  line-height: 1.2;
}
h1 {
  font-size: clamp(30px, 3.2vw, 58px);
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 21px;
}
a {
  text-underline-offset: 4px;
}
button {
  border: 0;
  background: transparent;
  color: inherit;
}
button,
input {
  min-height: 44px;
}
button {
  min-width: 44px;
}
input {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--content), calc(100% - 64px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.section-heading {
  color: var(--purple);
  font-size: 30px;
  margin-bottom: 42px;
}
.section-heading:after {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background: currentColor;
  margin-top: 30px;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.section-top > a {
  font-size: 15px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 20px;
  padding: 14px;
  background: white;
  color: var(--purple);
}
.skip-link:focus {
  top: 10px;
}
.masthead {
  height: 80px;
  background: var(--purple);
  color: white;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 3.3%;
  position: relative;
  z-index: 30;
}
.brand {
  width: 280px;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: auto;
}
.masthead nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: auto;
}
.masthead nav > a,
.masthead nav > button {
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
  text-decoration: none;
  padding: 13px 0;
}
.masthead nav > a:hover,
.masthead nav > button:hover {
  color: var(--cyan);
}
.search-form {
  display: flex;
  background: #65538a;
  border-radius: 30px;
  align-items: center;
  width: 180px;
  flex-shrink: 0;
}
.search-form input {
  width: 130px;
  min-width: 0;
  background: transparent;
  border: 0;
  color: white;
  padding-left: 15px;
  font-size: 14px;
}
.search-form input::placeholder {
  color: white;
}
.search-form button {
  padding: 8px;
  display: grid;
  place-items: center;
}
.utility-button {
  font-size: 24px;
}
.nav-toggle {
  display: none;
}
.mega-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 400px;
  display: grid;
  grid-template-columns: 34% 66%;
  box-shadow: 0 12px 15px #0003;
}
.mega-links {
  background: #4b3873;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px max(35px, 16vw);
  padding-right: 30px;
  gap: 3px;
}
.mega-links a {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
  padding: 10px 0;
  white-space: nowrap;
}
.mega-links a:hover,
.mega-links a:focus {
  color: var(--cyan);
}
.mega-photo {
  overflow: hidden;
}
.mega-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero {
  position: relative;
  height: min(52.1vw, 1000px);
  min-height: 420px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #05041155, transparent 70%);
}
.hero-title {
  position: absolute;
  left: 6.5%;
  top: 50%;
  transform: translateY(-50%);
  padding: 42px 65px;
  width: 40%;
  max-width: 790px;
  background:
    linear-gradient(white, white) top left/90px 4px no-repeat,
    linear-gradient(white, white) top left/4px 100px no-repeat,
    linear-gradient(white, white) top right/90px 4px no-repeat,
    linear-gradient(white, white) top right/4px 100px no-repeat,
    linear-gradient(white, white) bottom left/90px 4px no-repeat,
    linear-gradient(white, white) bottom left/4px 100px no-repeat,
    linear-gradient(white, white) bottom right/90px 4px no-repeat,
    linear-gradient(white, white) bottom right/4px 100px no-repeat;
}
.hero-title h1,
.hero-title h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3.2vw, 58px);
  font-weight: 750;
}
.hero-title p {
  font-size: clamp(18px, 1.85vw, 34px);
  line-height: 1.35;
  margin: 0;
}
.carousel .hero-image {
  object-position: right !important;
  width: 76%;
  right: 0;
}
.carousel .hero-shade {
  background: linear-gradient(90deg, #080711 0%, #080711 25%, transparent 65%);
}
.carousel-controls {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.carousel-controls button {
  border: 1px solid #fff;
  width: 18px;
  height: 18px;
  min-height: 18px;
  min-width: 18px;
  padding: 0;
  border-radius: 50%;
  margin: 10px;
}
.carousel-controls button[aria-pressed="true"] {
  background: var(--cyan);
}
.home-intro > p {
  max-width: 1220px;
  margin-inline: auto;
}
.mosaic {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
  margin-top: 100px;
  height: 630px;
}
.tile {
  position: relative;
  overflow: hidden;
  color: white;
  text-decoration: none;
  background: var(--purple);
  display: grid;
  place-items: center;
  text-align: center;
}
.tile img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.tile > span {
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  padding: 15px;
}
.tile small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 7px;
}
.tile-intro {
  grid-row: span 2;
}
.tile.purple {
  background:
    linear-gradient(140deg, #372365e0, #372365e0),
    url("wave.webp") center/cover;
}
.tile.purple a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
}
.tile.purple a:hover {
  color: var(--cyan);
}
.feature {
  background: #030306;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 900px;
  display: flex;
  align-items: center;
  padding: 120px 0;
}
.feature .section-heading {
  color: white;
}
.feature-photo {
  position: absolute;
  inset: 0 0 0 50%;
}
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-copy {
  position: relative;
  width: 48%;
  padding-right: 60px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 60px;
  text-align: center;
}
.features-grid p {
  font-size: 16px;
  line-height: 1.4;
}
.features-grid h3 {
  font-size: 19px;
}
.science-icon {
  font-size: 62px;
  color: #ae75ec;
  text-shadow: 0 0 12px #783eab;
}
.feature:before {
  content: "";
  background: url("wave.webp") center/cover;
  opacity: 0.15;
  position: absolute;
  inset: 0 45% 0 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.card {
  position: relative;
  min-width: 0;
}
.card > a {
  display: block;
  text-decoration: none;
}
.card img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}
.card h3 {
  font-size: 20px;
  margin: 14px 0 8px;
}
.card p {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.card .more {
  font-size: 14px;
  text-decoration: underline;
}
.date {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--purple);
  color: white;
  padding: 10px 15px;
  font-size: 13px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 45px;
}
.pagination button {
  border: 1px solid var(--purple);
  border-radius: 50%;
  min-width: 32px;
  min-height: 32px;
  font-size: 14px;
}
.pagination button[aria-pressed="true"] {
  color: white;
  background: var(--purple);
}
.site-footer {
  background: var(--ink);
  color: white;
  padding-top: 70px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 75px;
}
.site-footer h2 {
  font-size: 18px;
  margin: 30px 0 18px;
}
.site-footer h3 {
  font-size: 15px;
  margin: 20px 0 8px;
}
.site-footer nav a,
.footer-grid > div:last-child > a,
.footer-grid > div:last-child > button {
  display: block;
  text-decoration: none;
  text-align: left;
  padding: 4px 0;
}
.site-footer nav h2,
.footer-grid > div:last-child h2 {
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff33;
  padding-bottom: 18px;
}
.footer-brand {
  height: 60px;
  object-fit: contain;
  object-position: left;
}
.institute-mark {
  filter: brightness(0) invert(1);
}
.copyright {
  text-align: center;
  padding: 20px;
  background: #252332;
  font-size: 12px;
}
.review-note {
  font-size: 12px;
  color: #cbc5d6;
  margin-top: 25px;
}
.review-label {
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  color: #5c4a76;
  background: #eeeaf4;
  padding: 4px 8px;
  margin: 12px 0;
}
.context-nav {
  position: fixed;
  z-index: 25;
  top: 0;
  left: 0;
  right: 0;
  background: var(--purple);
  color: white;
  display: none;
  align-items: center;
  gap: 30px;
  padding: 8px 3.3%;
  min-height: 60px;
  font-size: 12px;
}
.context-nav.visible {
  display: flex;
}
.context-nav strong {
  font-size: 17px;
  text-transform: uppercase;
  white-space: nowrap;
}
.context-nav > div {
  display: flex;
  gap: 24px;
  overflow: auto;
  flex: 1;
}
.context-nav a {
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.context-nav a[aria-current="true"] {
  color: var(--cyan);
  text-decoration: underline;
}
section[id],
details[id],
h2[id] {
  scroll-margin-top: 90px;
}
.text-disclosure > summary {
  list-style: none;
  font-size: 15px;
  padding: 25px 0;
  cursor: pointer;
}

.text-disclosure > div {
  border-top: 1px solid #ccc;
  padding-top: 45px;
  font-size: 16px;
}
.text-disclosure .open-label,
.text-disclosure[open] .closed-label {
  display: none;
}
.text-disclosure[open] .open-label {
  display: inline;
}
.scientific {
  min-height: 1080px;
}
.scientific .feature-photo {
  left: 35%;
}
.scientific .feature-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #030306, transparent 45%);
}
.scientific .feature-copy {
  width: 40%;
}
.scientific li {
  padding: 7px 0;
  font-size: 17px;
}
.scientific li::marker {
  color: #b488ff;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}
.person-card {
  position: relative;
  text-decoration: none;
  min-width: 0;
}
.person-card img,
.person-card .image-placeholder {
  aspect-ratio: 0.72;
  width: 100%;
  object-fit: cover;
}
.person-card h3 {
  font-size: 17px;
  margin: 12px 0 6px;
}
.person-card p {
  font-size: 12px;
}
.person-overlay {
  display: none;
  position: absolute;
  inset: 0 0 65px;
  background: #372365b8;
  align-items: center;
  justify-content: center;
  color: white;
}
.person-card:hover .person-overlay,
.person-card:focus-visible .person-overlay {
  display: flex;
}
html.suppress-person-hover .person-card:hover:not(:focus-visible) .person-overlay {
  display: none;
}
.image-placeholder {
  background: #e9e6ed;
  color: #554d63;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  font-size: 15px;
}
.contact-band {
  padding: 100px 0;
  background: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 70px;
}
.contact-grid h3 {
  font-size: 20px;
  margin-top: 28px;
}
.contact-grid p,
.contact-grid a {
  font-size: 15px;
  overflow-wrap: anywhere;
}
.map-panel {
  position: relative;
  min-height: 560px;
  background: #e7e5de;
  display: flex;
  align-items: end;
}
.map-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      30deg,
      transparent 0 72px,
      #fff 74px 80px,
      transparent 82px 130px
    ),
    repeating-linear-gradient(110deg, #e4e8e0 0 120px, #fff 123px 132px);
  display: grid;
  place-items: center;
}
.map-grid span {
  color: var(--purple);
  font-size: 65px;
}
.map-caption {
  position: relative;
  background: #ffffffed;
  width: 100%;
  padding: 25px;
}
.profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 45px;
}
.profile h3 {
  font-size: 17px;
  text-transform: uppercase;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 30px;
}
.profile p {
  font-size: 16px;
}
.profile aside img {
  width: 100%;
}
.contact-box {
  background: #ebe8ef;
  padding: 25px;
  margin: 35px 0;
}
.back-link {
  float: right;
  font-size: 13px;
  text-transform: uppercase;
}
.media-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 45px 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.media-tabs a {
  text-decoration: none;
}
.media-tabs a[aria-current="page"] {
  border-bottom: 3px solid var(--purple);
}
dialog {
  border: 0;
  padding: 45px;
  max-width: min(700px, calc(100vw - 30px));
  max-height: 90dvh;
  overflow: auto;
  color: var(--ink);
}
dialog::backdrop {
  background: #080611d9;
}
.dialog-close {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 30px;
}
dialog h2 {
  padding-right: 15px;
}
.placeholder-form {
  display: grid;
  gap: 15px;
}
.placeholder-form input {
  border: 1px solid #777;
  padding: 10px;
}
.placeholder-form button {
  background: var(--purple);
  color: white;
  padding: 12px;
}
#lightbox {
  background: var(--ink);
  color: white;
  max-width: 95vw;
  text-align: center;
}
#lightbox img {
  max-height: 72dvh;
  max-width: 85vw;
  margin: auto;
  object-fit: contain;
}
#lightbox p {
  font-size: 15px;
}
.search-result {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}
@media (min-width: 1921px) {
  .hero {
    height: 1000px;
  }
}
@media (max-width: 1400px) {
  .masthead {
    gap: 12px;
    padding: 0 25px;
  }
  .brand {
    width: 210px;
  }
  .masthead nav {
    gap: 13px;
  }
  .masthead nav > a,
  .masthead nav > button {
    font-size: 10px;
  }
  .search-form {
    width: 140px;
  }
  .search-form input {
    width: 94px;
  }
  .container {
    width: 68%;
  }
  .section {
    padding-block: 75px;
  }
  .section-heading {
    font-size: 25px;
  }
  .hero-title {
    padding: 35px 45px;
  }
  .mosaic {
    height: 460px;
    gap: 28px;
    margin-top: 70px;
  }
  .tile > span {
    font-size: 16px;
  }
  .feature {
    min-height: 675px;
    padding-block: 90px;
  }
  .scientific {
    min-height: 800px;
  }
  .features-grid {
    gap: 25px;
  }
  .feature-copy {
    padding-right: 30px;
  }
  .features-grid p {
    font-size: 14px;
  }
  .scientific li {
    font-size: 14px;
  }
  .people-grid {
    gap: 24px;
  }
  .person-card h3 {
    font-size: 14px;
  }
  .footer-grid {
    gap: 25px;
  }
  .site-footer {
    font-size: 12px;
  }
  .site-footer h2 {
    font-size: 16px;
  }
  .profile {
    grid-template-columns: 230px 1fr;
  }
  .contact-grid {
    gap: 40px;
  }
  .contact-grid a {
    font-size: 13px;
  }
  .card h3 {
    font-size: 17px;
  }
  .card p {
    font-size: 13px;
  }
  .mega-menu {
    height: 300px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .masthead {
    height: 70px;
    flex-wrap: wrap;
  }
  .brand {
    width: 210px;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .masthead nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--purple);
    padding: 20px;
    margin: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
  }
  .masthead nav.is-open {
    display: flex;
  }
  .masthead nav > a,
  .masthead nav > button {
    font-size: 15px;
    text-align: left;
    padding: 10px;
  }
  .mega-menu {
    top: 430px;
    height: 250px;
    grid-template-columns: 40% 60%;
  }
  .mega-links {
    padding: 15px 30px;
    gap: 0;
  }
  .mega-links a {
    font-size: 14px;
    min-height: 38px;
    padding: 6px;
  }
  .hero-title {
    width: 48%;
    padding: 28px;
  }
  .hero {
    min-height: 470px;
  }
  .people-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .context-nav {
    gap: 15px;
  }
  .context-nav strong {
    display: none;
  }
  .context-nav > div {
    gap: 22px;
  }
  .context-nav > a:last-child {
    font-size: 11px;
  }
  .feature {
    min-height: 640px;
  }
  .scientific .feature-copy {
    width: 48%;
  }
  .scientific .feature-photo {
    left: 40%;
  }
  .mosaic {
    height: 440px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  .profile {
    grid-template-columns: 200px 1fr;
  }
  .footer-grid {
    gap: 25px;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 55px;
  }
  .section-heading {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .section-heading:after {
    margin-top: 18px;
  }
  .masthead {
    height: 116px;
    padding: 8px 20px;
    gap: 0 12px;
    align-content: center;
  }
  .brand {
    width: 210px;
    max-width: 65%;
  }
  .nav-toggle {
    padding: 0;
    font-size: 14px;
  }
  .search-form {
    width: calc(100% - 50px);
    height: 36px;
    margin-top: 5px;
  }
  .search-form input {
    width: calc(100% - 44px);
    min-height: 36px;
  }
  .search-form button {
    min-height: 36px;
  }
  .utility-button {
    margin-top: 5px;
  }
  .masthead nav {
    top: 116px;
  }
  .mega-menu {
    top: 480px;
    height: auto;
    grid-template-columns: 1fr;
  }
  .mega-photo {
    display: none;
  }
  .mega-links {
    padding: 15px 30px;
  }
  .mega-links a {
    min-height: 44px;
  }
  .hero {
    height: 560px;
    min-height: 0;
  }
  .hero-title {
    width: calc(100% - 50px);
    left: 25px;
    top: auto;
    bottom: 35px;
    transform: none;
    padding: 27px;
    background-size:
      50px 2px,
      2px 50px,
      50px 2px,
      2px 50px,
      50px 2px,
      2px 50px,
      50px 2px,
      2px 50px;
  }
  .hero-title h1,
  .hero-title h2 {
    font-size: 34px;
  }
  .hero-title p {
    font-size: 19px;
  }
  .hero-shade,
  .carousel .hero-shade {
    background: linear-gradient(0deg, #070611e6, transparent 100%);
  }
  .hero-image {
    object-position: 60% center !important;
  }
  .carousel .hero-image {
    width: 130%;
    max-width: none;
    right: -28%;
  }
  .carousel .hero-title {
    bottom: 65px;
  }
  .carousel-controls {
    bottom: 10px;
  }
  .mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 210px 210px;
    height: auto;
    gap: 18px;
    margin-top: 45px;
  }
  .tile-intro {
    grid-column: span 2;
    grid-row: auto;
  }
  .tile > span {
    font-size: 14px;
    padding: 10px;
  }
  .tile.purple a {
    font-size: 14px;
    padding: 3px 0;
  }
  .feature {
    display: block;
    min-height: 0;
    padding: 340px 0 45px;
  }
  .feature-photo,
  .scientific .feature-photo {
    inset: 0 0 auto;
    height: 340px;
  }
  .feature-photo:after,
  .scientific .feature-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #030306, transparent 70%);
  }
  .feature-copy,
  .scientific .feature-copy {
    width: 100%;
    padding: 0;
  }
  .features-grid {
    gap: 25px 20px;
  }
  .features-grid h3 {
    font-size: 16px;
  }
  .features-grid p {
    font-size: 14px;
  }
  .science-icon {
    font-size: 45px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .card h3 {
    font-size: 20px;
  }
  .card p {
    font-size: 16px;
  }
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }
  .person-card h3 {
    font-size: 16px;
  }
  .person-card p {
    font-size: 13px;
  }
  .contact-band {
    padding: 55px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid a,
  .contact-grid p {
    font-size: 16px;
  }
  .map-panel {
    min-height: 380px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .site-footer {
    font-size: 13px;
    padding-top: 45px;
  }
  .footer-grid h2 {
    font-size: 16px;
  }
  .footer-grid a {
    overflow-wrap: anywhere;
  }
  .footer-brand {
    height: 60px;
  }
  .profile {
    display: block;
  }
  .profile aside {
    width: 200px;
    margin-bottom: 25px;
  }
  .profile h2 {
    font-size: 27px;
  }
  .back-link {
    float: none;
    display: block;
    margin-bottom: 22px;
  }
  .media-tabs {
    font-size: 14px;
    gap: 24px;
  }
  .context-nav {
    padding-inline: 15px;
  }
  .context-nav a {
    font-size: 12px;
  }
  .context-nav > a:last-child {
    max-width: 60px;
    white-space: normal;
  }
  .review-label {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-title h1,
  .hero-title h2 {
    font-size: 29px;
  }
  .hero {
    height: 520px;
  }
  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .tile {
    min-height: 230px;
  }
  .tile-intro {
    grid-column: auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
@font-face {
  font-family: "F6 Sans";
  src: url("source-sans-3-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "F6 Sans";
  src: url("source-sans-3-latin-700-normal.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}
.projects-band,
.archive-band {
  background: var(--muted);
  padding: 90px 0;
}
.filters {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  text-transform: uppercase;
}
.filters a {
  text-decoration: none;
  padding-block: 12px;
}
.filters a[aria-current] {
  border-bottom: 2px solid var(--purple);
  color: var(--purple);
  font-weight: 700;
}
.project-group {
  padding: 50px 40px;
  border-bottom: 1px solid #d7d5da;
}
.project-group:last-child {
  border-bottom: 0;
}
.project-group h3 {
  margin-bottom: 22px;
}
.project {
  background: white;
  margin-bottom: 9px;
}
.project summary {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding: 9px 18px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  min-height: 44px;
}
.project summary::-webkit-details-marker {
  display: none;
}
.project summary span {
  font-size: 14px;
}
.project[open] summary span {
  transform: rotate(180deg);
}
.project-panel {
  padding: 25px 40px 65px;
}
.project-panel h4 {
  font-size: 30px;
  color: var(--purple);
  line-height: 1.2;
  margin: 0 0 20px;
  max-width: 85%;
}
.project-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-top: 30px;
}
.project-columns h5 {
  font-size: 15px;
  text-transform: uppercase;
  margin: 20px 0 12px;
}
.project-columns p {
  font-size: 17px;
}
.partner-group {
  padding: 65px 35px;
  border-bottom: 1px solid #eee;
}
.partner-group:last-child {
  border: 0;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 45px 0;
  margin-top: 45px;
}
.partner-card {
  border-right: 1px solid #ddd;
  min-height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 10px 18px;
}
.partner-card:nth-child(5n) {
  border: 0;
}
.partner-wordmark {
  font-size: 23px;
  font-weight: 700;
  color: #315869;
  line-height: 1.1;
}
.partner-card:nth-child(4n + 2) .partner-wordmark {
  color: #6d2b58;
}
.partner-card small {
  font-size: 11px;
  color: #635b6b;
  margin-top: 10px;
}
.partner-card img {
  max-height: 80px;
  width: 100%;
  object-fit: contain;
}
.partner-toggle {
  text-transform: uppercase;
  color: var(--purple);
  font-size: 14px;
}
.featured-section {
  padding-top: 40px;
}
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}
.article-images {
  min-width: 0;
}
.featured-image {
  position: relative;
}
.featured-image img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.enlarge {
  position: absolute;
  right: 0;
  top: 0;
  background: #080711bd;
  color: white;
  font-size: 30px;
}
.thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 15px;
}
.thumbnails button {
  padding: 0;
  opacity: 0.7;
}
.thumbnails button[aria-pressed="true"] {
  opacity: 1;
  outline: 3px solid var(--purple);
  outline-offset: 2px;
}
.thumbnails img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}
.article-copy h2 {
  font-size: 38px;
}
.article-copy p {
  font-size: 17px;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}
.article-meta button,
.article-meta a {
  font-size: 13px;
  color: var(--purple);
}
.article-disclosure > div {
  border: 0;
  padding: 0;
}
.article-disclosure {
  display: flex;
  flex-direction: column;
}
.article-disclosure > summary {
  padding-block: 10px;
}
.copy-status:empty {
  display: none;
}
.bio-goals .feature-photo {
  inset: 0 50% 0 0;
}
.bio-goals .feature-copy {
  margin-left: 52%;
  width: 48%;
  padding-right: 0;
}
.bio-goals:before {
  inset: 0 0 0 55%;
}
.bio-subsection {
  position: relative;
  min-height: 800px;
  padding: 90px 0;
  overflow: hidden;
}
.subsection-copy {
  width: 48%;
  padding-right: 40px;
}
.subsection-copy h3 {
  margin: 35px 0;
}
.subsection-copy p {
  font-size: 18px;
  line-height: 1.6;
}
.subsection-image {
  position: absolute;
  left: 56%;
  right: -15%;
  top: 0;
  bottom: 0;
}
.subsection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bio-subsection.reversed {
  background: var(--muted);
}
.bio-subsection.reversed .subsection-copy {
  margin-left: 52%;
  padding: 0;
}
.bio-subsection.reversed .subsection-image {
  left: -15%;
  right: 56%;
}
.pill {
  display: inline-block;
  border: 1px solid #85818b;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 30px;
  text-decoration: none;
  min-height: 44px;
}
.gallery-band {
  padding: 65px 0;
  background: var(--ink);
  color: white;
}
.gallery-band .section-heading {
  color: white;
}
.gallery-caption {
  font-size: 14px;
  color: #dad3e4;
}
.gallery-track {
  display: flex;
  gap: 36px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: #a77ad8 #fff;
  scrollbar-width: thin;
  padding: 10px 5px 30px;
}
.gallery-track > button {
  flex: 0 0 31%;
  min-width: 0;
  padding: 0;
  text-align: left;
  scroll-snap-align: start;
}
.gallery-track img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: contain;
  background: #191523;
}
.gallery-track span {
  font-size: 13px;
  display: block;
  padding-top: 12px;
}
.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.gallery-controls button {
  border: 1px solid #9991ac;
}
.publications-band {
  background: var(--purple);
  color: white;
  padding: 80px 0;
}
.publications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
}
.publications-band .section-heading {
  color: white;
}
.publications-band p {
  font-size: 17px;
}
@media (max-width: 1400px) {
  .project summary {
    font-size: 16px;
  }
  .project-columns p {
    font-size: 15px;
  }
  .project-panel h4 {
    font-size: 25px;
  }
  .project-group {
    padding: 40px;
  }
  .partner-wordmark {
    font-size: 19px;
  }
  .partner-card {
    padding: 10px;
  }
  .article-copy h2 {
    font-size: 30px;
  }
  .article-copy p {
    font-size: 16px;
  }
  .featured-article {
    gap: 35px;
  }
  .bio-subsection {
    min-height: 640px;
    padding: 75px 0;
  }
  .subsection-copy p {
    font-size: 16px;
  }
  .publications-band .section-heading {
    font-size: 24px;
  }
}
@media (max-width: 1100px) {
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .partner-card:nth-child(5n) {
    border-right: 1px solid #ddd;
  }
  .partner-card:nth-child(4n) {
    border: 0;
  }
  .project-group {
    padding-inline: 0;
  }
  .bio-subsection {
    min-height: 700px;
  }
  .section-top {
    flex-wrap: wrap;
  }
  .filters {
    gap: 14px;
  }
  .featured-article {
    gap: 25px;
  }
}
@media (max-width: 700px) {
  .projects-band,
  .archive-band {
    padding: 55px 0;
  }
  .project-group {
    padding: 30px 0;
  }
  .project summary {
    font-size: 16px;
    padding: 12px;
  }
  .project-panel {
    padding: 18px;
  }
  .project-panel h4 {
    font-size: 23px;
    max-width: 100%;
  }
  .project-columns {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 0;
  }
  .project-columns p {
    font-size: 16px;
  }
  .partner-group {
    padding: 35px 0;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
    margin-top: 25px;
  }
  .partner-card:nth-child(4n) {
    border: 0;
  }
  .partner-card:nth-child(2n) {
    border: 0;
  }
  .partner-wordmark {
    font-size: 18px;
    overflow-wrap: anywhere;
  }
  .featured-article {
    grid-template-columns: 1fr;
  }
  .article-copy h2 {
    font-size: 29px;
  }
  .article-copy p {
    font-size: 16px;
  }
  .thumbnails {
    gap: 10px;
  }
  .bio-goals .feature-photo {
    inset: 0 0 auto;
  }
  .bio-goals .feature-copy {
    width: 100%;
    margin: 0;
  }
  .bio-subsection {
    padding: 50px 0 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .subsection-copy,
  .bio-subsection.reversed .subsection-copy {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .subsection-image,
  .bio-subsection.reversed .subsection-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    order: 2;
    margin-top: 35px;
  }
  .gallery-track > button {
    flex-basis: 85%;
  }
  .gallery-track {
    gap: 22px;
  }
  .publications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .publications-band {
    padding: 55px 0;
  }
  .article-meta {
    flex-wrap: wrap;
  }
  .project-columns {
    overflow-wrap: anywhere;
  }
}
@media (min-width: 701px) {
  .carousel .hero-image {
    width: 86%;
    right: -14%;
  }
  .carousel .hero-title {
    width: 42%;
  }
  .hero-title h1,
  .hero-title h2 {
    font-size: clamp(30px, 3vw, 56px);
  }
}
.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"],
.contact-grid a[href^="tel:"],
.contact-grid a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}
@media (max-width: 700px) {
  .site-footer a,
  .contact-grid a {
    min-height: 44px;
    align-content: center;
  }
  .tile.purple a {
    min-height: 32px;
  }
}
.section-top > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
.gallery-track {
  padding-inline: 0;
}
@font-face {
  font-family: "F6 Sans";
  src: url("source-sans-3-latin-ext-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02FF, U+1E00-1EFF;
}
@font-face {
  font-family: "F6 Sans";
  src: url("source-sans-3-latin-ext-700-normal.woff2") format("woff2");
  font-weight: 700 900;
  font-display: swap;
  unicode-range: U+0100-02FF, U+1E00-1EFF;
}
.footer-brand img {
  height: 60px;
  width: 250px;
  object-fit: contain;
  object-position: left;
}

/* Review typography: keep desktop labels prominent without crowding the masthead. */
.masthead nav > a,
.masthead nav > button {
  font-size: 20px;
  min-height: 44px;
}
.context-nav {
  font-size: 14px;
}
.context-nav strong {
  font-size: 18px;
}
@media (min-width: 1101px) and (max-width: 1650px) {
  .masthead {
    padding: 0 20px;
    gap: 16px;
  }
  .brand {
    width: 200px;
  }
  .masthead nav {
    gap: 14px;
  }
  .masthead nav > a,
  .masthead nav > button {
    white-space: normal;
    line-height: 1.1;
  }
  .search-form {
    width: 120px;
    flex-shrink: 0;
  }
  .search-form input {
    width: 76px;
  }
}
@media (max-width: 1100px) {
  .masthead nav > a,
  .masthead nav > button {
    font-size: 18px;
  }
  .mega-menu {
    top: 460px;
  }
}
.f6-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.12em;
  margin-inline: 0.3em;
  transition: transform 0.15s ease;
}
.icon-left {
  transform: rotate(90deg);
}
.icon-right {
  transform: rotate(-90deg);
}
.icon-up {
  transform: rotate(180deg);
}
[aria-expanded="true"] > .icon-down,
details[open] > summary > .icon-down {
  transform: rotate(180deg);
}
summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.detail-back {
  padding-top: 24px;
}
.detail-back a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.profile,
.detail-article {
  padding-top: 24px;
}
.profile h1,
.detail-article h1 {
  font-size: clamp(28px, 3vw, 42px);
}
.map-panel {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.map-panel iframe {
  width: 100%;
  height: 420px;
  border: 0;
}
.map-caption {
  position: static;
  padding: 24px;
}
@media (prefers-reduced-motion: reduce) {
  .f6-icon {
    transition: none;
  }
}

.partner-logo[src$="/inea.svg"] {
  background: #173e4c;
  padding: 16px;
}
#main-nav > a,
#main-nav > button {
  display: flex;
  align-items: center;
}
#main-nav .f6-icon {
  margin-inline: 0.25em 0;
}
