:root {
  --navy-950: #101925;
  --navy-900: #1a2332;
  --navy-800: #243247;
  --teal-500: #2d8b8b;
  --teal-300: #7bb8b6;
  --seafoam-200: #d8efef;
  --cream-50: #f7f6f1;
  --cream-100: #f1faee;
  --ink-900: #17202c;
  --ink-700: #425466;
  --ink-500: #68778c;
  --shadow: 0 20px 50px rgba(13, 21, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink-900);
  background: #f3f2ec;
}

body.home {
  background: #f3f2ec;
}

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

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: #132032;
  border-bottom: 1px solid rgba(168, 218, 220, 0.08);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--cream-50);
}

.brand-mark {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-300);
}

.brand-name,
h1,
h2,
h3,
h4,
.numeric {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-name {
  font-size: 1.08rem;
  line-height: 1.1;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(247, 246, 241, 0.88);
  font-size: 0.96rem;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.nav a.active {
  color: white;
  border-color: var(--teal-300);
}

.hero,
.page-hero {
  color: var(--cream-50);
}

.hero {
  padding: 68px 0 92px;
  background: linear-gradient(180deg, #132032 0, #111824 100%);
}

body.home .hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  max-width: 14ch;
}

.page-hero {
  padding: 44px 0 52px;
  background: linear-gradient(180deg, #132032 0, #111824 100%);
}

.hero-grid,
.page-hero-grid,
.section-header,
.split-layout,
.feature-layout {
  display: grid;
  gap: 28px;
}

.hero-grid,
.page-hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
}

.hero-grid {
  align-items: start;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(168, 218, 220, 0.18);
  border-radius: 999px;
  color: var(--seafoam-200);
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.hero p,
.page-hero p {
  max-width: 60ch;
  line-height: 1.75;
}

.hero p {
  color: rgba(247, 246, 241, 0.84);
  font-size: 1.06rem;
}

.hero-media-carousel {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.hero-media-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(168, 218, 220, 0.16);
  border-radius: 8px;
  background: #07111f;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.hero-media-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.hero-media-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-media-slide img,
.hero-media-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-slide figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(168, 218, 220, 0.16);
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.74);
  color: var(--cream-50);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-media-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 246, 241, 0.88);
  color: var(--navy-900);
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-media-control.prev {
  left: 12px;
}

.hero-media-control.next {
  right: 12px;
}

.hero-media-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
  min-width: 0;
}

.hero-media-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.hero-media-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(216, 239, 239, 0.32);
  cursor: pointer;
}

.hero-media-dots button.is-active {
  background: var(--seafoam-200);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  max-width: 14ch;
}

.page-hero p {
  color: rgba(247, 246, 241, 0.82);
  max-width: 54ch;
}

.page-hero .hero-inline-link {
  color: var(--cream-50);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(168, 218, 220, 0.75);
  text-underline-offset: 4px;
}

.cta-row,
.meta-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-row {
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-align: center;
}

.button.primary {
  background: var(--navy-800);
  color: white;
}

.button.secondary {
  background: var(--cream-50);
  border-color: rgba(26, 35, 50, 0.12);
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(13, 21, 31, 0.12);
}

.panel,
.card,
.student-card,
.quote-card {
  background: white;
  border: 1px solid rgba(26, 35, 50, 0.08);
  box-shadow: var(--shadow);
}

.panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(36, 50, 71, 0.94), rgba(16, 25, 37, 0.98));
  border-color: rgba(168, 218, 220, 0.14);
  color: var(--cream-50);
  align-self: start;
  margin-top: 12px;
}

.panel h3,
.panel h4 {
  color: var(--cream-50);
}

.panel p,
.panel li {
  color: rgba(247, 246, 241, 0.82);
  line-height: 1.65;
}

.panel ul,
.panel ol {
  color: rgba(247, 246, 241, 0.88);
}

.panel .plain-list li,
.panel .timeline li {
  color: rgba(247, 246, 241, 0.88);
}

