@font-face {
  font-family: "Roboto Local";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/roboto-v30-latin-100.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto Local";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-v30-latin-300.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto Local";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto Local";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v30-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto Local";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v30-latin-700.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans Local";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v35-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans Local";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v35-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans Local";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v35-latin-700.woff2") format("woff2");
}

:root {
  --hue: 246deg;
  --page-width: 68rem;
  --page-bg: #fff;
  --paper: #fff;
  --ink: rgba(0, 0, 0, .9);
  --muted: rgba(0, 0, 0, .5);
  --faint: rgba(0, 0, 0, .1);
  --ucla-blue: #2774ae;
  --ucla-blue-dark: #165f96;
  --ucla-gold: #ffd100;
  --blue: var(--ucla-blue);
  --red: #b42318;
  --nav-bg: rgba(255, 255, 255, .9);
  --shadow: 0 16px 38px rgba(22, 95, 150, .12);
  --body-font: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color .15s ease;
}

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

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

h1,
h2,
h3 {
  color: rgba(0, 0, 0, .86);
  line-height: 1.3;
  font-weight: 500;
}

h1 {
  font-size: 2rem;
  margin: 0 0 1rem;
}

h2 {
  font-size: 1.45rem;
  margin: 2.2rem 0 1rem;
}

h3 {
  font-size: 1.05rem;
  margin: 0 0 .4rem;
}

p {
  margin: 0 0 1rem;
}

.fixed-nav {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.navbar-wrapper {
  backdrop-filter: blur(10px) saturate(145%);
  -webkit-backdrop-filter: blur(10px) saturate(145%);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .035);
}

.navbar-inner {
  align-items: center;
  display: flex;
  height: 3.5rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--page-width);
  padding: 0 1rem;
}

.brand {
  align-items: center;
  color: #000;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  gap: .55rem;
  min-width: 0;
}

.brand:hover {
  color: #000;
}

.brand img {
  background: #fff;
  border: 1px solid rgba(39, 116, 174, .14);
  border-radius: 6px;
  height: 2rem;
  object-fit: contain;
  padding: .18rem;
  width: 2rem;
}

.nav-links {
  display: flex;
  gap: .25rem;
}

.nav-links a {
  border-radius: .35rem;
  color: rgba(0, 0, 0, .56);
  font-size: .95rem;
  font-weight: 400;
  padding: .45rem .7rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(39, 116, 174, .08);
  color: var(--ucla-blue-dark);
}

.mobile-menu {
  background: transparent;
  border: 0;
  color: rgba(0, 0, 0, .75);
  cursor: pointer;
  display: none;
  font: inherit;
  padding: .45rem .6rem;
}

main {
  padding-top: 3.5rem;
}

.content-wrapper {
  animation: fade-in-up .45s both;
  margin: 0 auto;
  max-width: var(--page-width);
  padding: 2rem 1rem 1rem;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.section-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  margin: 2.5rem 0;
}

.hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  margin-bottom: 2rem;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: .5rem;
}

.hero-copy h1 {
  font-size: 2.25rem;
  margin-bottom: .85rem;
}