.hero .panel .plain-list li,
.page-hero .panel .plain-list li,
.hero .panel .timeline li,
.page-hero .panel .timeline li {
  background: rgba(247, 246, 241, 0.06);
  border: 1px solid rgba(168, 218, 220, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
}

.panel .plain-list li a,
.panel .timeline li a {
  color: var(--cream-50);
}

.panel li::marker {
  color: rgba(123, 184, 182, 0.95);
}

.panel a {
  color: var(--cream-50);
  text-decoration: underline;
  text-decoration-color: rgba(168, 218, 220, 0.5);
  text-underline-offset: 3px;
}

.hero .button.secondary,
.page-hero .button.secondary,
.card.dark .button.secondary,
.panel .button.secondary {
  background: var(--cream-50);
  border-color: rgba(168, 218, 220, 0.22);
  color: var(--navy-900);
  text-decoration: none;
}

main {
  padding-bottom: 64px;
}

body.research-page {
  background: #f3f2ec;
}

body.research-page .page-hero {
  padding: 52px 0 76px;
}

body.research-index-page .page-hero h1 {
  font-size: clamp(2.8rem, 5.8vw, 4.7rem);
  line-height: 0.96;
  max-width: 10ch;
}

body.research-index-page .page-hero-grid > div > p {
  font-size: 1.06rem;
  line-height: 1.72;
  max-width: 34ch;
  text-align: justify;
  text-justify: inter-word;
  text-wrap: pretty;
  hyphens: auto;
}

section {
  padding: 38px 0;
}

.section-header {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  margin-bottom: 24px;
}

.section-kicker {
  color: var(--navy-800);
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--navy-900);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  color: var(--navy-900);
}

h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.lede,
.section-copy,
.card p,
.card li,
.list li,
.student-copy p,
.panel-copy,
.quote-card p {
  color: var(--ink-700);
  line-height: 1.72;
}

.grid-2,
.grid-3,
.grid-4,
.student-grid,
.list-grid {
  display: grid;
  gap: 18px;
}

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

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

.grid-4,
.student-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card,
.quote-card {
  padding: 24px;
}

.card.dark {
  background: var(--navy-900);
  border-color: rgba(168, 218, 220, 0.14);
}

.card.dark h3,
.card.dark p,
.card.dark li,
.card.dark .numeric {
  color: var(--cream-50);
}

.numeric {
  font-size: 4rem;
  line-height: 0.88;
  margin-bottom: 12px;
}

.portfolio-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-domain {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(45, 139, 139, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(216, 239, 239, 0.32));
  box-shadow: var(--shadow);
}

.portfolio-domain-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(45, 139, 139, 0.18);
}

.portfolio-domain-number {
  color: var(--teal-500);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.portfolio-domain h3 {
  margin: 0;
}

.portfolio-domain p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.portfolio-topic-list {
  display: grid;
  gap: 9px;
  margin-top: 4px;
}

.portfolio-topic-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(45, 139, 139, 0.16);
  border-radius: 8px;
  background: rgba(247, 246, 241, 0.78);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.portfolio-topic-list a:hover,
.portfolio-topic-list a:focus-visible {
  background: var(--seafoam-200);
  border-color: var(--teal-500);
  transform: translateY(-1px);
  outline: none;
}

.portfolio-topic-list span {
  min-width: 0;
  line-height: 1.35;
}

.portfolio-topic-list strong {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 30px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--cream-50);
  font-size: 0.9rem;
}

.student-card {
  overflow: hidden;
}

.student-photo {
  aspect-ratio: 4 / 4.7;
  background: linear-gradient(180deg, rgba(45, 139, 139, 0.18), rgba(26, 35, 50, 0.08));
}

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

.research-contributor-grid {
  align-items: stretch;
}

.research-contributor-card .student-copy {
  min-height: 132px;
}

.student-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(45, 139, 139, 0.18), rgba(26, 35, 50, 0.1));
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
}

.student-copy {
  padding: 18px;
}

.student-role {
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.student-project {
  font-size: 0.95rem;
}

.student-citation,
.student-empty {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-700);
  margin-top: 10px;
}

.student-citation strong {
  color: var(--navy-900);
}

.student-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.student-links a {
  color: var(--navy-800);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.teaching-carousel {
  padding: 24px;
  background: linear-gradient(180deg, #fff 0%, #eef3f4 100%);
  border: 1px solid rgba(26, 35, 50, 0.08);
  box-shadow: var(--shadow);
}

.teaching-carousel-stage {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #dde8ea;
  min-height: 320px;
}

.teaching-carousel-slides {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 320px;
}

.teaching-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.teaching-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

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

.teaching-slide figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(16, 25, 37, 0.7);
  color: var(--cream-50);
  font-size: 0.94rem;
  line-height: 1.5;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 246, 241, 0.92);
  color: var(--navy-900);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(13, 21, 31, 0.16);
}

.carousel-control.prev {
  left: 16px;
}

.carousel-control.next {
  right: 16px;
}

.teaching-carousel-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.teaching-carousel-status {
  color: var(--ink-700);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.teaching-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 50, 71, 0.18);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--teal-500);
}

.teaching-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(26, 35, 50, 0.08);
  box-shadow: var(--shadow);
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #0f1722;
}

.video-frame iframe,
.video-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-link-card {
  position: relative;
  display: block;
}

.video-link-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 25, 37, 0.04), rgba(16, 25, 37, 0.35));
}

.video-play-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(13, 21, 31, 0.22);
}

.video-play-badge::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--teal-500);
}

.teaching-video-copy {
  align-self: center;
}

.teaching-video-copy p {
  color: var(--ink-700);
  line-height: 1.72;
}

.philosophy-journey {
  display: grid;
  gap: 26px;
}

.philosophy-goal-card,
.philosophy-waypoint,
.philosophy-line-card {
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
  box-shadow: var(--shadow);
}

.philosophy-goal-card {
  padding: 34px;
  text-align: center;
}

.philosophy-goal-card blockquote {
  max-width: 900px;
  margin: 12px auto 0;
  color: var(--ink-700);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  line-height: 1.72;
}

.philosophy-scrolly {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.philosophy-rail {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 10px;
  padding-left: 38px;
}

.philosophy-rail::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 14px;
  border-left: 1px dashed rgba(45, 139, 139, 0.42);
}

.philosophy-plane {
  position: absolute;
  top: 9px;
  left: 0;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(45, 139, 139, 0.26);
  border-radius: 999px;
  background: var(--cream-50);
  box-shadow: 0 8px 20px rgba(13, 21, 31, 0.12);
  transform: translateY(var(--plane-y, 0px));
  transition: transform 240ms ease;
  z-index: 1;
}

.philosophy-plane svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 5px auto 0;
  transform: rotate(180deg);
  fill: var(--navy-900);
}

.rail-node {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--navy-900);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.rail-node span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(45, 139, 139, 0.1);
  color: var(--teal-500);
  font-family: Georgia, "Times New Roman", serif;
}

.rail-node:hover,
.rail-node:focus-visible {
  border-color: var(--teal-500);
  outline: none;
  transform: translateX(3px);
}

.rail-node.is-active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--cream-50);
}

.rail-node.is-active span {
  background: var(--teal-300);
  color: var(--navy-950);
}

.philosophy-waypoints {
  display: grid;
  gap: 22px;
}