.hero-copy p {
  color: rgba(0, 0, 0, .74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.25rem;
}

.text-link {
  background: #fff;
  border: 1px solid rgba(39, 116, 174, .22);
  border-radius: 999px;
  color: var(--ucla-blue-dark);
  display: inline-flex;
  font-size: .95rem;
  font-weight: 500;
  justify-content: center;
  padding: .38rem 1.05rem;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.text-link:hover {
  background: rgba(39, 116, 174, .06);
  border-color: rgba(39, 116, 174, .38);
  color: var(--ucla-blue);
}

.teaser {
  background: var(--paper);
  border: 1px solid var(--faint);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.teaser-frame {
  aspect-ratio: 16 / 10;
  background: #f3f4f6;
  position: relative;
}

.teaser-slide {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .45s ease;
}

.teaser-slide.active {
  opacity: 1;
}

.teaser-slide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.teaser-caption {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .9rem 1rem;
}

.teaser-title {
  color: var(--blue);
  font-weight: 700;
  margin: 0;
}

.teaser-meta {
  color: var(--muted);
  font-size: .84rem;
  margin: .15rem 0 0;
}

.teaser-controls {
  align-items: center;
  display: flex;
  gap: .4rem;
}

.icon-btn {
  align-items: center;
  background: #f6f7f9;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 5px;
  color: rgba(0, 0, 0, .72);
  cursor: pointer;
  display: inline-flex;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.icon-btn:hover {
  border-color: rgba(220, 38, 38, .28);
  color: var(--red);
}

.vision-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.theme-list {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
  margin: .3rem 0 0;
}

.theme-item {
  border-left: 3px solid rgba(29, 78, 216, .38);
  padding: .15rem 0 .2rem .9rem;
}

.theme-item strong {
  display: block;
}

.theme-item span {
  color: rgba(0, 0, 0, .68);
}

.news-section ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.news-section li {
  line-height: 1.52;
  margin-bottom: .32rem;
  padding-left: 6.8rem;
  position: relative;
}

.news-section li.is-hidden {
  display: none;
}

.news-section li > strong:first-child {
  color: rgba(0, 0, 0, .3);
  font-weight: 400;
  left: 0;
  position: absolute;
  text-align: right;
  width: 5.2rem;
}

.show-more-button {
  appearance: none;
  background: #fff;
  border: 1px solid rgba(39, 116, 174, .22);
  border-radius: 999px;
  color: var(--ucla-blue-dark);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  justify-content: center;
  margin: .85rem auto 0;
  padding: .38rem 1.05rem;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.show-more-button:hover {
  background: rgba(39, 116, 174, .06);
  border-color: rgba(39, 116, 174, .38);
  color: var(--ucla-blue);
}

.show-more-button[hidden] {
  display: none;
}

.highlights-grid,
.research-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card,
.research-card {
  background: var(--paper);
  border: 1px solid var(--faint);
  border-radius: 6px;
  color: inherit;
  display: block;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.highlight-card:hover,
.research-card:hover {
  box-shadow: var(--shadow);
  color: inherit;
  transform: translateY(-2px);
}

.highlight-thumb,
.research-thumb {
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
  overflow: hidden;
}

.highlight-thumb img,
.research-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.highlight-body,
.research-body {
  padding: .9rem 1rem 1rem;
}

.highlight-body h3,
.research-body h3 {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
}

.highlight-card:hover h3,
.research-card:hover h3 {
  color: var(--red);
}

.venue,
.card-note {
  color: var(--muted);
  font-size: .86rem;
  margin: 0;
}

.page-kicker {
  color: var(--muted);
  max-width: none;
}

.research-overview-grid {
  display: grid;
  gap: 1.5rem 1.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.overview-card {
  border-left: 4px solid rgba(39, 116, 174, .42);
  padding: .12rem 0 .2rem 1rem;
}

.overview-card h3 {
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .35rem;
}

.overview-card h3 a {
  color: var(--blue);
}

.overview-card p {
  color: rgba(0, 0, 0, .68);
  font-size: .95rem;
  line-height: 1.45;
  margin: 0;
}

.research-direction {
  background: rgba(0, 0, 0, .025);
  border-radius: 6px;
  margin-top: 1.6rem;
  padding: 1.25rem;
  scroll-margin-top: 4.5rem;
}

.research-direction:first-of-type {
  margin-top: 1.2rem;
}

.direction-header {
  margin-bottom: .95rem;
}

.direction-header h3 {
  color: var(--blue);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: .35rem;
}

.direction-header p {
  color: rgba(0, 0, 0, .72);
  line-height: 1.52;
  margin: 0;
  max-width: none;
}

.project-highlight-grid {
  display: grid;
  gap: 1rem 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  background: var(--paper);
  border: 1px solid var(--faint);
  border-radius: 6px;
  display: grid;
  gap: .85rem;
  grid-template-columns: 5.8rem minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  padding: .62rem;
  transition: box-shadow .2s ease, transform .2s ease;
}

.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.project-thumb {
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
  border-radius: 4px;
  display: block;
  height: 5.8rem;
  overflow: hidden;
  width: 5.8rem;
}

.project-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: .1rem .2rem .1rem .15rem;
}

.project-body h4 {
  color: #111827;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 .28rem;
}

.project-body p {
  color: rgba(0, 0, 0, .62);
  font-size: .8rem;
  line-height: 1.35;
  margin: 0 0 .5rem;
}

.project-link {
  align-items: center;
  border: 1px solid rgba(39, 116, 174, .26);
  border-radius: 4px;
  color: var(--blue);
  display: inline-flex;
  font-size: .76rem;
  font-weight: 400;
  margin-top: auto;
  padding: .18rem .56rem;
  width: fit-content;
}

.project-link:hover {
  border-color: rgba(39, 116, 174, .42);
  color: var(--blue);
  opacity: .72;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0 2rem;
}

.filter-btn {
  background: #fff;
  border: 1px solid rgba(39, 116, 174, .45);
  border-radius: 5px;
  color: rgba(0, 0, 0, .75);
  cursor: pointer;
  font: inherit;
  font-size: .88rem;
  font-weight: 400;
  padding: .45rem .7rem;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--ucla-blue-dark);
  color: var(--ucla-blue-dark);
}

.filter-btn.active {
  background: var(--ucla-blue-dark);
  border-color: var(--ucla-blue-dark);
  color: #fff;
}

.year-block {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.year-block + .year-block {
  margin-top: 1rem;
}

.year-heading {
  color: rgba(0, 0, 0, .45);
  font-size: 1.65rem;
  font-weight: 700;
  margin: .75rem 0 .4rem;
  text-align: left;
}

.pub-list {
  display: grid;
  gap: 1.1rem;
}

.pub-card {
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
}

.pub-venue-banner {
  align-items: center;
  background: var(--blue);
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-size: .74rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  height: 1.22rem;
  padding: 0 .42rem;
  text-align: center;
  width: 100%;
}

.pub-body {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: .9rem;
}

.pub-media {
  display: flex;
  flex-direction: column;
  gap: .38rem;
}

.pub-figure {
  background: #f3f4f6;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
  display: block;
  overflow: hidden;
}

.pub-body > div:not(.pub-media) {
  min-width: 0;
}

.pub-figure img {
  display: block;
  height: auto;
  max-height: 15rem;
  object-fit: contain;
  width: 100%;
}

.pub-title {
  color: var(--blue);
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: .35rem;
}

.pub-title:hover {
  color: var(--red);
}

.pub-authors {
  color: rgba(0, 0, 0, .78);
  font-size: .88rem;
  margin-bottom: .4rem;
}

.lab-member {
  border-bottom: 1px solid rgba(0, 0, 0, .65);
  font-weight: inherit;
}

.pub-meta {
  color: rgba(30, 58, 138, .8);
  display: block;
  font-size: .82rem;
  font-weight: 400;
}

.pub-meta .pub-venue {
  color: rgba(0, 0, 0, .78);
  display: block;
  font-size: .92rem;
  font-weight: 400;
  margin-bottom: .55rem;
}

.pub-meta .pub-venue em {
  font-style: italic;
}

.pub-meta .venue-name {
  font-weight: 600;
}

.pub-achievement {
  color: var(--red);
  display: block;
  font-size: .88rem;
  font-style: normal;
  font-weight: 500;
  margin: -.28rem 0 .55rem;
}

.pub-links {
  display: flex;
  flex-wrap: wrap;
  gap: .52rem .85rem;
}

.pub-links a {
  align-items: center;
  border: 1px solid rgba(39, 116, 174, .28);
  border-radius: 4px;
  color: var(--blue);
  display: inline-flex;
  gap: .22rem;
  font-size: .76rem;
  font-weight: 300;
  line-height: 1.25;
  padding: .2rem .48rem;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.pub-links a:hover {
  background: rgba(39, 116, 174, .06);
  border-color: rgba(39, 116, 174, .45);
  color: var(--ucla-blue-dark);
}

.pub-links a::before {
  display: inline-block;
  font-size: .95rem;
  line-height: 1;
}

.pub-link-paper::before {
  content: "📄";
}

.pub-link-project::before {
  content: "🌐";
}

.pub-link-code::before {
  content: "💻";
}

.pub-link-talk::before {
  content: "🎬";
}

.pub-link-blog::before {
  content: "📝";
}

.pub-link-news::before {
  content: "📣";
}

.pub-link-model::before {
  content: "🤗";
}

.member-section {
  margin-bottom: 2.8rem;
}

.role {
  color: var(--muted);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .9rem;
}

.member-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fill, 180px);
  justify-content: start;
}

.member-card {
  color: inherit;
  display: block;
  width: 180px;
}

.member-profile {
  color: inherit;
  display: block;
}

a.member-card:hover,
.member-profile:hover {
  color: inherit;
}

a.member-card:hover h3,
.member-profile:hover h3 {
  color: var(--ucla-blue);
}

.member-photo {
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
  border-radius: 4px;
  margin: 0 auto;
  overflow: hidden;
  width: 160px;
}

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

.member-card h3 {
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 500;
  margin: .7rem 0 .1rem;
  text-align: center;
}

.member-card .role {
  font-size: .92rem;
  margin: 0;
  text-align: center;
}

.member-grid-empty {
  display: block;
}

.team-placeholder,
.alumni-list {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

.alumni-list {
  padding-left: 1.2rem;
}

.alumni-list li {
  margin-bottom: .4rem;
}

.alumni-list a {
  color: var(--blue);
  font-weight: 500;
}

.sponsor-grid {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2.35rem;
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.sponsor-card {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 5.5rem;
  text-align: center;
  width: auto;
}

.sponsor-card img {
  display: block;
  height: auto;
  max-height: 4.8rem;
  max-width: 12rem;
  object-fit: contain;
}

.sponsor-card-nsf img {
  max-width: 13rem;
}

.sponsor-card-amazon img {
  max-width: 8.8rem;
}

.sponsor-card-anthropic img {
  max-width: 8.6rem;
}

.sponsor-card-medium img {
  max-height: 3.6rem;
  max-width: 8.5rem;
}

.sponsor-card-openai img {
  max-height: 2.9rem;
  max-width: 7.8rem;
}

.sponsor-intro {
  color: rgba(0, 0, 0, .82);
  font-size: 1.05rem;
  font-weight: 350;
  margin: 0;
}

.join-section {
  margin-bottom: 2rem;
}

.email-subject {
  background: rgba(39, 116, 174, .08);
  border: 1px solid rgba(39, 116, 174, .2);
  border-radius: 4px;
  color: var(--ucla-blue-dark);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .92em;
  padding: .08rem .28rem;
}

.contact-email {
  color: var(--blue);
}

.take-home-test {
  border-left: 3px solid rgba(39, 116, 174, .32);
  margin: .85rem 0 1rem;
  padding-left: .9rem;
}

.take-home-test summary {
  color: var(--ucla-blue-dark);
  cursor: pointer;
  font-weight: 500;
}

.take-home-test p {
  margin: .75rem 0 0;
}

.join-banner {
  border-radius: 6px;
  height: auto;
  margin: 1.35rem auto 1.6rem;
  width: 75%;
}

.lab-identity {
  margin: 0 auto;
  max-width: var(--page-width);
  padding: 3rem 1rem 1.15rem;
  text-align: center;
  width: 100%;
}

.identity-lockup {
  align-items: center;
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 0 auto .8rem;
  white-space: nowrap;
}

.ucla-wordmark {
  height: 3.35rem;
  margin-right: .8rem;
  max-width: 12.8rem;
  object-fit: contain;
}

.hail-mark {
  height: 3.35rem;
  margin-right: 1.8rem;
  object-fit: contain;
  width: auto;
}

.lab-identity h1 {
  color: #111827;
  font-size: clamp(2rem, 4.5vw, 3.05rem);
  font-weight: 700;
  margin: 0;
  overflow-wrap: anywhere;
}

.lab-tagline {
  color: rgba(0, 0, 0, .36);
  font-size: 1.03rem;
  font-weight: 400;
  margin: 0 auto;
  max-width: 48rem;
}

.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
}

.social-links {
  margin-top: 1rem;
  padding: 0 .75rem;
  gap: 1rem;
}

.social-links a {
  align-items: center;
  color: rgba(0, 0, 0, .64);
  display: inline-flex;
  font-weight: 400;
  height: 1.65rem;
  justify-content: center;
  width: 1.65rem;
}

.social-links img {
  height: 1.35rem;
  object-fit: contain;
  width: 1.35rem;
}

.emoji-icon {
  display: inline-block;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.38rem;
  line-height: 1;
}

.social-links a:hover {
  opacity: .72;
  color: var(--ucla-blue-dark);
}

.carousel-band {
  margin: .95rem auto 3rem;
  max-width: 58rem;
  position: relative;
  width: calc(100% - 2rem);
}

.carousel-shell {
  background: #fff;
  border: 1px solid rgba(39, 116, 174, .12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 485px;
  overflow: hidden;
  position: relative;
}

.carousel-shell .teaser-slide {
  align-items: center;
  color: inherit;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
  inset: 0;
  margin: 0 auto;
  opacity: 0;
  padding: 2rem 4rem;
  pointer-events: none;
  position: absolute;
  transition: opacity .45s ease, visibility .45s ease;
  visibility: hidden;
  width: 100%;
}

.carousel-shell .teaser-slide.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.carousel-shell .teaser-slide:hover {
  color: inherit;
}

.teaser-media {
  align-self: stretch;
  background: #eef4f9;
  border: 1px solid rgba(39, 116, 174, .12);
  border-radius: 6px;
  margin-block: 1rem;
  min-height: 0;
  overflow: hidden;
}

.teaser-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.teaser-copy {
  min-width: 0;
  padding-right: .75rem;
}

.teaser-kicker {
  color: var(--ucla-blue-dark);
  font-size: .85rem;
  font-weight: 300;
  margin-bottom: .45rem;
}

.teaser-copy h2 {
  color: #111827;
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0 0 .85rem;
  overflow-wrap: anywhere;
}

.teaser-copy p {
  color: rgba(0, 0, 0, .46);
  font-size: 1rem;
  font-weight: 300;
}

.learn-more {
  border: 1px solid rgba(39, 116, 174, .32);
  border-radius: 4px;
  color: var(--ucla-blue-dark);
  display: inline-flex;
  font-size: .95rem;
  font-weight: 500;
  margin-top: .35rem;
  padding: .34rem .62rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.learn-more:hover {
  background: rgba(39, 116, 174, .08);
  border-color: rgba(39, 116, 174, .56);
  color: var(--ucla-blue-dark);
}

.carousel-arrow {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .13);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .12);
  color: var(--ucla-blue);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 300;
  height: 2.6rem;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.55rem;
  z-index: 3;
}

.carousel-arrow .arrow-glyph {
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -.1em;
  transform: scaleY(1.5);
  transform-origin: center;
}

.carousel-arrow:hover {
  background: #fff;
  color: var(--ucla-blue-dark);
}

.carousel-arrow-prev {
  left: 1rem;
}

.carousel-arrow-next {
  right: 1rem;
}

.carousel-dots {
  align-items: center;
  bottom: 1.05rem;
  display: flex;
  gap: .45rem;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 4;
}

.carousel-dots button {
  background: rgba(39, 116, 174, .28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: .48rem;
  padding: 0;
  width: .48rem;
}

.carousel-dots button.active {
  background: var(--ucla-blue);
}

.home-content {
  padding-top: 0;
}

.intro-sentence {
  color: rgba(0, 0, 0, .9);
  font-size: 1.08rem;
  font-weight: 350;
  line-height: 1.55;
  margin: 0 0 1.2rem;
  max-width: none;
}

.vision-list {
  color: rgba(0, 0, 0, .9);
  font-weight: 350;
  line-height: 1.46;
  list-style: none;
  margin: 0 0 2.15rem;
  padding: 0;
}

.vision-list li {
  margin-bottom: .34rem;
}

.home-content section {
  margin-top: 2.35rem;
}

.home-content h2 {
  color: #111827;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.four-up {
  gap: 1.45rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.25rem auto 0;
  max-width: 61.5rem;
  padding: 0 1.15rem;
}

.four-up .highlight-body h3 {
  font-size: .92rem;
  line-height: 1.35;
}

.home-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3.35rem;
  justify-content: center;
  margin-top: 1.95rem;
}

footer {
  margin: 2.5rem auto 3rem;
  max-width: var(--page-width);
  padding: 0 1rem;
}

hr.dashed {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  margin: 2.5rem 8rem;
}

.copyright {
  color: rgba(0, 0, 0, .5);
  font-size: .86rem;
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .hero,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .carousel-shell {
    height: 630px;
    min-height: 0;
  }

  .carousel-shell .teaser-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 18rem auto;
    padding: 1.5rem 3.25rem 2rem;
  }

  .teaser-copy {
    padding-right: 0;
  }

  .highlights-grid,
  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-grid {
    grid-template-columns: repeat(auto-fill, 180px);
  }

  .pub-body {
    grid-template-columns: 140px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .navbar-inner {
    align-items: flex-start;
    height: auto;
    min-height: 3.5rem;
    padding: .9rem 1rem;
  }

  .brand {
    max-width: calc(100% - 4.8rem);
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu {
    display: block;
  }

  .nav-links {
    background: var(--nav-bg);
    display: none;
    flex-direction: column;
    left: 0;
    padding: .5rem 1rem 1rem;
    position: absolute;
    right: 0;
    top: 3.5rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .lab-identity {
    padding: 2rem .75rem 1.4rem;
  }

  .identity-lockup {
    gap: 0;
  }

  .ucla-wordmark {
    height: 1.6rem;
    margin-right: .2rem;
    max-width: 6rem;
  }

  .hail-mark {
    height: 1.6rem;
    margin-right: .55rem;
    width: auto;
  }

  .lab-identity h1 {
    font-size: clamp(.86rem, 3.25vw, 1rem);
    line-height: 1.12;
    margin: 0;
    max-width: none;
  }

  .lab-tagline {
    font-size: .95rem;
    max-width: 20rem;
  }

  .social-links {
    gap: .55rem .7rem;
    max-width: 22rem;
    padding: 0 .4rem;
  }

  .social-links a {
    height: 1.65rem;
    width: 1.65rem;
  }

  .social-links img {
    height: 1.32rem;
    width: 1.32rem;
  }

  .emoji-icon {
    font-size: 1.34rem;
  }

  .carousel-band {
    margin-bottom: 2rem;
  }

  .carousel-shell {
    height: 610px;
    min-height: 0;
  }

  .carousel-shell .teaser-slide {
    grid-template-rows: 14rem auto;
    padding: 1rem 2.35rem 2.2rem;
  }

  .teaser-copy,
  .teaser-copy h2,
  .teaser-copy p,
  .intro-sentence,
  .vision-list {
    max-width: 22rem;
  }

  .carousel-arrow {
    font-size: 1.08rem;
    height: 2.35rem;
    top: 13rem;
    width: 2.35rem;
  }

  .carousel-arrow-prev {
    left: .35rem;
  }

  .carousel-arrow-next {
    right: .35rem;
  }

  .highlights-grid,
  .research-grid,
  .research-overview-grid,
  .project-highlight-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .member-grid {
    grid-template-columns: repeat(auto-fill, 180px);
  }

  .pub-body {
    grid-template-columns: 1fr;
  }

  .news-section li {
    padding-left: 0;
  }

  .news-section li > strong:first-child {
    display: block;
    position: static;
    text-align: left;
    width: auto;
  }

  hr.dashed {
    margin: 2rem 2rem;
  }
}