.philosophy-waypoint {
  padding: 34px;
  opacity: 0.72;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.philosophy-waypoint.is-active {
  border-color: rgba(45, 139, 139, 0.28);
  opacity: 1;
  transform: translateY(-2px);
}

.wp-eyebrow {
  margin-bottom: 10px;
  color: var(--ink-500);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.philosophy-waypoint h3 {
  margin: 0 0 18px;
  color: var(--navy-900);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.philosophy-mini-grid,
.philosophy-chip-grid,
.keen-three-grid {
  display: grid;
  gap: 12px;
}

.philosophy-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.philosophy-mini-grid div {
  padding: 16px;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 8px;
  background: rgba(247, 246, 241, 0.72);
}

.philosophy-mini-grid strong {
  color: var(--navy-900);
}

.philosophy-mini-grid p {
  margin: 8px 0 0;
  color: var(--ink-700);
  line-height: 1.58;
}

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

.philosophy-chip-grid span,
.class-flow-steps li,
.keen-three-grid div {
  padding: 14px 16px;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 8px;
  background: rgba(247, 246, 241, 0.72);
  color: var(--ink-700);
  font-weight: 700;
}

.keen-three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.keen-three-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.keen-three-grid p {
  margin: 0;
  color: var(--ink-700);
  font-weight: 400;
  line-height: 1.58;
}

.class-flow {
  display: grid;
  gap: 18px;
}

.class-flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.class-flow-steps li {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.class-flow-steps li.is-active {
  background: var(--navy-900);
  color: var(--cream-50);
  transform: translateY(-4px);
}

.philosophy-replay {
  justify-self: start;
}

.philosophy-line-card {
  padding: 28px;
  text-align: center;
}

.philosophy-line-card p {
  margin: 10px auto 0;
  max-width: 900px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(45, 139, 139, 0.1);
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 700;
}

.plain-list,
.timeline {
  margin: 0;
  padding-left: 18px;
}

.plain-list li,
.timeline li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--ink-700);
}

.timeline li strong {
  color: var(--navy-900);
}

.news-page .timeline a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.news-page .timeline a::after {
  content: " ↗";
  font-weight: 600;
}

.news-page .timeline a:hover,
.news-page .timeline a:focus-visible {
  color: var(--teal-700);
  text-decoration-color: var(--teal-700);
}

.news-page .timeline a:focus-visible {
  outline: 2px solid rgba(45, 139, 139, 0.35);
  outline-offset: 3px;
  border-radius: 4px;
}

.news-page main {
  background: #f3f2ec;
  padding-bottom: 0;
}

.teaching-page main {
  padding-bottom: 0;
}

.teaching-resources {
  --res-ink: var(--navy-900);
  --res-ink-soft: var(--ink-700);
  --res-paper: #fafaf7;
  --res-paper-warm: #f4f0e6;
  --res-rule: #e6e3da;
  --res-muted: var(--ink-700);
  --res-accent: var(--teal-500);
  --res-rust: #b54e2a;
  --res-blue: #2860a8;
}

.teaching-resources .ai-tools {
  padding: 72px 0;
  background: var(--res-paper);
}

.teaching-resources .keen-section {
  padding: 72px 0 84px;
  background: var(--res-paper-warm);
  border-top: 1px solid var(--res-rule);
}

.teaching-resources .section-header {
  display: block;
  max-width: 760px;
  margin: 0 auto 38px;
  padding: 0;
  text-align: center;
}

.section-eyebrow,
.micro-kicker {
  color: var(--res-muted);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.teaching-resources .section-title {
  margin: 0 0 14px;
  color: var(--res-ink);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.12;
}

.teaching-resources .section-title em {
  color: var(--res-accent);
}

.section-lede {
  margin: 0;
  color: var(--res-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
}

.tools-tabs,
.keen-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 34px;
}

.tools-tab,
.keen-filter {
  border: 1px solid var(--res-rule);
  border-radius: 999px;
  background: white;
  color: var(--res-ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.tools-tab.active,
.keen-filter.active {
  background: var(--res-ink);
  border-color: var(--res-ink);
  color: white;
}

.filter-count {
  font-weight: 400;
  opacity: 0.7;
}

.tools-panel {
  display: none;
}

.tools-panel.active {
  display: block;
}

.tools-grid,
.micro-grid,
.keen-grid {
  display: grid;
  gap: 18px;
}

.tools-grid,
.keen-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.micro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-card,
.micro-card,
.keen-card,
.keen-intro,
.micro-group {
  background: white;
  border: 1px solid var(--res-rule);
}

.tool-card,
.micro-card,
.keen-card {
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tool-card:hover,
.micro-card:hover,
.keen-card:hover {
  border-color: var(--res-accent);
  box-shadow: 0 14px 30px rgba(13, 21, 31, 0.12);
  transform: translateY(-2px);
}

.tool-icon {
  align-items: center;
  background: var(--res-paper-warm);
  border-radius: 999px;
  display: flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.tool-icon svg {
  fill: none;
  height: 22px;
  stroke: var(--res-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 22px;
}

.tool-name,
.micro-card-name,
.keen-title {
  color: var(--res-ink);
  margin: 0;
}

.tool-name {
  font-size: 1.1rem;
}

.tool-desc,
.micro-card-desc {
  color: var(--res-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.tool-launch {
  align-items: center;
  color: var(--res-accent);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.16em;
  margin-top: auto;
  text-transform: uppercase;
}

.tool-launch svg {
  fill: none;
  height: 12px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 12px;
}

.micro-group {
  margin-top: 30px;
  padding: 30px;
  background: var(--res-paper-warm);
}

.micro-header {
  margin: 0 auto 24px;
  max-width: 620px;
  text-align: center;
}

.micro-title {
  color: var(--res-ink);
  font-size: 1.45rem;
  margin: 0 0 10px;
}

.micro-desc {
  color: var(--res-muted);
  line-height: 1.55;
  margin: 0;
}

.keen-intro {
  border-left: 3px solid var(--res-accent);
  margin: 0 auto 34px;
  max-width: 820px;
  padding: 24px 28px;
}

.keen-intro p {
  color: var(--res-ink-soft);
  line-height: 1.65;
  margin: 0;
}

.keen-intro p + p {
  margin-top: 12px;
}

.keen-intro a {
  color: var(--res-accent);
  font-weight: 700;
}

.keen-card {
  --course-color: var(--res-accent);
  border-left: 4px solid var(--course-color);
}

.keen-card[data-course="aero"],
.keen-card[data-course="intro"] {
  --course-color: var(--res-ink);
}

.keen-card[data-course="comp"],
.keen-card[data-course="exp"] {
  --course-color: var(--res-accent);
}

.keen-card[data-course="design"],
.keen-card[data-course="eml"] {
  --course-color: var(--res-rust);
}

.keen-card[data-course="ifly"] {
  --course-color: var(--res-blue);
}

.keen-meta,
.keen-card-foot {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.keen-course-label,
.keen-pedagogy,
.keen-card-foot {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.keen-course-label {
  color: var(--course-color);
  font-weight: 800;
}

.keen-pedagogy {
  border: 1px solid var(--res-rule);
  color: var(--res-muted);
  padding: 4px 7px;
}

.keen-title {
  font-size: 1rem;
  line-height: 1.35;
}

.keen-card-foot {
  border-top: 1px dashed var(--res-rule);
  color: var(--res-muted);
  margin-top: auto;
  padding-top: 12px;
}

.keen-launch-arrow {
  color: var(--course-color);
  font-weight: 800;
}

.keen-empty {
  color: var(--res-muted);
  display: none;
  grid-column: 1 / -1;
  padding: 44px;
  text-align: center;
}

.keen-grid.is-empty .keen-empty {
  display: block;
}

.impact-stats {
  border-bottom: 1px solid rgba(26, 35, 50, 0.1);
  background: var(--cream-50);
  padding: 44px 0;
}

.impact-stats .shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.stat {
  border-top: 2px solid var(--navy-900);
  padding-top: 16px;
}

.stat-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 0.9;
  color: var(--navy-900);
}

.stat-label {
  margin-top: 10px;
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-in {
  border-bottom: 1px solid rgba(26, 35, 50, 0.1);
  background: #fff;
  padding: 36px 0 42px;
}

.featured-in-label {
  margin-bottom: 22px;
  color: var(--ink-500);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.featured-in-label::before,
.featured-in-label::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 14px;
  vertical-align: middle;
  background: rgba(26, 35, 50, 0.14);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
}

.logo-item {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 700;
  opacity: 0.78;
  white-space: nowrap;
}

.logo-item.italic {
  font-style: italic;
}

.logo-item.caps {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-divider {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(26, 35, 50, 0.18);
}

.news-grid-section {
  padding: 64px 0 76px;
}

.grid-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(26, 35, 50, 0.1);
}

.grid-header h2 {
  margin: 8px 0 0;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(26, 35, 50, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--navy-900);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.filter-tab:hover,
.filter-tab:focus-visible {
  border-color: var(--teal-500);
  outline: none;
}

.filter-tab.is-active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--cream-50);
}

.tab-count {
  color: inherit;
  font-size: 0.72rem;
  opacity: 0.68;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.news-card {
  --card-color: var(--teal-500);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  gap: 14px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(26, 35, 50, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  box-shadow: 0 18px 40px rgba(13, 21, 31, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-card[hidden] {
  display: none !important;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--card-color);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 180ms ease;
}

.news-card[data-category="research"] {
  --card-color: var(--teal-500);
}

.news-card[data-category="teaching"] {
  --card-color: var(--teal-500);
}

.news-card[data-category="recognition"] {
  --card-color: var(--teal-500);
}

.news-card[data-category="workshops"] {
  --card-color: var(--teal-500);
}

a.news-card:hover,
a.news-card:focus-visible,
.news-card:hover {
  border-color: var(--card-color);
  box-shadow: 0 22px 42px rgba(13, 21, 31, 0.12);
  transform: translateY(-3px);
}

a.news-card:hover::before,
a.news-card:focus-visible::before,
.news-card:hover::before {
  transform: scaleX(1);
}

a.news-card:focus-visible {
  outline: 2px solid rgba(45, 139, 139, 0.35);
  outline-offset: 3px;
}

.card-meta-row,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.card-meta-row {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-category,
.card-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  white-space: nowrap;
}

.card-category {
  padding: 6px 9px;
  background: rgba(45, 139, 139, 0.1);
  color: var(--navy-800);
}

.card-type {
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(26, 35, 50, 0.1);
  background: var(--cream-50);
  color: var(--ink-500);
}

.card-type::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: currentColor;
  clip-path: polygon(18% 10%, 82% 10%, 82% 90%, 18% 90%);
  opacity: 0.78;
}

.card-type[data-type="video"]::before {
  clip-path: polygon(24% 12%, 86% 50%, 24% 88%);
}

.card-type[data-type="podcast"]::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
  clip-path: none;
}

.card-type[data-type="recognition"]::before {
  clip-path: polygon(50% 5%, 62% 34%, 94% 36%, 69% 56%, 78% 88%, 50% 70%, 22% 88%, 31% 56%, 6% 36%, 38% 34%);
}

.card-type[data-type="location"]::before {
  clip-path: polygon(50% 4%, 74% 14%, 88% 36%, 83% 59%, 50% 96%, 17% 59%, 12% 36%, 26% 14%);
}

.card-title {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.18rem;
  line-height: 1.34;
}

a.news-card:hover .card-title,
a.news-card:focus-visible .card-title {
  color: var(--card-color);
}

.card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(26, 35, 50, 0.14);
  color: var(--ink-700);
  font-size: 0.84rem;
}

.card-source {
  font-style: italic;
}

.card-year {
  font-weight: 700;
  white-space: nowrap;
}

.no-results {
  display: none;
  grid-column: 1 / -1;
  padding: 44px 0;
  color: var(--ink-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  text-align: center;
}

.news-cards.is-empty .no-results {
  display: block;
}

.workshop-tour {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--cream-50);
}

.workshop-tour::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 218, 220, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 218, 220, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.workshop-tour .shell {
  position: relative;
}

.tour-header {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.tour-header .section-kicker {
  color: var(--teal-300);
}

.tour-header h2 {
  margin: 12px 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.tour-header p {
  margin: 0 auto;
  max-width: 66ch;
  color: rgba(247, 246, 241, 0.76);
  line-height: 1.72;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.tour-map-wrap {
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(168, 218, 220, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.tour-map {
  display: block;
  width: 100%;
  height: auto;
}

.tour-us-map-image {
  opacity: 0.42;
  filter: brightness(0) saturate(100%) invert(83%) sepia(17%) saturate(352%) hue-rotate(131deg) brightness(95%) contrast(91%);
}

.tour-route {
  fill: none;
  stroke: var(--teal-300);
  stroke-dasharray: 4 5;
  stroke-width: 1.4;
  opacity: 0.65;
}

.tour-pin-group {
  cursor: pointer;
}

.tour-pin-halo {
  fill: var(--teal-300);
  opacity: 0.17;
  transition: opacity 180ms ease, r 180ms ease;
}

.tour-pin-dot {
  fill: var(--teal-300);
  stroke: var(--navy-950);
  stroke-width: 1.5;
}

.tour-pin-num {
  fill: var(--navy-950);
  font-size: 9px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}

.tour-pin-label {
  fill: rgba(247, 246, 241, 0.82);
  font-size: 9px;
  font-weight: 700;
  text-anchor: middle;
}

.tour-pin-group:hover .tour-pin-halo,
.tour-pin-group.is-active .tour-pin-halo {
  opacity: 0.38;
}

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

.tour-stop {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(168, 218, 220, 0.12);
  cursor: default;
  transition: padding-left 180ms ease;
}

.tour-stop:hover,
.tour-stop.is-active {
  padding-left: 8px;
}

.stop-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--teal-300);
  border-radius: 999px;
  color: var(--teal-300);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.tour-stop:hover .stop-num,
.tour-stop.is-active .stop-num {
  background: var(--teal-300);
  color: var(--navy-950);
}

.stop-title {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.3;
}

.stop-venue {
  margin-top: 3px;
  color: rgba(247, 246, 241, 0.72);
  line-height: 1.45;
}

.stop-date {
  margin-top: 5px;
  color: var(--teal-300);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(168, 218, 220, 0.22);
  border-radius: 8px;
  background: rgba(168, 218, 220, 0.06);
}

.tour-cta-text {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.feature-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.workshop-topic-grid {
  display: grid;
  gap: 18px;
}

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

.workshop-topic {
  border-top: 4px solid var(--teal-500);
}

.workshop-topic p {
  margin: 0 0 12px;
}

.workshops-page .timeline a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.workshop-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.quote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fff);
}

.quote-card blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--navy-900);
}

.footer {
  background: #edf0ea;
  color: var(--ink-700);
  border-top: 1px solid rgba(26, 35, 50, 0.08);
  padding: 32px 0 56px;
}

.footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--navy-800);
  font-weight: 700;
}

.profile-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.profile-hero {
  padding: 44px 0 40px;
  background: linear-gradient(180deg, #132032 0, #111824 100%);
  color: var(--cream-50);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

.profile-portrait {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(168, 218, 220, 0.14);
  box-shadow: var(--shadow);
}

.profile-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-meta p {
  color: rgba(247, 246, 241, 0.82);
}

.profile-hero .section-kicker {
  color: var(--seafoam-200);
}

.profile-section {
  padding: 34px 0;
}

.pub-list {
  display: grid;
  gap: 18px;
}

.pub-card {
  background: white;
  border: 1px solid rgba(26, 35, 50, 0.08);
  box-shadow: var(--shadow);
  padding: 22px;
}

.pub-card p {
  color: var(--ink-700);
  line-height: 1.7;
  margin: 0 0 10px;
}

.pub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.pub-links a {
  color: var(--navy-800);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.profile-hero .pub-links a,
.card.dark .pub-links a,
.card.dark .student-links a {
  color: var(--seafoam-200);
}

.card.dark .button.secondary {
  color: var(--navy-900);
}

.community-year-grid,
.community-gallery {
  display: grid;
  gap: 24px;
}

.community-year-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.community-card,
.community-photo-card {
  background: white;
  border: 1px solid rgba(26, 35, 50, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.community-card-image,
.community-photo {
  background: linear-gradient(180deg, rgba(45, 139, 139, 0.16), rgba(26, 35, 50, 0.1));
}

.community-card-image {
  aspect-ratio: 4 / 3;
}

.community-photo {
  aspect-ratio: 4 / 3.2;
}

.community-card-image img,
.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infographic-section {
  display: grid;
  gap: 24px;
}

.infographic-single {
  max-width: 980px;
  margin: 0 auto;
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.infographic-frame {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.infographic-frame a {
  display: block;
}

.infographic-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.category-infographic-section .infographic-single {
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.category-infographic-section .infographic-frame img {
  display: block;
  border-radius: 8px;
}

.category-infographic-section .infographic-caption {
  margin: 12px 0 0;
}

.teaching-philosophy-infographic {
  width: 100%;
  max-width: none;
  padding: 24px;
  text-align: center;
}

.teaching-philosophy-infographic a {
  display: block;
}

.teaching-philosophy-infographic img {
  width: 100%;
  margin: 0 auto;
}

.infographic-frame video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #08111f;
}

.infographic-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 4px 0;
}

.infographic-action-link {
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.infographic-action-link:hover,
.infographic-action-link:focus-visible {
  text-decoration: underline;
}

.infographic-caption {
  margin: 14px 4px 0;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.community-card-copy,
.community-photo-copy {
  padding: 18px;
}

.community-year-meta {
  color: var(--navy-800);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-card-copy p,
.community-photo-copy p {
  color: var(--ink-700);
  line-height: 1.65;
}

.community-card-copy .button,
.community-photo-copy .button {
  margin-top: 8px;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.facility-photo-card {
  background: white;
  border: 1px solid rgba(26, 35, 50, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.facility-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(45, 139, 139, 0.16), rgba(26, 35, 50, 0.1));
}

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

.facility-photo-copy {
  padding: 18px;
}

.facility-photo-copy p {
  color: var(--ink-700);
  line-height: 1.65;
}

.facility-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.facility-detail-main,
.facility-model-card {
  background: white;
  border: 1px solid rgba(26, 35, 50, 0.08);
  box-shadow: var(--shadow);
  padding: 28px;
}

.facility-detail-main p,
.facility-model-card p,
.facility-feature-list p {
  color: var(--ink-700);
  line-height: 1.65;
}

.facility-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.facility-feature-list article {
  border-top: 3px solid var(--teal-400);
  background: var(--cream-50);
  padding: 18px;
}

.facility-model-card {
  background: linear-gradient(180deg, rgba(247, 246, 241, 0.96), rgba(255, 255, 255, 0.98));
}

.facility-model-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--navy-800);
  color: var(--cream-50);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

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

.pub-summary-stat {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--cream-50);
  margin-bottom: 8px;
}

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

.pub-year-card {
  padding: 24px;
}

.pub-year-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

.pub-year-header::-webkit-details-marker {
  display: none;
}

.pub-year-header h3 {
  margin: 0;
  font-size: 2rem;
}

.pub-year-card[open] .pub-year-header {
  margin-bottom: 18px;
}

.pub-toggle {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--navy-800);
  border-bottom: 2px solid var(--navy-800);
  transform: rotate(45deg);
  flex: 0 0 auto;
  margin-top: 10px;
  transition: transform 180ms ease, margin-top 180ms ease;
}

.pub-year-card[open] .pub-toggle {
  transform: rotate(-135deg);
  margin-top: 16px;
}

.pub-entry-list {
  display: grid;
  gap: 14px;
}

.pub-entry {
  padding: 18px;
  border: 1px solid rgba(26, 35, 50, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 246, 241, 0.95), rgba(255, 255, 255, 1));
}

.pub-entry-top {
  margin-bottom: 10px;
}

.pub-type {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(45, 139, 139, 0.12);
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pub-entry h4 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.pub-entry p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.72;
}

.publications-page .pub-links {
  margin-top: 12px;
}

.publications-page .pub-links a {
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .section-header,
  .feature-layout,
  .grid-2,
  .grid-3,
  .grid-4,
  .workshop-topic-grid,
  .student-grid,
  .list-grid,
  .profile-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-media-stage {
    min-height: 360px;
    aspect-ratio: 16 / 10;
  }

  .community-year-grid,
  .community-gallery,
  .facility-gallery,
  .facility-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

  .tools-grid,
  .tools-grid.cols-2,
  .keen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .micro-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats .shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-header {
    align-items: start;
    flex-direction: column;
  }

  .tour-layout {
    grid-template-columns: 1fr;
  }

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

  .pub-year-header {
    flex-direction: column;
  }

  .teaching-carousel {
    padding: 18px;
  }

  .philosophy-scrolly {
    grid-template-columns: 1fr;
  }

  .philosophy-rail {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
  }

  .philosophy-rail::before,
  .philosophy-plane {
    display: none;
  }

  .philosophy-mini-grid,
  .keen-three-grid,
  .class-flow-steps {
    grid-template-columns: 1fr;
  }

  .teaching-carousel-stage,
  .teaching-carousel-slides {
    min-height: 260px;
  }

  .carousel-control {
    width: 42px;
    height: 42px;
  }

  .teaching-slide figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 0.88rem;
  }

  .teaching-carousel-footer {
    justify-content: center;
  }

  .teaching-video-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

@media (max-width: 680px) {
  .portfolio-map {
    grid-template-columns: 1fr;
  }

  .portfolio-domain {
    padding: 18px;
  }

  .hero-media-stage {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .hero-media-footer {
    justify-content: flex-start;
  }

  .hero-media-dots {
    justify-content: flex-start;
  }

  .impact-stats .shell,
  .news-cards {
    grid-template-columns: 1fr;
  }

  .tools-grid,
  .tools-grid.cols-2,
  .keen-grid,
  .micro-grid {
    grid-template-columns: 1fr;
  }

  .featured-in-label::before,
  .featured-in-label::after,
  .logo-divider {
    display: none;
  }

  .logo-strip {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .filter-tabs {
    width: 100%;
  }

  .filter-tab {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .tour-map-wrap {
    padding: 10px;
  }

  .tour-pin-label {
    display: none;
  }

  .tour-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .philosophy-rail,
  .philosophy-chip-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-goal-card,
  .philosophy-waypoint,
  .philosophy-line-card {
    padding: 22px;
  }

}
