:root {
  --ink: #101823;
  --muted: #647080;
  --line: #d9e3ec;
  --paper: #f5f7f9;
  --white: #fff;
  --blue: #06285d;
  --cyan: #6dc4df;
  --gold: #b99545;
  --green: #4d7c62;
  --shadow: 0 24px 80px rgb(16 24 35 / 14%);
  --max: 1440px;
  --content-max: 1180px;
}

/* Shared section wave and archive workspace */
.team-hero::after { display: none; }
.section-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 2;
  width: 100%;
  height: 74px;
  color: #edf4fb;
  filter: drop-shadow(0 -10px 16px rgb(3 28 68 / 8%));
  pointer-events: none;
}
.section-wave path { fill: currentColor; }
.archive-hero {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgb(5 40 92 / 96%), rgb(5 55 117 / 78%)), url("../img/home-hero.c503adf7db8a.webp") center 18% / cover;
}
.archive-hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 300px;
  margin: 0 auto;
  padding: 54px 0 76px;
  display: flex;
  align-items: end;
}
.archive-hero h1 {
  margin: 0 0 14px;
  color: #fff;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}
.archive-hero p {
  max-width: 700px;
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-size: 18px;
  line-height: 1.55;
}
.archive-workspace {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 56px;
}
.archive-workspace .archive-filter {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  background: rgb(255 255 255 / 90%);
}
.archive-search { display: grid; gap: 7px; }
.archive-search > span {
  color: #173d73;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.archive-search input { width: 100%; }
.archive-workspace .archive-filter-actions { display: flex; gap: 8px; }
.archive-workspace .archive-tabbar { top: 86px; margin-top: 18px; }
.archive-workspace .archive-panel { padding: 16px; }
.archive-photo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.archive-photo-item, .archive-video-item, .archive-award-item {
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: 0 8px 22px rgb(22 62 111 / 8%);
  transition: transform .18s ease, box-shadow .18s ease;
}
.archive-photo-item:hover, .archive-video-item:hover, .archive-award-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgb(22 62 111 / 15%);
}
.archive-photo-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.archive-photo-card,
.profile-photo-card {
  position: relative;
  min-width: 0;
}

.archive-photo-card .archive-photo-item,
.profile-photo-card .profile-photo-button {
  width: 100%;
  height: 100%;
}

.photo-actions {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 6;
}

.photo-actions-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.photo-actions-toggle span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}

.photo-actions-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  display: grid;
  min-width: 184px;
  padding: 7px;
  border: 1px solid rgb(6 40 93 / 18%);
  border-radius: 10px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 16px 34px rgb(4 24 58 / 18%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease;
}

.photo-actions.is-open .photo-actions-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.photo-actions-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.photo-actions-menu a:hover,
.photo-actions-menu a:focus-visible {
  background: rgb(6 40 93 / 9%);
}

.inprint-file-actions {
  position: fixed;
  right: clamp(15px, 2.4vw, 31px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1002;
}

.inprint-file-actions[hidden] {
  display: none;
}

.material-modal-media .photo-actions {
  right: 12px;
  bottom: 24px;
}

@media (max-width: 768px) {
  .material-modal-media .photo-actions {
    right: 10px;
    bottom: 14px;
  }
}

@media (max-width: 640px) {
  .photo-actions {
    right: 6px;
    bottom: 6px;
  }

  .photo-actions-toggle {
    width: 38px;
    height: 30px;
    gap: 3px;
  }

  .photo-actions-toggle span {
    width: 7px;
    height: 7px;
  }

  .photo-actions-menu {
    min-width: 166px;
    padding: 6px;
  }

  .photo-actions-menu a {
    padding: 8px 9px;
    font-size: 12px;
  }
}
.archive-video-folder-item {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.archive-video-folder-item::after {
  content: none;
}

.archive-video-folder-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0c3c82;
}

.archive-video-folder-media::after {
  content: none;
}

.archive-video-folder-media img,
.archive-video-folder-media video,
.archive-video-folder-media .archive-video-folder-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.archive-video-folder-item .archive-video-title {
  padding-bottom: 5px;
}

.archive-video-folder-item .archive-video-count {
  display: block;
  padding: 0 12px 12px;
  color: #82621f;
  font-weight: 900;
}

.archive-video-folder-placeholder {
  display: block;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgb(8 36 82 / 92%), rgb(18 83 153 / 72%)),
    #0c3c82;
}

.pause-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgb(6 40 93 / 90%);
  color: #fff;
  pointer-events: none;
  box-shadow: 0 6px 18px rgb(2 20 50 / 28%);
}

.pause-icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #fff;
}
.archive-award-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.archive-award-item {
  min-height: 150px;
  padding: 12px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid #decfa5;
  background: #fffaf0;
}
.archive-award-item img { width: 112px; height: 112px; object-fit: cover; border-radius: 5px; }
.archive-award-item strong { display: block; margin-bottom: 8px; color: #0a2d65; line-height: 1.25; }
.archive-award-item p { margin: 0; color: #65758d; line-height: 1.4; }
.material-dialog {
  width: min(1220px, calc(100% - 36px));
  max-width: none;
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: #f5f9fd;
  box-shadow: 0 30px 90px rgb(2 20 50 / 36%);
}
.material-dialog::backdrop { background: rgb(2 15 38 / 76%); backdrop-filter: blur(5px); }
html.material-dialog-locked,
html.material-dialog-locked body {
  overflow: hidden;
}

body.material-dialog-locked {
  position: fixed;
  inset: 0;
  width: 100%;
  overscroll-behavior: none;
}
.material-dialog-close {
  position: fixed;
  right: clamp(14px, 2.4vw, 30px);
  top: clamp(14px, 2vw, 26px);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
}
.material-dialog-content {
  max-height: calc(100vh - 36px);
  overflow-x: hidden;
  overflow-y: hidden;
  border-radius: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .85fr);
  align-items: stretch;
  will-change: transform, opacity;
}

.material-dialog-content.is-swipe-out-left {
  animation: materialSwipeOutLeft .16s ease-in forwards;
}

.material-dialog-content.is-swipe-out-right {
  animation: materialSwipeOutRight .16s ease-in forwards;
}

.material-dialog-content.is-swipe-in-left {
  animation: materialSwipeInLeft .23s ease-out both;
}

.material-dialog-content.is-swipe-in-right {
  animation: materialSwipeInRight .23s ease-out both;
}

@keyframes materialSwipeOutLeft {
  to {
    opacity: .18;
    transform: translateX(-34px);
  }
}

@keyframes materialSwipeOutRight {
  to {
    opacity: .18;
    transform: translateX(34px);
  }
}

@keyframes materialSwipeInLeft {
  from {
    opacity: .18;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes materialSwipeInRight {
  from {
    opacity: .18;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .material-dialog-content.is-swipe-out-left,
  .material-dialog-content.is-swipe-out-right,
  .material-dialog-content.is-swipe-in-left,
  .material-dialog-content.is-swipe-in-right {
    animation: none;
  }
}
.material-modal-media {
  position: relative;
  min-height: 560px;
  max-height: calc(100vh - 36px);
  display: grid;
  place-items: center;
  background: #f5f9fd;
  overflow: hidden;
}
.material-dialog-content:has(.material-modal-media:only-child) {
  grid-template-columns: 1fr;
}
.material-dialog-content:has(.material-modal-media:only-child) .material-modal-media {
  min-height: min(760px, calc(100vh - 36px));
}
.material-modal-media img, .material-modal-media video {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 36px);
  object-fit: contain;
}
.material-modal-media.video { min-height: 440px; }
.material-modal-info {
  position: relative;
  min-height: 560px;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 58px 34px 34px;
  display: grid;
  align-content: start;
}

.material-modal-info.is-short {
  align-content: center;
}
.material-modal-info h1 {
  margin: 0 0 14px;
  color: #0a2d65;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
}
.material-album-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  width: max-content;
  margin: 0 0 18px auto;
  padding: 10px 15px;
  border: 1px solid rgb(6 40 93 / 46%);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgb(6 40 93 / 10%);
}

.material-album-link:hover,
.material-album-link:focus-visible {
  background: #06285d;
  border-color: #06285d;
  color: #fff;
}
.material-modal-info > .material-album-link {
  position: absolute;
  left: 50%;
  top: 22px;
  margin: 0;
  transform: translateX(-50%);
}
.material-album-link-on-media {
  position: absolute;
  left: 50%;
  top: 16px;
  z-index: 3;
  margin: 0;
  transform: translateX(-50%);
  background: rgb(255 255 255 / 92%);
  color: #0a2d65;
  box-shadow: 0 10px 28px rgb(0 0 0 / 22%);
}
.material-dialog-content:has(.material-modal-info) .material-modal-media .material-album-link {
  display: none;
}
.material-dialog.has-material-info .material-modal-media .material-album-link {
  display: none !important;
}
.material-modal-info h2 {
  margin: 24px 0 10px;
  color: #173d73;
  font-family: inherit;
  font-size: 15px;
  text-transform: uppercase;
}
.material-modal-info > p,
.material-description,
.material-description p {
  color: #5c7190;
  line-height: 1.55;
}
.material-description p {
  margin: 0 0 8px;
  white-space: pre-wrap;
}
.material-description p:last-child {
  margin-bottom: 0;
}
.material-year { color: #82621f !important; font-weight: 900; }
.material-people { display: flex; flex-wrap: wrap; gap: 7px; }
.material-people a, .material-people span {
  padding: 8px 10px;
  border-radius: 5px;
  background: #e7f1fb;
  color: #0d4da0;
  font-size: 15px;
  font-weight: 800;
}
.material-people a:hover { background: #0d4da0; color: #fff; }

@media (max-width: 980px) {
  .archive-workspace .archive-filter { grid-template-columns: 1fr 1fr; }
  .archive-workspace .archive-filter-actions { grid-column: 1 / -1; }
  .archive-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .archive-award-grid { grid-template-columns: repeat(2, 1fr); }
  .material-dialog-content {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .material-modal-media { min-height: 360px; }
  .material-modal-info {
    max-height: none;
    overflow-y: visible;
  }
  .material-modal-info { padding-top: 24px; }
}

@media (max-width: 640px) {
  .archive-hero-inner, .archive-workspace { width: min(100% - 28px, 1180px); }
  .archive-workspace .archive-filter, .archive-video-grid, .archive-award-grid { grid-template-columns: 1fr; }
  .archive-workspace .archive-filter-actions { grid-column: auto; display: grid; grid-template-columns: 1fr 1fr; }
  .archive-tabbar { grid-template-columns: 1fr; position: static; }
  .archive-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-award-item { grid-template-columns: 92px 1fr; }
  .archive-award-item img { width: 92px; height: 92px; }
  .material-dialog { width: calc(100% - 16px); max-height: calc(100vh - 16px); }
  .material-dialog-content { max-height: calc(100vh - 16px); }
  .material-modal-media { min-height: 280px; }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Segoe UI", Manrope, Arial, sans-serif; color: var(--ink); background: var(--paper); }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--white); padding: 8px 12px; z-index: 30; }
.skip-link:focus { left: 10px; }
.site-header { position: sticky; top: 0; z-index: 20; height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 clamp(18px, 4vw, 56px); background: rgb(245 247 249 / 88%); backdrop-filter: blur(18px); border-bottom: 1px solid rgb(16 24 35 / 9%); }
.brand { display: flex; gap: 12px; align-items: center; font-weight: 850; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 4px; background: var(--ink); color: var(--white); font-weight: 900; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 10px 14px; border-radius: 999px; font-weight: 700; color: #243242; }
.nav-links a:hover { background: var(--white); box-shadow: 0 8px 30px rgb(16 24 35 / 10%); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.button { border: 0; border-radius: 999px; padding: 13px 18px; font-size: 14px; font-weight: 850; line-height: 1.15; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; min-height: 46px; }
.primary { background: var(--blue); color: var(--white); }
.light { background: var(--white); color: var(--blue); border: 1px solid rgb(6 40 93 / 46%); box-shadow: 0 10px 34px rgb(6 40 93 / 10%); }
.button:hover,
.button:focus-visible,
.primary:hover,
.primary:focus-visible,
.light:hover,
.light:focus-visible {
  border-color: #06285d;
  color: var(--white);
}

.primary:hover,
.primary:focus-visible {
  background: #041f4a;
}

.light:hover,
.light:focus-visible {
  background: #06285d;
}
.scroll-top-button {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 50%;
  background: rgb(10 45 101 / 78%);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 28px rgb(5 31 72 / 26%);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: rgb(10 45 101 / 88%);
}
.welcome { min-height: calc(100vh - 74px); max-width: var(--max); margin: 0 auto; padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 56px); display: grid; grid-template-columns: .72fr 1.05fr; gap: clamp(24px, 5vw, 70px); align-items: center; }
.welcome-copy { position: relative; z-index: 2; }
.kicker { margin: 0 0 16px; color: var(--gold); text-transform: uppercase; font-size: 13px; font-weight: 900; letter-spacing: .11em; }
h1 { margin: 0 0 22px; font-size: clamp(46px, 7vw, 106px); line-height: .91; letter-spacing: 0; }
h2 { margin: 0 0 18px; font-size: clamp(28px, 4vw, 54px); line-height: 1; letter-spacing: 0; }
h3, p { margin-top: 0; }
.welcome p:not(.kicker) { max-width: 620px; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.55; color: #405061; }
.hero-actions, .search-row, .checks, .filter-grid { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.photo-river { min-height: 640px; position: relative; }
.river-shot { position: absolute; overflow: hidden; border-radius: 6px; background: #dfe7ed; box-shadow: var(--shadow); }
.river-shot img { width: 100%; height: 100%; object-fit: cover; }
.shot-1 { left: 3%; top: 8%; width: 36%; height: 36%; transform: rotate(-3deg); }
.shot-2 { left: 43%; top: 0; width: 44%; height: 31%; }
.shot-3 { left: 18%; top: 48%; width: 42%; height: 38%; }
.shot-4 { right: 0; top: 36%; width: 34%; height: 28%; transform: rotate(4deg); }
.shot-5 { left: 0; bottom: 0; width: 24%; height: 25%; }
.shot-6 { right: 12%; bottom: 0; width: 32%; height: 27%; }
.shot-7, .shot-8, .shot-9 { display: none; }
.home-search, .museum-links, .live-strip, .team-head, .team-list, .profile, .profile-materials, .materials-head, .material-block, .site-footer { max-width: var(--max); margin: 0 auto; padding: clamp(38px, 6vw, 82px) clamp(18px, 4vw, 56px); }
.home-search label { display: block; font-size: clamp(24px, 3vw, 44px); font-weight: 900; margin-bottom: 16px; }
input, select, textarea { min-height: 48px; border: 1px solid var(--line); background: var(--white); border-radius: 14px; padding: 12px 14px; font: inherit; }
.search-row input { flex: 1 1 300px; }
.museum-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-top: 0; }
.museum-links a { min-height: 230px; border-radius: 6px; padding: 22px; color: var(--white); background: var(--ink); display: flex; flex-direction: column; justify-content: space-between; }
.museum-links a:nth-child(2) { background: var(--blue); }
.museum-links a:nth-child(3) { background: var(--green); }
.museum-links a:nth-child(4) { background: #6f5422; }
.museum-links span { color: rgb(255 255 255 / 70%); font-weight: 800; }
.museum-links strong { font-size: clamp(21px, 2vw, 31px); line-height: 1.08; }
.live-strip { display: grid; grid-template-columns: .45fr 1fr; gap: 24px; align-items: center; }
.thumb-line { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.thumb-line img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }
.team-head { display: grid; grid-template-columns: .72fr 1fr; gap: 30px; align-items: end; }
.team-search { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 18px; box-shadow: 0 14px 50px rgb(16 24 35 / 8%); }
.team-search > input { width: 100%; margin-bottom: 12px; }
.checks label { background: #eef3f6; border-radius: 999px; padding: 8px 12px; font-weight: 700; }
.filter-grid { margin-top: 12px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.filter-grid input, .filter-grid select, .filter-grid button { width: 100%; }
.team-list { display: grid; gap: 10px; padding-top: 0; }
.team-row { display: grid; grid-template-columns: 96px 1fr 90px; gap: 18px; align-items: center; padding: 12px; border-radius: 8px; background: var(--white); border: 1px solid var(--line); transition: .18s ease; }
.team-row:hover { transform: translateX(4px); box-shadow: 0 16px 42px rgb(16 24 35 / 10%); }
.team-photo { width: 96px; height: 112px; border-radius: 6px; overflow: hidden; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: var(--white); display: grid; place-items: center; font-size: 38px; font-weight: 900; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-main h2 { margin: 0 0 4px; font-size: clamp(20px, 2vw, 28px); }
.team-main p { margin: 0 0 6px; color: var(--muted); }
.team-years { color: var(--gold); font-weight: 900; text-align: right; }
.profile { display: grid; grid-template-columns: minmax(300px, .55fr) 1fr; gap: 42px; align-items: start; }
.profile-photo { min-height: 520px; border-radius: 8px; overflow: hidden; background: var(--ink); color: var(--white); display: grid; place-items: center; font-size: 96px; font-weight: 900; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.back-link { color: var(--blue); font-weight: 800; }
.back-link:hover,
.back-link:focus-visible { color: #041f4a; }
.role { color: var(--gold); font-weight: 900; }
.json-like { background: #111821; color: #d8eff9; border-radius: 8px; padding: 18px; overflow: auto; }
.profile-materials { display: grid; grid-template-columns: .5fr 1fr; gap: 28px; padding-top: 0; }
.small-card { display: grid; grid-template-columns: 76px 1fr; gap: 12px; align-items: center; padding: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; margin-bottom: 10px; }
.small-card img { width: 76px; height: 76px; object-fit: cover; border-radius: 5px; }
.mini-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.mini-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 5px; }
.video-chip { background: var(--ink); color: var(--white); border-radius: 999px; padding: 10px 12px; }
.materials-head { display: grid; grid-template-columns: .7fr .55fr; gap: 30px; align-items: end; }
.materials-filter { display: grid; gap: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
.material-block { padding-top: 0; }
.collection-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.collection-strip a { min-height: 120px; border-radius: 8px; padding: 16px; color: var(--white); background: linear-gradient(135deg, var(--ink), var(--blue)); display: flex; flex-direction: column; justify-content: space-between; }
.collection-strip span { color: rgb(255 255 255 / 72%); font-weight: 800; }
.photo-board { columns: 5 180px; column-gap: 10px; }
.photo-board a { display: block; position: relative; break-inside: avoid; margin: 0 0 10px; overflow: hidden; border-radius: 6px; background: var(--white); }
.photo-board img { width: 100%; height: auto; }
.photo-board span { position: absolute; left: 8px; right: 8px; bottom: 8px; padding: 7px 8px; border-radius: 999px; background: rgb(16 24 35 / 72%); color: var(--white); font-size: 12px; opacity: 0; transition: .18s ease; }
.photo-board a:hover span { opacity: 1; }
.video-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.video-board article, .award-board a { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.video-board video { width: 100%; border-radius: 6px; background: #111; }
.award-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.award-board img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 5px; margin-bottom: 10px; }
.site-footer { border-top: 1px solid var(--line); color: var(--muted); display: flex; justify-content: space-between; gap: 20px; }
.messages { max-width: var(--max); margin: 20px auto 0; padding: 0 clamp(18px, 4vw, 56px); }
.empty, .muted { color: var(--muted); }
@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; left: 18px; right: 18px; top: 80px; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }
  .nav-links.is-open { display: grid; }
  .welcome, .team-head, .profile, .profile-materials, .materials-head, .live-strip { grid-template-columns: 1fr; }
  .photo-river { min-height: 480px; }
  .museum-links, .award-board, .video-board, .collection-strip { grid-template-columns: 1fr 1fr; }
  .filter-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .site-header { height: 68px; }
  h1 { font-size: 44px; }
  .photo-river { min-height: 380px; }
  .museum-links, .award-board, .video-board, .mini-gallery, .collection-strip { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: 76px 1fr; }
  .team-photo { width: 76px; height: 88px; }
  .team-years { grid-column: 2; text-align: left; }
  .filter-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Home presentation */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(90deg, rgb(10 54 112 / 5%) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(0deg, rgb(10 54 112 / 4%) 1px, transparent 1px) 0 0 / 84px 84px,
    #edf4fb;
  color: #0a2857;
}

body > main {
  flex: 1 0 auto;
  width: 100%;
}

.site-footer {
  flex: 0 0 auto;
}

.site-header {
  height: 76px;
  background: linear-gradient(90deg, #05285c 0%, #073b7e 52%, #06214c 100%);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  color: #fff;
  box-shadow: 0 14px 36px rgb(2 23 58 / 20%);
}

.brand {
  color: #fff;
  min-width: 220px;
}

.brand > span:last-child {
  display: grid;
  gap: 2px;
}

.brand small {
  color: rgb(255 255 255 / 76%);
  font-size: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 76px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  gap: 4px;
}

.nav-links a {
  color: rgb(255 255 255 / 90%);
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
}

.nav-links a:hover {
  background: rgb(255 255 255 / 10%);
  color: #fff;
  box-shadow: none;
}

.home-hero {
  position: relative;
  min-height: min(690px, calc(100vh - 76px));
  overflow: hidden;
  isolation: isolate;
  background: #d9e7f5;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-size: cover;
  transform-origin: top center;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(239 246 252 / 98%) 0%, rgb(239 246 252 / 88%) 31%, rgb(239 246 252 / 35%) 56%, rgb(5 31 72 / 10%) 100%),
    linear-gradient(0deg, rgb(4 31 77 / 42%) 0%, transparent 26%);
  z-index: -1;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 76px;
  background: #edf4fb;
  clip-path: polygon(0 64%, 9% 52%, 19% 67%, 31% 49%, 43% 62%, 55% 45%, 68% 58%, 80% 43%, 91% 55%, 100% 39%, 100% 100%, 0 100%);
}

.hero-inner {
  width: min(var(--content-max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #1d66bd;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 900;
}

.home-hero h1 {
  max-width: 680px;
  margin: 0 0 26px;
  color: #06285d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 84px);
  line-height: .97;
  font-weight: 700;
}

.hero-lead {
  max-width: 540px;
  margin: 0 0 34px;
  color: #173d73;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.58;
  font-weight: 600;
}

.hero-button,
.outline-button,
.small-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero-button {
  min-width: 190px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(180deg, #0d4da0, #052d68);
  border: 1px solid rgb(255 255 255 / 32%);
  box-shadow: 0 16px 36px rgb(5 45 104 / 30%);
}

.home-quick,
.about-panel,
.timeline-panel,
.people-panel,
.media-panel,
.awards-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-quick {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -42px;
}

.home-quick a {
  min-height: 118px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgb(71 112 164 / 24%);
  border-radius: 8px;
  background: rgb(255 255 255 / 84%);
  color: #0a2d65;
  box-shadow: 0 14px 36px rgb(22 62 111 / 10%);
  backdrop-filter: blur(12px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.quick-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, #0a3b7b, #1f7b88);
  color: #fff;
  box-shadow: 0 12px 24px rgb(6 40 93 / 18%);
}

.quick-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-quick a:hover {
  transform: translateY(-4px);
  border-color: rgb(13 77 160 / 55%);
  box-shadow: 0 22px 55px rgb(22 62 111 / 20%);
}

.home-quick strong {
  font-size: 19px;
}

.home-quick span:last-child {
  color: #516a8e;
  font-size: 13px;
  line-height: 1.35;
}

.about-panel,
.people-panel,
.media-panel,
.awards-panel {
  padding-top: 48px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #86acd9, transparent);
}

.section-title h2,
.timeline-panel h2 {
  margin: 0;
  color: #0a2d65;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}

.with-actions::after {
  order: 2;
}

.with-actions .small-link {
  order: 3;
  flex: 0 0 auto;
}

.small-link {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #9bbbe0;
  background: rgb(255 255 255 / 76%);
  color: #0d4da0;
  font-size: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #b8cce4;
  border-radius: 8px;
  background: rgb(255 255 255 / 68%);
  box-shadow: 0 18px 50px rgb(22 62 111 / 9%);
  overflow: hidden;
}

.about-grid article {
  display: grid;
  padding: 24px 26px;
  border-right: 1px solid #c9d8e9;
}

.about-grid article:last-child {
  border-right: 0;
}

.about-grid h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #0a2d65;
}

.about-grid p {
  margin: 0;
  color: #516a8e;
  line-height: 1.45;
}

.about-college {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  border: 1px solid #b8cce4;
  border-radius: 8px;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 18px 50px rgb(22 62 111 / 9%);
}

.about-college-copy {
  padding: clamp(24px, 4vw, 42px);
}

.about-kicker {
  margin: 0 0 10px;
  color: #0d4da0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-college h3 {
  max-width: 720px;
  margin: 0 0 16px;
  color: #0a2d65;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.about-college-copy > p:not(.about-kicker) {
  max-width: 720px;
  margin: 0;
  color: #486484;
  font-size: 17px;
  line-height: 1.65;
}

.about-milestones {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-milestones span {
  min-height: 74px;
  padding: 14px;
  border: 1px solid #c8d9ec;
  border-radius: 6px;
  background: #eef5fb;
  color: #486484;
  font-size: 13px;
  line-height: 1.35;
}

.about-milestones b {
  display: block;
  margin-bottom: 4px;
  color: #0a2d65;
  font-size: 23px;
}

.about-college-media {
  min-height: 360px;
  background-position: center;
  background-size: cover;
}

.about-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #c8d9ec;
  border-bottom: 1px solid #c8d9ec;
}

.about-facts article {
  min-height: 122px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid #c8d9ec;
  background: #f7fbff;
}

.about-facts article:last-child {
  border-right: 0;
}

.about-facts strong {
  color: #0d4da0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.about-facts span {
  color: #486484;
  font-weight: 700;
  line-height: 1.35;
}

.about-story-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #c8d9ec;
}

.about-story-grid article {
  min-height: 170px;
  padding: 22px;
  border-right: 1px solid #c8d9ec;
  border-bottom: 1px solid #c8d9ec;
  background: rgb(255 255 255 / 62%);
}

.about-story-grid article:nth-child(3n) {
  border-right: 0;
}

.about-story-grid article:nth-last-child(-n+3) {
  border-bottom: 0;
}

.about-story-grid h4 {
  margin: 0 0 9px;
  color: #0a2d65;
  font-size: 18px;
}

.about-story-grid p {
  margin: 0;
  color: #486484;
  font-size: 15px;
  line-height: 1.55;
}

.about-feature-lines {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #c8d9ec;
  background: #fff;
}

.about-feature-lines article {
  min-height: 154px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 10px;
  border-right: 1px solid #c8d9ec;
}

.about-feature-lines article:last-child {
  border-right: 0;
}

.about-feature-lines strong {
  color: #0d4da0;
  font-size: 20px;
  line-height: 1.2;
}

.about-feature-lines p {
  margin: 0;
  color: #486484;
  font-size: 15px;
  line-height: 1.55;
}

.about-photo-strip {
  grid-column: 1 / -1;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-bottom: 1px solid #c8d9ec;
  background: #f3f8fd;
}

.about-photo-placeholder {
  min-height: 190px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgb(5 34 78 / 82%), rgb(5 34 78 / 12%) 72%),
    linear-gradient(135deg, #cbdff2, #eef6fc);
}

.about-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 6px;
}

.about-photo-placeholder span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.about-notes {
  grid-column: 1 / -1;
  padding: 24px clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-notes p {
  margin: 0;
  color: #486484;
  font-size: 16px;
  line-height: 1.6;
}

.about-storyline {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #c8d9ec;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(13 77 160 / 8%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(13 77 160 / 7%) 1px, transparent 1px),
    rgb(255 255 255 / 82%);
  background-size: 58px 58px;
  box-shadow: 0 18px 52px rgb(5 31 71 / 10%);
}

.about-story-scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1.14fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  min-height: 360px;
  padding: clamp(32px, 5vw, 64px);
  border-bottom: 1px solid #c8d9ec;
}

.about-story-scene:last-child {
  border-bottom: 0;
}

.about-story-scene.media-right {
  grid-template-columns: minmax(0, 1.14fr) minmax(260px, .86fr);
}

.about-story-scene.media-right .about-story-visual {
  order: 2;
}

.about-story-scene.compact {
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 260px;
}

.about-story-scene.compact.accent {
  background: rgb(247 251 255 / 74%);
}

.about-story-scene.modern-block {
  background: linear-gradient(135deg, rgb(5 41 97 / 96%), rgb(11 82 166 / 92%));
  color: #fff;
}

.about-story-scene.modern-block::before {
  display: none;
}

.about-story-visual {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgb(5 34 78 / 84%), rgb(5 34 78 / 10%) 68%),
    radial-gradient(circle at 24% 18%, rgb(255 255 255 / 72%), transparent 24%),
    linear-gradient(135deg, #c8dcf0, #eef6fc);
  box-shadow: 0 18px 40px rgb(5 31 71 / 14%);
}

.about-story-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 6px;
}

.about-story-visual span {
  position: relative;
  z-index: 1;
  max-width: 220px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.about-story-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.about-story-copy.wide {
  grid-column: 1 / -1;
  width: min(980px, 100%);
  justify-self: center;
}

.about-story-copy h3 {
  margin: 0;
  color: #082d66;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
}

.about-story-copy p {
  margin: 0;
  color: #3f5d7e;
  font-size: 17px;
  line-height: 1.68;
}

.modern-block .about-story-copy h3,
.modern-block .about-story-copy p,
.modern-block .about-kicker {
  color: #fff;
}

.about-year-mark {
  color: #0d4da0;
  font-size: clamp(68px, 10vw, 116px);
  font-weight: 900;
  line-height: .85;
}

.about-story-details {
  margin-top: 4px;
  padding: 16px 18px;
  border: 1px solid #c8d9ec;
  border-radius: 8px;
  background: rgb(255 255 255 / 70%);
}

.modern-block .about-story-details {
  border-color: rgb(255 255 255 / 24%);
  background: rgb(255 255 255 / 10%);
}

.about-story-details summary {
  width: max-content;
  max-width: 100%;
  color: #0d4da0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.modern-block .about-story-details summary {
  color: #fff;
}

.about-story-details p {
  margin-top: 14px;
  font-size: 16px;
}

.about-quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #c8d9ec;
  background: #f7fbff;
}

.about-quote-row article {
  padding: clamp(28px, 5vw, 48px);
  border-right: 1px solid #c8d9ec;
}

.about-quote-row article:last-child {
  border-right: 0;
}

.about-quote-row span {
  display: block;
  margin-bottom: 12px;
  color: #0d4da0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-quote-row p {
  margin: 0;
  color: #082d66;
  font-size: clamp(18px, 2.1vw, 23px);
  font-weight: 900;
  line-height: 1.35;
}

.about-number-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 10px 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 8px;
  background: rgb(255 255 255 / 18%);
}

.about-number-strip span {
  min-height: 110px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 6px;
  background: rgb(255 255 255 / 10%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-number-strip b {
  display: block;
  color: #ffd33d;
  font-size: 34px;
  line-height: 1;
}

.about-finale {
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  gap: 22px;
  background:
    linear-gradient(90deg, rgb(4 39 91 / 96%), rgb(4 67 135 / 92%)),
    radial-gradient(circle at 80% 20%, rgb(255 255 255 / 18%), transparent 34%);
  color: #fff;
}

.about-finale blockquote {
  margin: 0;
  color: #ffd33d;
  font-size: clamp(24px, 3.3vw, 40px);
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

.about-finale p {
  max-width: 1050px;
  margin: 0;
  color: rgb(255 255 255 / 86%);
  font-size: 18px;
  line-height: 1.7;
}

.timeline-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgb(4 39 91 / 96%), rgb(4 67 135 / 92%)),
    radial-gradient(circle at 82% 20%, rgb(255 255 255 / 18%), transparent 35%);
  color: #fff;
  box-shadow: 0 18px 52px rgb(4 39 91 / 22%);
}

.timeline-panel .eyebrow,
.timeline-panel h2 {
  color: #fff;
}

.outline-button {
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 45%);
  color: #fff;
  font-size: 12px;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 2px;
  background: rgb(255 255 255 / 38%);
}

.timeline-point {
  position: relative;
  display: grid;
  gap: 8px;
  color: #fff;
  min-width: 0;
}

.dot {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #69a8f0;
  box-shadow: 0 0 0 5px rgb(255 255 255 / 10%);
}

.timeline-point strong {
  font-size: 23px;
}

.timeline-point span:last-child {
  color: rgb(255 255 255 / 78%);
  line-height: 1.35;
}

.people-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.people-panel .people-cards.people-directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.person-card {
  overflow: hidden;
  min-height: 430px;
  display: grid;
  grid-template-rows: 270px 1fr;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 14px 36px rgb(22 62 111 / 10%);
  transition: transform .18s ease, box-shadow .18s ease;
}

.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgb(22 62 111 / 17%);
}

.person-image {
  position: relative;
  height: 270px;
  background: linear-gradient(135deg, #d7e7f7, #f7fbff);
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.person-image > span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #0d4da0;
  font-size: 72px;
  font-weight: 900;
}

.person-image em {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  border-radius: 4px;
  background: rgb(6 40 93 / 84%);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.person-info {
  min-height: 160px;
  padding: 14px 16px 16px;
  display: grid;
  grid-template-rows: auto minmax(28px, 1fr) auto;
  align-content: start;
}

.person-info h3 {
  margin: 0 0 6px;
  color: #0a2d65;
  font-size: 18px;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.person-info p {
  min-height: 28px;
  margin: 0 0 10px;
  color: #516a8e;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.person-info > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #b8cce4;
  border-radius: 4px;
  color: #0d4da0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  align-self: end;
}

.media-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.media-block {
  min-width: 0;
  padding: 20px;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 14px 36px rgb(22 62 111 / 8%);
}

.photo-preview-row,
.video-preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.video-preview-row {
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: start;
}

.photo-preview-row a,
.photo-preview-row button,
.video-preview-row a,
.video-preview-row button {
  position: relative;
  min-width: 0;
  color: #0a2d65;
}

.photo-preview-row img,
.video-preview-row img,
.video-preview-row video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  border-radius: 6px;
  margin-bottom: 8px;
}

.photo-preview-row .photo-only img {
  aspect-ratio: 16 / 10;
  margin-bottom: 0;
  box-shadow: 0 10px 24px rgb(22 62 111 / 10%);
}

.video-preview-row video {
  margin-bottom: 0;
}

.video-preview-row img {
  margin-bottom: 0;
}

.video-preview-row img,
.video-preview-row video {
  transform: scale(1.025);
}

.video-preview-row a,
.video-preview-row button {
  overflow: hidden;
  border-radius: 6px;
  background: #092455;
}

.photo-preview-row button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-preview-row button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.home-video-folder-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-preview-row .home-video-folder-card {
  display: block;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
}

.home-video-folder-cover {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #092455;
}

.home-video-folder-cover img,
.home-video-folder-cover video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  margin-bottom: 0;
  object-fit: cover;
  object-position: center center;
}

.home-video-folder-card .archive-video-title {
  padding: 10px 0 0;
  font-size: 17px;
}

.photo-preview-row .photo-only:hover img {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgb(22 62 111 / 16%);
}

.home-album-row .home-album-card {
  min-height: 190px;
  padding: 18px;
}

.home-album-row .home-album-card strong {
  position: static;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 23px;
}

.home-album-row .home-album-card p,
.home-album-row .home-album-card small {
  margin: 0;
}

.photo-preview-row strong {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #0d4da0;
  color: #fff;
  font-size: 12px;
}

.photo-preview-row span,
.video-preview-row strong {
  display: block;
  font-weight: 900;
  line-height: 1.25;
}

.video-preview-row .pause-icon {
  width: 44px;
  height: 44px;
}

.video-preview-row small {
  color: #516a8e;
}

.award-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.award-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 152px;
  padding: 14px;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 14px 36px rgb(105 72 18 / 10%);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.award-card img {
  width: 108px;
  height: 96px;
  object-fit: cover;
  border-radius: 5px;
}

.award-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0a2d65;
  line-height: 1.25;
}

.award-card span {
  display: block;
  margin-bottom: 6px;
  color: #82621f;
  font-weight: 800;
}

.award-card p {
  margin: 0;
  color: #516a8e;
  line-height: 1.35;
  font-size: 14px;
}

.site-footer {
  max-width: none;
  width: 100%;
  margin-top: 48px;
  padding: 30px clamp(24px, 6vw, 96px);
  background: linear-gradient(90deg, #05285c, #06214c);
  border-top: 0;
  color: rgb(255 255 255 / 78%);
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

@media (max-width: 1160px) {
  .home-quick {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .people-cards,
  .award-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .people-panel .people-cards.people-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .people-panel .directory-person {
    grid-template-rows: 245px 1fr;
  }

  .people-panel .directory-person-photo {
    height: 245px;
  }

  .people-panel .directory-person-body {
    min-height: 0;
    padding: 13px;
  }

  .people-panel .directory-person-body h2 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.16;
  }

  .people-panel .directory-person-positions {
    max-height: 36px;
    margin-bottom: 3px;
  }

  .people-panel .directory-position-text {
    max-height: 36px;
    font-size: 14px;
    line-height: 1.2;
  }

  .people-panel .person-periods {
    margin-bottom: 7px;
    font-size: 12px;
    line-height: 1.25;
  }

  .people-panel .person-tags a,
  .people-panel .person-tags span {
    padding: 5px 7px;
    font-size: 11px;
  }

  .people-panel .directory-person-meta {
    padding-top: 10px;
    gap: 8px;
  }

  .people-panel .directory-person-meta > span,
  .people-panel .directory-person-meta a {
    font-size: 11px;
  }

  .media-panel,
  .timeline-panel {
    grid-template-columns: 1fr;
  }

  .about-college {
    grid-template-columns: 1fr;
  }

  .about-story-scene,
  .about-story-scene.media-right,
  .about-story-scene.compact {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
  }

  .about-story-scene.media-right .about-story-visual {
    order: 0;
  }

  .about-number-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-quote-row {
    grid-template-columns: 1fr;
  }

  .about-quote-row article {
    border-right: 0;
    border-bottom: 1px solid #c8d9ec;
  }

  .about-quote-row article:last-child {
    border-bottom: 0;
  }

  .about-feature-lines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-feature-lines article:nth-child(2n) {
    border-right: 0;
  }

  .about-college-media {
    min-height: 300px;
  }

  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-grid,
  .about-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-grid article,
  .about-story-grid article:nth-child(3n),
  .about-story-grid article:nth-last-child(-n+3) {
    border-right: 1px solid #c8d9ec;
    border-bottom: 1px solid #c8d9ec;
  }

  .about-story-grid article:nth-child(2n) {
    border-right: 0;
  }

  .about-story-grid article:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .about-facts article:nth-child(2) {
    border-right: 0;
  }

  .timeline-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 70px;
  }

  .menu-toggle {
    background: rgb(255 255 255 / 12%);
    color: #fff;
    border: 1px solid rgb(255 255 255 / 25%);
  }

  .nav-links {
    background: #05285c;
    border-color: rgb(255 255 255 / 16%);
  }

  .home-hero {
    min-height: 620px;
  }

  .hero-bg {
    background-position: 62% top;
  }

  .home-quick {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-preview-row,
  .video-preview-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: 600px;
  }

  .hero-inner {
    padding: 52px 22px 138px;
  }

  .home-hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .home-quick,
  .about-grid,
  .people-cards,
  .media-panel,
  .award-row,
  .timeline-track {
    grid-template-columns: 1fr;
  }

  .people-panel .people-cards.people-directory-grid {
    grid-template-columns: 1fr;
  }

  .home-quick,
  .about-panel,
  .timeline-panel,
  .people-panel,
  .media-panel,
  .awards-panel {
    width: min(100% - 28px, 1180px);
  }

  .about-grid article {
    border-right: 0;
    border-bottom: 1px solid #c9d8e9;
  }

  .about-grid article:last-child {
    border-bottom: 0;
  }

  .about-college-copy,
  .about-notes {
    padding: 22px;
  }

  .about-story-scene {
    padding: 24px;
  }

  .about-story-visual {
    min-height: 230px;
  }

  .about-story-copy h3 {
    font-size: 29px;
  }

  .about-story-copy p,
  .about-finale p {
    font-size: 16px;
  }

  .about-year-mark {
    font-size: 64px;
  }

  .about-number-strip {
    grid-template-columns: 1fr;
  }

  .about-number-strip span {
    min-height: 88px;
  }

  .about-milestones,
  .about-facts,
  .about-story-grid,
  .about-feature-lines,
  .about-photo-strip,
  .about-notes {
    grid-template-columns: 1fr;
  }

  .about-feature-lines article,
  .about-feature-lines article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid #c8d9ec;
  }

  .about-feature-lines article:last-child {
    border-bottom: 0;
  }

  .about-college-media {
    min-height: 240px;
  }

  .about-facts article {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid #c8d9ec;
  }

  .about-facts article:last-child {
    border-bottom: 0;
  }

  .about-story-grid article,
  .about-story-grid article:nth-child(2n),
  .about-story-grid article:nth-child(3n),
  .about-story-grid article:nth-last-child(-n+2),
  .about-story-grid article:nth-last-child(-n+3) {
    border-right: 0;
    border-bottom: 1px solid #c8d9ec;
  }

  .about-story-grid article:last-child {
    border-bottom: 0;
  }

  .timeline-track::before {
    display: none;
  }

  .award-card {
    grid-template-columns: 92px 1fr;
  }

  .award-card img {
    width: 92px;
    height: 86px;
  }
}

/* Refined home layout */
.home-hero {
  min-height: clamp(460px, 54vw, 585px);
}

.home-hero::after {
  display: none;
}

.hero-bg {
  background-position: center top;
  background-size: cover;
  transform: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(239 246 252 / 98%) 0%, rgb(239 246 252 / 86%) 31%, rgb(239 246 252 / 28%) 58%, rgb(5 31 72 / 4%) 100%),
    linear-gradient(0deg, rgb(4 31 77 / 18%) 0%, transparent 24%);
}

.hero-inner {
  width: min(1180px, 100%);
  padding: clamp(58px, 7vw, 92px) 30px 118px;
  padding-bottom: 118px;
}

.home-hero h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 560px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
  font-weight: 500;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(76px, 8vw, 120px);
  color: #edf4fb;
  filter: drop-shadow(0 -12px 18px rgb(3 28 68 / 10%));
  z-index: 1;
}

.hero-wave path {
  fill: currentColor;
}

.home-quick {
  margin-top: 24px;
}

.about-panel,
.people-panel,
.media-panel {
  padding-top: 42px;
}

.media-panel {
  gap: 18px;
}

.media-block {
  overflow: hidden;
}

.media-block + .media-block {
  margin-top: 0;
}

.video-preview-row a,
.video-preview-row button {
  min-height: 0;
}

.video-preview-row img {
  background: #092455;
}

.compact-awards {
  grid-template-columns: repeat(3, 1fr);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.home-quick.reveal.is-visible a,
.people-panel.reveal.is-visible .person-card {
  animation: homeRise .62s cubic-bezier(.2,.7,.2,1) both;
}

.home-quick.reveal.is-visible a:nth-child(2),
.people-panel.reveal.is-visible .person-card:nth-child(2) {
  animation-delay: .08s;
}

.home-quick.reveal.is-visible a:nth-child(3),
.people-panel.reveal.is-visible .person-card:nth-child(3) {
  animation-delay: .16s;
}

.home-quick.reveal.is-visible a:nth-child(4),
.people-panel.reveal.is-visible .person-card:nth-child(4) {
  animation-delay: .24s;
}

@keyframes homeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .home-hero {
    min-height: 540px;
  }

  .hero-bg {
    background-position: right top;
    transform-origin: top right;
  }

  .site-header {
    border-bottom: 0;
  }

  .compact-awards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  body > main:has(> .home-hero:first-child) {
    margin-top: -1px;
  }

  .site-header {
    border-bottom: 0;
    box-shadow: none;
  }

  .hero-bg {
    background-position: right top;
    transform-origin: top right;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: 520px;
  }

  .hero-inner {
    padding-top: 46px;
    padding-bottom: 112px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .home-quick {
    margin-top: 18px;
  }

  .photo-preview-row,
  .video-preview-row,
  .compact-awards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .home-hero h1 {
    max-width: 360px;
    font-size: clamp(38px, 5.2vw, 44px);
  }

  .hero-lead {
    max-width: 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Archive hub */
.hero-inner {
  padding-top: clamp(42px, 5.6vw, 76px);
  padding-left: 18px;
}

.home-quick {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-head,
.archive-tabs {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.archive-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .62fr);
  gap: 34px;
  align-items: end;
  padding: clamp(44px, 6vw, 74px) 0 26px;
}

.archive-head h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #06285d;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.03;
}

.archive-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #4a6388;
  font-size: 18px;
  line-height: 1.65;
}

.archive-filter {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 16px 42px rgb(22 62 111 / 10%);
}

.archive-filter label {
  display: grid;
  gap: 7px;
}

.archive-filter label span {
  color: #0a2d65;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-filter select {
  min-height: 128px;
}

.archive-filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.archive-tabs {
  padding-bottom: 20px;
}

.archive-tabbar {
  position: sticky;
  top: 86px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: rgb(241 247 253 / 92%);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgb(22 62 111 / 8%);
}

.archive-tabbar button {
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #0a2d65;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.archive-tabbar button span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  margin-left: 8px;
  border-radius: 999px;
  background: #dfeaf6;
  color: #31557f;
  font-size: 12px;
}

.archive-tabbar button.is-active {
  background: #06285d;
  color: #fff;
  box-shadow: 0 10px 26px rgb(6 40 93 / 18%);
}

.archive-tabbar button.is-active span {
  background: rgb(255 255 255 / 18%);
  color: #fff;
}

.archive-panel {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 16px 42px rgb(22 62 111 / 8%);
}

.archive-panel[hidden] {
  display: none !important;
}

.archive-panel.is-active {
  animation: archiveIn .28s ease both;
}

@keyframes archiveIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.archive-collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.archive-collections a {
  min-height: 86px;
  padding: 14px;
  display: grid;
  align-content: space-between;
  border-radius: 7px;
  background: linear-gradient(135deg, #06285d, #0d4da0);
  color: #fff;
}

.archive-collections span {
  color: rgb(255 255 255 / 74%);
}

.archive-photo-grid,
.archive-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.archive-video-grid {
  align-items: start;
}

.archive-photo-grid a,
.archive-video-grid a,
.archive-video-grid .archive-video-item,
.archive-award-grid a {
  min-width: 0;
  border: 1px solid #d3e1ef;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  color: #0a2d65;
  transition: transform .18s ease, box-shadow .18s ease;
}

.archive-video-grid .archive-video-item {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-rows: auto 1fr;
  padding: 0;
  appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.archive-video-grid .archive-video-item.is-titleless {
  align-self: start;
  grid-template-rows: auto;
}

.archive-video-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #092455;
}

.archive-video-media img,
.archive-video-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.025);
}

.archive-video-media > .pause-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.archive-video-title {
  display: block;
  padding: 10px 12px 12px;
  color: #0a2d65;
  font-family: Manrope, "Segoe UI", Inter, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.22;
  text-shadow: none;
}

.archive-photo-grid a:hover,
.archive-video-grid a:hover,
.archive-video-grid .archive-video-item:hover,
.archive-award-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgb(22 62 111 / 12%);
}

.archive-photo-grid a {
  position: relative;
}

.archive-photo-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.archive-photo-grid a > span {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #0d4da0;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.archive-photo-grid strong,
.archive-video-grid strong {
  display: block;
  padding: 12px 12px 14px;
  line-height: 1.25;
}

.archive-video-grid p,
.archive-award-grid p {
  margin: -4px 12px 12px;
  color: #5c7190;
  line-height: 1.4;
}

.archive-video-grid small {
  display: block;
  padding: 0 12px 14px;
  color: #82621f;
  font-weight: 900;
}

.archive-award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.archive-award-grid a {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 14px;
  padding: 12px;
  align-items: center;
}

.archive-award-grid img {
  width: 122px;
  height: 104px;
  object-fit: cover;
  border-radius: 6px;
}

.archive-award-grid strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.25;
}

.archive-award-grid span {
  color: #82621f;
  font-weight: 900;
}

@media (max-width: 980px) {
  .archive-head {
    grid-template-columns: 1fr;
  }

  body > main:has(> .archive-hero:first-child) {
    margin-top: -68px;
    padding-top: 0;
  }

  body > main:has(> .archive-hero:first-child) > .archive-hero:first-child {
    padding-top: 68px;
  }

  .archive-tabbar {
    top: 78px;
  }

  .archive-collections,
  .archive-photo-grid,
  .archive-video-grid,
  .archive-award-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding-left: 22px;
  }

  .home-quick,
  .archive-tabbar,
  .archive-collections,
  .archive-photo-grid,
  .archive-video-grid,
  .archive-award-grid {
    grid-template-columns: 1fr;
  }

  .archive-head,
  .archive-tabs {
    width: min(100% - 28px, 1180px);
  }

  .archive-filter-actions {
    grid-template-columns: 1fr;
  }

  .archive-award-grid a {
    grid-template-columns: 92px 1fr;
  }

  .archive-award-grid img {
    width: 92px;
    height: 86px;
  }
}

@media (max-width: 430px) {
  .archive-tabbar,
  .archive-workspace .archive-tabbar {
    position: static;
    top: auto;
  }
}

@media (max-width: 768px) {
  .material-dialog {
    width: min(100% - 18px, 680px);
    max-height: calc(100dvh - 18px);
    border-radius: 8px;
  }

  .material-dialog:has(.material-modal-media:only-child) {
    width: fit-content;
    max-width: calc(100% - 18px);
    background: #f5f9fd;
  }

  .material-dialog-close,
  .material-dialog-nav {
    border-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #0d4da0 !important;
  }

  .material-dialog-close::before,
  .material-dialog-close::after {
    background: #0d4da0 !important;
  }

  .material-dialog-nav::before {
    border-color: #0d4da0 !important;
    filter: none;
  }

  .material-dialog-prev {
    left: 2px;
  }

  .material-dialog-next {
    right: 2px;
  }

  .material-dialog-content {
    max-height: calc(100dvh - 18px);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    overflow: hidden;
  }

  .material-dialog-content:has(.material-modal-media:only-child) {
    grid-template-rows: auto;
  }

  .material-modal-media,
  .material-modal-info {
    min-height: 0;
    max-height: none;
  }

  .material-modal-media:not(.video):not(.award) {
    height: auto;
    max-height: min(58dvh, 500px);
    padding: 6px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #f5f9fd;
  }

  .material-dialog-content:has(.material-modal-media:only-child) .material-modal-media:not(.video):not(.award) {
    min-height: 0;
    max-height: min(58dvh, 500px);
    border-radius: 8px;
  }

  .material-modal-media:not(.video):not(.award) img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(min(58dvh, 500px) - 12px);
    margin: 0 auto;
    border-radius: 7px;
    object-fit: contain;
    object-position: center;
  }

  .material-dialog-content:has(.material-modal-media:only-child) .material-modal-media:not(.video):not(.award) img {
    max-height: calc(min(58dvh, 500px) - 12px);
  }

  .material-modal-media.video {
    height: min(52dvh, 380px);
  }

  .material-modal-media.video video {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .material-modal-info {
    max-height: min(32dvh, 260px);
    padding: 20px 22px 22px;
    overflow-x: hidden;
    overflow-y: auto;
    align-content: start;
  }

  .material-modal-info h1 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.12;
  }

  .material-modal-info h2 {
    margin: 16px 0 8px;
    font-size: 13px;
  }

  .material-modal-info > p,
  .material-description,
  .material-description p {
    font-size: 14px;
    line-height: 1.45;
  }

  .material-people {
    gap: 6px;
  }

  .material-people a,
  .material-people span {
    padding: 7px 9px;
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .material-dialog {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
  }

  .material-dialog:has(.material-modal-media:only-child) {
    width: fit-content;
    max-width: calc(100% - 12px);
  }

  .material-dialog-content {
    max-height: calc(100dvh - 12px);
    grid-template-rows: auto auto;
  }

  .material-dialog-content:has(.material-modal-media:only-child) {
    grid-template-rows: auto;
  }

  .material-modal-media:not(.video):not(.award) {
    max-height: min(54dvh, 360px);
  }

  .material-modal-media:not(.video):not(.award) img {
    max-height: min(54dvh, 360px);
  }

  .material-dialog-content:has(.material-modal-media:only-child) .material-modal-media:not(.video):not(.award),
  .material-dialog-content:has(.material-modal-media:only-child) .material-modal-media:not(.video):not(.award) img {
    max-height: min(54dvh, 360px);
  }

  .material-modal-info {
    max-height: min(36dvh, 240px);
    padding: 16px 16px 18px;
  }

  .material-modal-info h1 {
    font-size: 20px;
    line-height: 1.12;
  }

  .material-modal-info > p,
  .material-description,
  .material-description p {
    font-size: 13px;
    line-height: 1.4;
  }

  .material-people a,
  .material-people span {
    font-size: 12px;
  }
}
/* People directory */
.team-hero {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  color: #fff;
  background:
    linear-gradient(90deg, rgb(5 40 92 / 96%), rgb(5 55 117 / 78%)),
    url("../img/home-hero.c503adf7db8a.webp") center 18% / cover;
}

.team-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 48px;
  background: #edf4fb;
  clip-path: polygon(0 62%, 12% 42%, 26% 68%, 41% 46%, 56% 66%, 72% 40%, 86% 62%, 100% 44%, 100% 100%, 0 100%);
}

.team-hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 300px;
  margin: 0 auto;
  padding: 54px 0 76px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.team-hero h1 {
  max-width: 740px;
  margin: 0 0 14px;
  color: #fff;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.team-hero p {
  max-width: 720px;
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-size: 18px;
  line-height: 1.55;
}

.team-hero-stat {
  flex: 0 0 auto;
  min-width: 170px;
  padding: 18px;
  border-left: 1px solid rgb(255 255 255 / 35%);
}

.team-hero-stat strong,
.team-hero-stat span {
  display: block;
}

.team-hero-stat strong {
  font-size: 38px;
}

.team-hero-stat span {
  color: rgb(255 255 255 / 72%);
}

.people-directory {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.people-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(360px, 1.5fr) minmax(220px, .8fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 16px 42px rgb(22 62 111 / 9%);
}

.people-search-field {
  grid-column: 1 / -1;
}

.people-search-field > label,
.people-filters legend,
.switch-title,
.filter-footer > label > span,
.period-fields label span {
  color: #173d73;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.people-search-field input {
  width: 100%;
  margin-top: 8px;
}

.people-filters fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.student-filters .years-filter {
  grid-column: 1 / -1;
}

.category-filter,
.years-filter {
  grid-column: 1 / -1;
}

.people-filters legend {
  margin-bottom: 9px;
}

.filter-checks {
  display: grid;
  gap: 8px;
}

.category-filter .filter-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter-checks.compact {
  grid-template-columns: 1fr 1fr;
}

.filter-checks label {
  min-height: 42px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d4e1ef;
  border-radius: 6px;
  background: #f7fbff;
  color: #26486f;
  font-weight: 700;
  cursor: pointer;
}

.filter-checks input {
  width: 17px;
  height: 17px;
  min-height: 0;
  accent-color: #0d4da0;
}

.period-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.period-fields.with-year {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.period-fields.with-year .active-year-field {
  grid-column: auto;
}

.period-fields label,
.filter-footer > label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.period-fields label span {
  letter-spacing: 0;
  white-space: nowrap;
}

.period-fields input,
.period-fields select,
.filter-footer select {
  width: 100%;
  min-width: 0;
}

.filter-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #d8e4f0;
}

.filter-switch-row {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(420px, 520px);
  gap: 10px;
  align-items: end;
}

.student-filter-row {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 280px) minmax(210px, 240px) minmax(160px, 180px) auto;
  justify-content: space-between;
  align-items: end;
}

.switch-group {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.switch-title {
  letter-spacing: 0;
}

.photo-filter {
  min-width: 0;
}

.photo-filter select {
  width: 100%;
  min-width: 0;
}

.photo-filter .filter-checks.compact {
  grid-template-columns: 1fr;
}

.student-sort-field,
.student-graduation-year-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.student-sort-field > span,
.student-graduation-year-field > span {
  color: #173d73;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.student-sort-field select,
.student-graduation-year-field input {
  width: 100%;
  min-width: 0;
}

.student-filter-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 1px;
}

.view-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  border: 1px solid #d4e1ef;
  border-radius: 7px;
  background: #f2f7fc;
}

.status-switch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.status-switch span {
  padding: 0 6px;
}

.view-switch label {
  cursor: pointer;
}

.view-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.view-switch span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #486484;
  font-weight: 800;
  white-space: nowrap;
}

.view-switch input:checked + span {
  background: #0a3b7b;
  color: #fff;
  box-shadow: 0 8px 20px rgb(6 40 93 / 16%);
}

.filter-footer > label {
  width: min(260px, 100%);
}

.filter-footer > div:not(.filter-switch-row) {
  display: flex;
  gap: 10px;
}

.student-filters .filter-footer {
  justify-content: flex-end;
}

.people-results-head {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #5b7190;
}

.people-results-head p {
  margin: 0;
}

.people-results-head strong {
  color: #0a2d65;
}

.people-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.people-directory-grid.is-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.people-directory-grid.is-rows .directory-person {
  min-height: 0;
  display: block;
}

.people-directory-grid.is-rows .directory-person-photo {
  display: none;
}

.people-directory-grid.is-rows .directory-person-body {
  min-height: 0;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(150px, .7fr) minmax(210px, .9fr) minmax(210px, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.people-directory-grid.is-rows .directory-person-body h2,
.people-directory-grid.is-rows .directory-person-body > p {
  min-height: 0;
  margin: 0;
}

.people-directory-grid.is-rows .person-tags {
  min-width: 0;
}

.people-directory-grid.is-rows .person-periods {
  margin: 0;
}

.people-directory-grid.is-rows .directory-person-meta {
  margin: 0;
  padding: 0;
  border-top: 0;
  white-space: nowrap;
}

.people-directory-grid.is-rows .directory-person-meta > span {
  display: none;
}

.students-directory-grid.is-rows .directory-person-body {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, .75fr) minmax(220px, 1fr) auto;
}

.students-directory-grid.is-rows .directory-person-meta {
  justify-self: end;
}

.students-directory-grid.is-rows .person-periods {
  white-space: nowrap;
}

.directory-person {
  min-width: 0;
  overflow: visible;
  display: grid;
  grid-template-rows: 230px 1fr;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgb(22 62 111 / 8%);
}

.directory-person.is-appending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .42s ease, transform .42s ease;
}

.directory-person.is-appending.is-appended {
  opacity: 1;
  transform: translateY(0);
}

.directory-person-photo {
  position: relative;
  overflow: hidden;
  background: #dbe9f6;
}

.directory-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .3s ease;
}

.directory-person:hover .directory-person-photo img {
  transform: scale(1.025);
}

.directory-person-photo > em {
  position: absolute;
  left: 12px;
  top: auto;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  border-radius: 4px;
  background: rgb(6 40 93 / 86%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: normal;
}

.directory-person-photo .no-portrait {
  position: static;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #dceafa, #b9d0e8);
  color: #0d4da0;
  font-size: 76px;
  font-weight: 800;
  text-transform: uppercase;
}

.directory-person-body {
  min-height: 220px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.directory-person-body h2 {
  margin: 0 0 6px;
  font-family: inherit;
  font-size: 21px;
  line-height: 1.18;
  text-transform: none;
}

.directory-person-body h2 a {
  color: #0a2d65;
}

.directory-person-body > p {
  min-height: 24px;
  margin: 0 0 12px;
  color: #617694;
}
.directory-person-positions {
  position: relative;
  min-height: 0;
  max-height: 40px;
  margin: 0 0 2px;
  cursor: default;
}
.directory-position-text {
  display: -webkit-box;
  max-height: 40px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #617694;
  line-height: 1.25;
}
.directory-position-tooltip {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 12;
  width: min(320px, 82vw);
  padding: 10px 12px;
  border: 1px solid rgb(16 77 142 / 22%);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgb(8 35 72 / 18%);
  color: #0c315f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
}

.directory-person-clickable {
  cursor: pointer;
}

.directory-person-clickable a,
.directory-person-clickable button {
  cursor: pointer;
}

.directory-person-positions:hover .directory-position-tooltip {
  display: none;
}

.person-periods {
  margin-bottom: 9px;
  display: grid;
  gap: 4px;
  color: #486484;
  font-size: 13px;
  line-height: 1.35;
}

.person-periods span {
  display: block;
}

.person-periods b {
  color: #173d73;
}

.person-tags,
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.person-tags span,
.person-tags a,
.profile-tags span,
.profile-tags a {
  padding: 6px 9px;
  border-radius: 4px;
  background: #eaf3fc;
  color: #245587;
  font-size: 12px;
  font-weight: 800;
}

.person-tags a:hover,
.profile-tags a:hover {
  background: #0d4da0;
  color: #fff;
}

.directory-person-meta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e0e9f2;
}

.directory-person-meta > span {
  color: #6b7e99;
  font-size: 13px;
}

.directory-person-meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0d4da0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.people-empty {
  grid-column: 1 / -1;
  padding: 54px 24px;
  text-align: center;
  border: 1px dashed #a9bfd9;
  border-radius: 8px;
  background: rgb(255 255 255 / 60%);
}

.people-empty h2 {
  margin-bottom: 8px;
}

.pagination {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.pagination a {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(6 40 93 / 46%);
  border-radius: 5px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
}

.pagination a:hover,
.pagination a:focus-visible {
  background: #06285d;
  border-color: #06285d;
  color: #fff;
}

.pagination-show-all {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.pagination-show-all a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pagination-show-all a:hover,
.pagination-show-all a:focus-visible {
  color: #041f4a;
}

/* Person profile */
.person-profile {
  position: relative;
  isolation: isolate;
  background-color: #eef6fd;
  background-image: none !important;
  --profile-hero-image: url("../img/home-hero.c503adf7db8a.webp");
  background-color: #eef6fd;
  border-bottom: 1px solid #c6d8ec;
  overflow: hidden;
}

.person-profile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(620px, 72vh);
  z-index: -2;
  pointer-events: none;
  background: var(--profile-hero-image) center top / cover no-repeat;
}

.person-profile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgb(238 246 253 / 34%) 0,
    rgb(238 246 253 / 42%) 70px,
    rgb(238 246 253 / 46%) 190px,
    rgb(238 246 253 / 72%) 330px,
    rgb(238 246 253 / 92%) 470px,
    #eef6fd 600px
  );
}

.person-profile.is-description-expanded {
  background-position: center top;
}

.person-profile.no-profile-content {
  min-height: auto;
  border-bottom: 0;
}

body:has(.person-profile.no-profile-content) > main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

body:has(.person-profile.no-profile-content) .person-profile.no-profile-content {
  flex: 1 0 auto;
}

body:has(.person-profile.no-profile-content) .site-footer {
  margin-top: 0;
}

body:has(.person-profile.no-profile-content) .site-footer-inner {
  padding: 42px 0;
}

.person-profile-inner,
.person-profile-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.person-profile-inner {
  padding: 28px 0 44px;
}

.profile-back {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 800;
}

.profile-back:hover,
.profile-back:focus-visible {
  color: #041f4a;
}

.person-profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.person-profile-photo {
  height: 390px;
  overflow: hidden;
  border: 1px solid #b8cce4;
  border-radius: 8px;
  background: #dbe9f6;
  box-shadow: 0 18px 44px rgb(22 62 111 / 14%);
}

.person-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.profile-no-photo {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #dceafa, #b9d0e8);
  color: #0d4da0;
  font-size: 108px;
  font-weight: 800;
}

.profile-role {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 4px;
  background: #0a3b7b;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.person-profile-copy h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #06285d;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  text-shadow:
    0 1px 0 rgb(255 255 255 / 92%),
    1px 0 0 rgb(255 255 255 / 88%),
    -1px 0 0 rgb(255 255 255 / 88%),
    0 -1px 0 rgb(255 255 255 / 80%),
    0 3px 14px rgb(255 255 255 / 62%);
}

.profile-fact {
  margin-top: 20px;
}

.profile-fact h2 {
  margin: 0 0 10px;
  color: #486484;
  font-family: inherit;
  font-size: 13px;
  text-transform: uppercase;
}

.profile-description-wrap {
  max-width: 780px;
  margin: 24px 0 0;
}

.profile-description {
  margin: 0;
  color: #486484;
  font-size: 17px;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow: hidden;
  transition: max-height .65s cubic-bezier(.22, 1, .36, 1);
  will-change: max-height;
}

.profile-description-wrap.is-collapsed .profile-description {
  max-height: calc(1.65em * 3);
}

.profile-description-toggle {
  margin-top: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0d4da0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.profile-description-toggle:hover {
  color: #06285d;
}

.person-profile-content {
  padding: 38px 0 56px;
}

.profile-section {
  margin-bottom: 36px;
}

.profile-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b8cce4;
}

.profile-section-title h2 {
  margin: 0;
  color: #0a2d65;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 36px);
}

.profile-section-title a {
  color: #0d4da0;
  font-weight: 800;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-actions button {
  width: 38px;
  height: 38px;
  border: 1px solid #b8cce4;
  border-radius: 5px;
  background: #fff;
  color: #0d4da0;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.section-actions button:hover {
  border-color: #0d4da0;
  background: #0d4da0;
  color: #fff;
}

.period-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.period-list article {
  padding: 16px;
  border-left: 3px solid #0d4da0;
  border-radius: 0 7px 7px 0;
  background: #fff;
  box-shadow: 0 10px 28px rgb(22 62 111 / 7%);
}

.period-list strong,
.period-list span {
  display: block;
}

.period-list strong {
  margin-bottom: 7px;
  color: #0a2d65;
  font-size: 20px;
}

.period-list span {
  color: #486484;
}

.period-list p {
  margin: 8px 0 0;
  color: #6b7e99;
}

.profile-awards-grid,
.profile-video-grid {
  display: flex;
  gap: 14px;
}

.profile-awards-grid > a {
  flex: 0 0 min(390px, 85vw);
  min-height: 130px;
  padding: 12px;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid #d8c99e;
  border-radius: 8px;
  background: #fffaf0;
}

.profile-awards-grid img {
  width: 108px;
  height: 104px;
  object-fit: cover;
  border-radius: 5px;
}

.profile-awards-grid strong,
.profile-awards-grid span {
  display: block;
}

.profile-awards-grid strong {
  color: #0a2d65;
  line-height: 1.25;
}

.profile-awards-grid span {
  margin-top: 7px;
  color: #82621f;
  font-weight: 800;
}

.profile-awards-grid p {
  margin: 7px 0 0;
  color: #697891;
  line-height: 1.35;
}

.profile-photo-grid {
  display: flex;
  gap: 10px;
}

.profile-photo-grid .profile-photo-card {
  flex: 0 0 min(270px, 72vw);
}

.profile-photo-grid a,
.profile-photo-grid .profile-photo-button {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: #dbe9f6;
  cursor: pointer;
}

.profile-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease;
}

.profile-photo-grid a:hover img,
.profile-photo-grid .profile-photo-button:hover img {
  transform: scale(1.035);
}

.profile-video-grid > a,
.profile-video-grid > button {
  flex: 0 0 min(340px, 82vw);
  overflow: hidden;
  padding: 0;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.scroll-row {
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #9bbbe0 transparent;
}

.scroll-row > a,
.scroll-row > button,
.scroll-row > .profile-photo-card {
  scroll-snap-align: start;
}

.profile-video-grid > a > div,
.profile-video-grid > button > div {
  position: relative;
  min-height: 170px;
  background: #092455;
}

.profile-video-grid img,
.profile-video-grid video {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.profile-video-grid > a > div span,
.profile-video-grid > button > div span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgb(6 40 93 / 84%);
  color: #fff;
}

.profile-video-grid strong,
.profile-video-grid small {
  display: block;
  padding: 0 13px;
}

.profile-video-grid strong {
  padding-top: 12px;
  color: #0a2d65;
}

.profile-video-grid small {
  padding-top: 5px;
  padding-bottom: 13px;
  color: #6b7e99;
}

.profile-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px;
  border: 1px dashed #a9bfd9;
  border-radius: 7px;
  color: #6b7e99;
  background: rgb(255 255 255 / 58%);
}

@media (max-width: 980px) {
  .people-filters {
    grid-template-columns: 1fr 1fr;
  }

  .filter-switch-row {
    grid-template-columns: 1fr;
  }

  .student-filter-row {
    grid-template-columns: minmax(180px, 220px) minmax(150px, 170px) minmax(130px, 150px) minmax(190px, auto);
    align-items: end;
  }

  .student-filter-actions {
    justify-content: flex-start;
  }

  .period-fields.with-year {
    grid-template-columns: 1fr 1fr;
  }

  .years-filter {
    grid-column: 1 / -1;
  }

  .people-directory-grid,
  .period-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .person-profile-grid {
    grid-template-columns: 260px 1fr;
    gap: 26px;
  }

  .person-profile-photo {
    height: 340px;
  }

  .people-directory-grid.is-rows .directory-person-body {
    grid-template-columns: 1fr 1fr;
  }

  .people-directory-grid.is-rows .directory-person-meta {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .team-hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 40px;
    align-items: start;
    flex-direction: column;
  }

  .team-hero-stat {
    padding: 0;
    border-left: 0;
  }

  .people-directory,
  .person-profile-inner,
  .person-profile-content {
    width: min(100% - 28px, 1180px);
  }

  .people-filters,
  .people-directory-grid,
  .person-profile-grid,
  .period-list {
    grid-template-columns: 1fr;
  }

  .period-fields,
  .period-fields.with-year {
    grid-template-columns: 1fr;
  }

  .years-filter {
    grid-column: auto;
  }

  .filter-footer,
  .profile-section-title {
    align-items: stretch;
    flex-direction: column;
  }

  .section-actions {
    justify-content: space-between;
  }

  .people-directory-grid.is-rows .directory-person-body {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .people-directory-grid.is-rows .directory-person-meta {
    justify-content: flex-start;
  }

  .filter-footer > label {
    width: 100%;
  }

  .filter-footer > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .student-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .person-profile-photo {
    height: min(430px, 115vw);
  }

  .profile-awards-grid > a {
    grid-template-columns: 92px 1fr;
  }

  .profile-awards-grid img {
    width: 92px;
    height: 90px;
  }
}

@media (max-width: 520px) {
  .people-filters {
    gap: 12px;
    padding: 14px;
  }

  .filter-footer {
    gap: 12px;
  }

  .filter-footer > div:not(.filter-switch-row) {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .filter-footer > div:not(.filter-switch-row) .button {
    min-height: 38px;
    padding: 10px 14px;
  }

  .people-filters:not(.student-filters) .filter-footer > div:not(.filter-switch-row) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .people-filters:not(.student-filters) .filter-footer > div:not(.filter-switch-row) .button {
    min-height: 44px;
    padding: 12px 16px;
    justify-content: center;
  }

  .student-filter-actions {
    gap: 10px;
    width: 100%;
  }

  .student-filter-actions .button {
    min-height: 44px;
    padding: 12px 16px;
    justify-content: center;
  }

  .filter-footer > .filter-switch-row,
  .filter-switch-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .switch-group {
    gap: 6px;
  }

  .switch-title {
    font-size: 11px;
  }

  .category-filter .filter-checks,
  .filter-checks.compact {
    grid-template-columns: 1fr;
  }

  .filter-checks label {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .view-switch,
  .status-switch {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 3px;
  }

  .view-switch span {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }
}

/* Final archive overrides */
.team-hero::after { display: none; }
.archive-workspace .archive-photo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.archive-workspace .archive-video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.archive-workspace .archive-award-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.archive-workspace .archive-award-item img { width: 112px; height: 112px; }

.awards-filter {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: rgb(255 255 255 / 90%);
}

.awards-filter > label {
  display: grid;
  gap: 7px;
}

.awards-filter > label span {
  color: #173d73;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.awards-filter > label input {
  width: 100%;
}

.folder-search {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #c6d8ec;
  border-radius: 8px;
  background: rgb(255 255 255 / 88%);
}

.folder-search label {
  display: grid;
  gap: 7px;
}

.folder-search label span {
  color: #173d73;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-folder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.archive-subfolders {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
}

.archive-subfolders h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 22px;
  font-weight: 900;
}

.archive-folder-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 18px;
  display: flex;
  align-items: end;
  border: 1px solid #b9cee5;
  border-radius: 8px;
  background: linear-gradient(145deg, #dbe9f7, #f7fbff);
  box-shadow: 0 12px 30px rgb(22 62 111 / 9%);
}

.archive-folder-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-folder-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(5 34 78 / 88%), rgb(5 34 78 / 8%) 70%);
}

.archive-folder-card > div {
  position: relative;
  z-index: 2;
  color: #fff;
}

.archive-folder-card strong,
.archive-folder-card p,
.archive-folder-card small {
  display: block;
}

.archive-folder-card strong {
  margin-bottom: 6px;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.1;
}

.archive-folder-card p {
  margin: 0 0 5px;
  color: rgb(255 255 255 / 82%);
}

.archive-folder-card small {
  color: rgb(255 255 255 / 65%);
}

.archive-folder-card.all-folder {
  min-height: 150px;
  grid-column: 1 / -1;
  background: linear-gradient(100deg, #06285d, #0d4da0);
}

.archive-folder-card.all-folder::after {
  background: transparent;
}

.folder-icon {
  position: absolute;
  right: 24px;
  top: 28px;
  width: 86px;
  height: 58px;
  border-radius: 6px;
  background: rgb(255 255 255 / 16%);
}

.folder-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -10px;
  width: 34px;
  height: 14px;
  border-radius: 5px 5px 0 0;
  background: inherit;
}

.folder-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.folder-toolbar > div > a {
  color: var(--blue);
  font-weight: 800;
}

.folder-toolbar > div > a:hover,
.folder-toolbar > div > a:focus-visible {
  color: #041f4a;
}

.folder-toolbar h2 {
  margin: 8px 0 4px;
  color: #0a2d65;
  font-family: Cambria, Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 40px);
}

.folder-toolbar p {
  margin: 0;
  color: #6b7e99;
}

.folder-toolbar .folder-description {
  width: 100%;
  margin-top: 10px;
  color: #405b7c;
  font-size: 17px;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: normal;
}

.folder-toolbar .folder-description p {
  max-width: none;
  margin: 0 0 8px;
  white-space: pre-wrap;
}

.folder-toolbar .folder-description p:last-child {
  margin-bottom: 0;
}


.archive-workspace .archive-photo-item img {
  aspect-ratio: 1;
}

.archive-workspace .archive-video-media {
  aspect-ratio: 16 / 9;
}

.archive-workspace .archive-video-media img,
.archive-workspace .archive-video-media video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

@media (max-width: 980px) {
  .archive-workspace .archive-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .archive-workspace .archive-award-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-folder-grid { grid-template-columns: repeat(2, 1fr); }
  .folder-toolbar { grid-template-columns: 1fr; }
  .awards-filter { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .archive-workspace .archive-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-workspace .archive-video-grid,
  .archive-workspace .archive-award-grid { grid-template-columns: 1fr; }
  .archive-workspace .archive-award-item img { width: 92px; height: 92px; }
  .folder-search,
  .awards-filter {
    grid-template-columns: 1fr;
  }
  .archive-folder-grid { grid-template-columns: 1fr; }
  .archive-folder-card.all-folder { grid-column: auto; }
}

/* Unified sans-serif typography */
*,
*::before,
*::after {
  font-family: Manrope, "Segoe UI", Inter, Arial, sans-serif !important;
}

body {
  padding-top: 76px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
}

/* Header and footer container alignment */
.site-header {
  padding: 0;
}

.site-header-inner {
  width: min(var(--content-max), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  padding: 0;
}

.site-footer-inner {
  width: min(var(--content-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer-inner p {
  margin: 0;
}

.footer-official-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  max-width: min(170px, 34vw);
}

.footer-official-logo img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .site-header-inner {
    width: min(100% - 28px, var(--content-max));
  }

  .site-header .nav-links {
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 68px;
  }

  .site-footer-inner {
    width: min(100% - 28px, var(--content-max));
    display: grid;
    gap: 14px;
  }

  .footer-official-logo {
    justify-content: flex-start;
    max-width: min(150px, 58vw);
  }
}


/* PEOPLE_CARDS_BALANCED_V2 */


.person-card {
  min-height: 0;
  grid-template-rows: 300px 1fr;
}

.person-image {
  height: 300px;
  aspect-ratio: auto;
  overflow: hidden;
  background: linear-gradient(145deg, #eaf2fa, #d8e7f5);
}

.person-image img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center 18%;
}


.directory-person {
  min-height: 0;
  grid-template-rows: 320px 1fr;
}

.directory-person-photo {
  height: 320px;
  aspect-ratio: auto;
  overflow: hidden;
  background: linear-gradient(145deg, #eaf2fa, #d8e7f5);
}

.directory-person-photo img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center 18%;
}

.directory-person:hover .directory-person-photo img {
  transform: scale(1.015);
}


.person-profile-photo {
  width: 100%;
  height: 390px;
  aspect-ratio: auto;
  overflow: hidden;
}

.person-profile-photo img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center 18%;
}


.person-image img[src*="person-placeholder"],
.directory-person-photo img[src*="person-placeholder"],
.person-profile-photo img[src*="person-placeholder"] {
  padding: 38px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  transform: none;
  background: linear-gradient(145deg, #e6f0fa, #c9dced);
}


.person-image em,
.directory-person-photo > em {
  padding: 9px 13px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: .02em;
}


.profile-role {
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.3;
}


.profile-tags a {
  position: relative;
  padding: 8px 12px;
  border: 1px solid #0d4da0;
  border-radius: 6px;
  background: rgb(234 243 252 / 92%);
  box-shadow: 0 8px 22px rgb(13 77 160 / 12%);
  color: #0d4da0;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}

.profile-tags a:hover,
.profile-tags a:focus-visible {
  border-color: #06285d;
  box-shadow: 0 12px 28px rgb(13 77 160 / 22%);
}

.profile-tags a[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 10;
  width: max-content;
  max-width: min(280px, 80vw);
  padding: 9px 11px;
  border-radius: 6px;
  background: #10233f;
  color: #fff;
  box-shadow: 0 12px 32px rgb(16 24 35 / 18%);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  transform: translate(-50%, 4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}

.profile-tags a[data-tooltip]::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  z-index: 11;
  border: 6px solid transparent;
  border-top-color: #10233f;
  transform: translate(-50%, 4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
}

.profile-tags a[data-tooltip]:hover::after,
.profile-tags a[data-tooltip]:focus-visible::after,
.profile-tags a[data-tooltip]:hover::before,
.profile-tags a[data-tooltip]:focus-visible::before {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 760px) {
  .person-card {
    grid-template-rows: 290px 1fr;
  }

  .person-image {
    height: 290px;
  }

  .directory-person {
    grid-template-rows: 330px 1fr;
  }

  .directory-person-photo {
    height: 330px;
  }

  .person-profile-photo {
    height: 380px;
  }
}


/* PROFILE_AWARDS_MODAL_CARDS_V4 */

.profile-awards-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 3px 2px 12px;
  scroll-snap-type: x proximity;
}

.profile-award-button {
  flex: 0 0 310px;
  min-width: 0;
  height: 126px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
  border: 1px solid #c6d8e8;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 26px rgb(22 62 111 / 8%);
  scroll-snap-align: start;
}

.profile-award-button:hover {
  border-color: #8eb1d4;
  box-shadow: 0 15px 34px rgb(22 62 111 / 14%);
}

.profile-award-visual {
  width: 112px;
  height: 126px;
  display: block;
  overflow: hidden;
  background: #e8f1f9;
}

.profile-award-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.award-trophy-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgb(255 255 255 / 92%), transparent 34%),
    linear-gradient(145deg, #edf4fb, #cedfed);
}

.award-trophy-placeholder svg {
  width: 58px;
  height: 58px;
  fill: #b48625;
  filter: drop-shadow(0 5px 9px rgb(84 61 15 / 16%));
}

.profile-award-copy {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 14px;
  overflow: hidden;
}

.profile-award-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #082e68;
  font-size: 16px;
  line-height: 1.32;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
}

.profile-award-copy small {
  color: #6a8095;
  font-size: 13px;
  font-weight: 800;
}

.award-modal-media {
  background: #e8f1f9;
}

.award-modal-placeholder {
  width: 100%;
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 36%, rgb(255 255 255 / 95%), transparent 34%),
    linear-gradient(145deg, #edf4fb, #cedfed);
}

.award-modal-placeholder svg {
  width: 150px;
  height: 150px;
  fill: #b48625;
  filter: drop-shadow(0 10px 18px rgb(84 61 15 / 18%));
}

@media (max-width: 620px) {
  .profile-award-button {
    flex-basis: 275px;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .profile-award-visual {
    width: 96px;
  }
}


/* ARCHIVE_AWARDS_INTEGRATION_V5 */

.archive-workspace .archive-award-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.archive-award-placeholder {
  width: 112px;
  min-width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 34%, rgb(255 255 255 / 94%), transparent 34%),
    linear-gradient(145deg, #edf4fb, #cedfed);
  border-right: 1px solid #c7d8e8;
}

.archive-award-placeholder svg {
  width: 58px;
  height: 58px;
  fill: #b48625;
  filter: drop-shadow(0 5px 9px rgb(84 61 15 / 16%));
}

.archive-award-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  overflow: hidden;
}

.archive-award-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #0a2d65;
  line-height: 1.28;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.archive-award-copy small {
  color: #82621f;
  font-size: 13px;
  font-weight: 900;
}

.archive-award-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #65758d;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.material-modal-media.award {
  background: #e8f1f9;
}

.award-modal-placeholder {
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgb(255 255 255 / 95%), transparent 34%),
    linear-gradient(145deg, #edf4fb, #cedfed);
}

.award-modal-placeholder svg {
  width: 150px;
  height: 150px;
  fill: #b48625;
  filter: drop-shadow(0 10px 18px rgb(84 61 15 / 18%));
}

@media (max-width: 760px) {
  .archive-workspace .archive-award-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .archive-award-placeholder {
    width: 92px;
    min-width: 92px;
    height: 92px;
  }

  .award-modal-placeholder {
    min-height: 280px;
  }
}

/* === awards layout fix start === */



.archive-folder-card[href*="type=awards&folder=all"] {
  background: linear-gradient(180deg, #3d7bd9 0%, #0f4fa9 100%) !important;
  min-height: 140px !important;
  overflow: hidden !important;
  position: relative !important;
}

.archive-folder-card[href*="type=awards&folder=all"]::before,
.archive-folder-card[href*="type=awards&folder=all"]::after {
  content: none !important;
  display: none !important;
}

.archive-folder-card[href*="type=awards&folder=all"] img,
.archive-folder-card[href*="type=awards&folder=all"] svg,
.archive-folder-card[href*="type=awards&folder=all"] .no-image,
.archive-folder-card[href*="type=awards&folder=all"] .no-photo,
.archive-folder-card[href*="type=awards&folder=all"] .placeholder-icon,
.archive-folder-card[href*="type=awards&folder=all"] .folder-cover,
.archive-folder-card[href*="type=awards&folder=all"] .folder-preview,
.archive-folder-card[href*="type=awards&folder=all"] .folder-thumb {
  display: none !important;
}



.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) {
  position: relative !important;
  overflow: hidden !important;
  min-height: 210px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.08) 38%, rgba(8,48,103,.94) 100%),
    linear-gradient(180deg, #edf4fb 0%, #d8e4f2 54%, #0f4a9b 100%) !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"])::before {
  content: "" !important;
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  top: 16px !important;
  height: 108px !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.40), rgba(255,255,255,.10)) !important;
  z-index: 0 !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"])::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 70px !important;
  width: 70px !important;
  height: 70px !important;
  transform: translate(-50%, -50%) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23b48625' d='M24 8h16c1.1 0 2 .9 2 2v5h8c1.1 0 2 .9 2 2v5c0 8.4-5.5 15.4-13 17.7V45h7c1.1 0 2 .9 2 2v5H16v-5c0-1.1.9-2 2-2h7v-5.3C17.5 37.4 12 30.4 12 22v-5c0-1.1.9-2 2-2h8v-5c0-1.1.9-2 2-2Zm4 6v18c0 3.3 2.7 6 6 6s6-2.7 6-6V14H28Zm-10 7v1c0 4.4 2.4 8.2 6 10.3V21h-6Zm26 0v11.3c3.6-2.1 6-5.9 6-10.3v-1h-6ZM22 49v3h20v-3H22Z'/%3E%3C/svg%3E") !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) img,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) svg,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) .no-image,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) .no-photo,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) .placeholder-icon,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) .folder-cover,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) .folder-preview,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) .folder-thumb {
  display: none !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) > *,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) .archive-folder-content,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder):not([href*="folder=all"]) .folder-content {
  position: relative !important;
  z-index: 2 !important;
}



.profile-awards .small-card,
.profile-awards .award-card,
.profile-awards .award-item,
.profile-awards .archive-award-item,
.profile-awards .person-award,
.profile-awards .award-tile {
  display: grid !important;
  grid-template-columns: 136px minmax(0, 1fr) !important;
  align-items: stretch !important;
  min-height: 146px !important;
  overflow: hidden !important;
}

.profile-awards .small-card > :first-child,
.profile-awards .award-card > :first-child,
.profile-awards .award-item > :first-child,
.profile-awards .archive-award-item > :first-child,
.profile-awards .person-award > :first-child,
.profile-awards .award-tile > :first-child,
.profile-awards .small-card .award-cover,
.profile-awards .award-card .award-cover,
.profile-awards .award-item .award-cover,
.profile-awards .archive-award-item .award-cover,
.profile-awards .person-award .award-cover,
.profile-awards .award-tile .award-cover {
  width: 136px !important;
  min-width: 136px !important;
  min-height: 146px !important;
  height: 100% !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.08)),
    linear-gradient(180deg, #edf4fb 0%, #d8e4f2 100%) !important;
}

.profile-awards .small-card > :first-child img,
.profile-awards .award-card > :first-child img,
.profile-awards .award-item > :first-child img,
.profile-awards .archive-award-item > :first-child img,
.profile-awards .person-award > :first-child img,
.profile-awards .award-tile > :first-child img,
.profile-awards .small-card .award-cover img,
.profile-awards .award-card .award-cover img,
.profile-awards .award-item .award-cover img,
.profile-awards .archive-award-item .award-cover img,
.profile-awards .person-award .award-cover img,
.profile-awards .award-tile .award-cover img,
.profile-awards .small-card > :first-child svg,
.profile-awards .award-card > :first-child svg,
.profile-awards .award-item > :first-child svg,
.profile-awards .archive-award-item > :first-child svg,
.profile-awards .person-award > :first-child svg,
.profile-awards .award-tile > :first-child svg,
.profile-awards .small-card .award-cover svg,
.profile-awards .award-card .award-cover svg,
.profile-awards .award-item .award-cover svg,
.profile-awards .archive-award-item .award-cover svg,
.profile-awards .person-award .award-cover svg,
.profile-awards .award-tile .award-cover svg {
  width: 66px !important;
  height: 66px !important;
  max-width: 66px !important;
  max-height: 66px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 auto !important;
  position: static !important;
  inset: auto !important;
}

.profile-awards .small-card > :first-child .no-image,
.profile-awards .award-card > :first-child .no-image,
.profile-awards .award-item > :first-child .no-image,
.profile-awards .archive-award-item > :first-child .no-image,
.profile-awards .person-award > :first-child .no-image,
.profile-awards .award-tile > :first-child .no-image,
.profile-awards .small-card > :first-child .no-photo,
.profile-awards .award-card > :first-child .no-photo,
.profile-awards .award-item > :first-child .no-photo,
.profile-awards .archive-award-item > :first-child .no-photo,
.profile-awards .person-award > :first-child .no-photo,
.profile-awards .award-tile > :first-child .no-photo,
.profile-awards .small-card > :first-child em,
.profile-awards .award-card > :first-child em,
.profile-awards .award-item > :first-child em,
.profile-awards .archive-award-item > :first-child em,
.profile-awards .person-award > :first-child em,
.profile-awards .award-tile > :first-child em,
.profile-awards .small-card .award-cover em,
.profile-awards .award-card .award-cover em,
.profile-awards .award-item .award-cover em,
.profile-awards .archive-award-item .award-cover em,
.profile-awards .person-award .award-cover em,
.profile-awards .award-tile .award-cover em {
  width: 100% !important;
  height: 100% !important;
  min-height: 146px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  inset: auto !important;
  background: transparent !important;
  margin: 0 !important;
}



.award-board .archive-award-item,
.award-board .award-card,
.award-board .award-item,
.award-board .award-tile,
.award-board a {
  display: grid !important;
  grid-template-columns: 180px minmax(0, 1fr) !important;
  align-items: stretch !important;
  min-height: 180px !important;
  overflow: hidden !important;
}

.award-board .archive-award-item > :first-child,
.award-board .award-card > :first-child,
.award-board .award-item > :first-child,
.award-board .award-tile > :first-child,
.award-board a > :first-child,
.award-board .award-cover {
  width: 180px !important;
  min-width: 180px !important;
  min-height: 180px !important;
  height: 100% !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.08)),
    linear-gradient(180deg, #edf4fb 0%, #d8e4f2 100%) !important;
}

.award-board .archive-award-item > :first-child img,
.award-board .award-card > :first-child img,
.award-board .award-item > :first-child img,
.award-board .award-tile > :first-child img,
.award-board a > :first-child img,
.award-board .award-cover img,
.award-board .archive-award-item > :first-child svg,
.award-board .award-card > :first-child svg,
.award-board .award-item > :first-child svg,
.award-board .award-tile > :first-child svg,
.award-board a > :first-child svg,
.award-board .award-cover svg {
  width: 76px !important;
  height: 76px !important;
  max-width: 76px !important;
  max-height: 76px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 auto !important;
  position: static !important;
  inset: auto !important;
}

.award-board .archive-award-item > :first-child .no-image,
.award-board .award-card > :first-child .no-image,
.award-board .award-item > :first-child .no-image,
.award-board .award-tile > :first-child .no-image,
.award-board a > :first-child .no-image,
.award-board .archive-award-item > :first-child .no-photo,
.award-board .award-card > :first-child .no-photo,
.award-board .award-item > :first-child .no-photo,
.award-board .award-tile > :first-child .no-photo,
.award-board a > :first-child .no-photo,
.award-board .archive-award-item > :first-child em,
.award-board .award-card > :first-child em,
.award-board .award-item > :first-child em,
.award-board .award-tile > :first-child em,
.award-board a > :first-child em,
.award-board .award-cover em {
  width: 100% !important;
  height: 100% !important;
  min-height: 180px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  inset: auto !important;
  background: transparent !important;
  margin: 0 !important;
}

/* === awards layout fix end === */

/* === awards visual polish v2 === */

.archive-folder-card.all-folder {
  grid-column: 1 / -1;
  min-height: 150px !important;
  border-radius: 8px;
  background: linear-gradient(100deg, #06285d, #0d4da0) !important;
}

.archive-folder-card.all-folder::before {
  content: none;
}

.archive-folder-card.all-folder::after {
  content: "";
  display: block;
  background: transparent;
}

.archive-folder-card.all-folder .folder-icon {
  display: block;
  right: 24px;
  top: 28px;
  width: 86px;
  height: 58px;
  border-radius: 6px;
  background: rgb(255 255 255 / 16%);
}

.archive-folder-card.all-folder .folder-icon::before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: -10px;
  width: 34px;
  height: 14px;
  border-radius: 5px 5px 0 0;
  background: inherit;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder) {
  min-height: 190px !important;
  border-radius: 8px !important;
  background:
    linear-gradient(0deg, rgb(5 34 78 / 88%), rgb(5 34 78 / 10%) 72%),
    linear-gradient(145deg, #eef5fb 0%, #d5e4f2 55%, #bfd3e8 100%) !important;
  box-shadow: 0 12px 30px rgb(22 62 111 / 9%) !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder)::before {
  content: "" !important;
  position: absolute !important;
  inset: 24px 24px auto auto !important;
  width: 78px !important;
  height: 78px !important;
  border-radius: 18px !important;
  background-color: rgb(255 255 255 / 74%) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23b48625' d='M24 8h16c1.1 0 2 .9 2 2v5h8c1.1 0 2 .9 2 2v5c0 8.4-5.5 15.4-13 17.7V45h7c1.1 0 2 .9 2 2v5H16v-5c0-1.1.9-2 2-2h7v-5.3C17.5 37.4 12 30.4 12 22v-5c0-1.1.9-2 2-2h8v-5c0-1.1.9-2 2-2Zm4 6v18c0 3.3 2.7 6 6 6s6-2.7 6-6V14H28Zm-10 7v1c0 4.4 2.4 8.2 6 10.3V21h-6Zm26 0v11.3c3.6-2.1 6-5.9 6-10.3v-1h-6ZM22 49v3h20v-3H22Z'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 52px 52px !important;
  box-shadow: 0 12px 24px rgb(9 43 87 / 12%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(0deg, rgb(5 34 78 / 90%), rgb(5 34 78 / 0%) 70%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder) .folder-icon,
.archive-folder-card[href*="type=awards&folder="]:not(.all-folder) img {
  display: none !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder) > div {
  z-index: 2 !important;
}

.profile-award-button {
  height: 136px;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: stretch;
}

.profile-award-visual {
  width: 124px;
  height: 100%;
  min-height: 136px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: linear-gradient(145deg, #edf4fb 0%, #d5e4f2 100%);
}

.profile-award-visual > img,
.profile-award-visual .award-trophy-placeholder {
  width: 100%;
  height: 100%;
  min-height: 136px;
}

.award-trophy-placeholder,
.archive-award-placeholder,
.award-modal-placeholder {
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgb(255 255 255 / 86%) 0 34%, transparent 35%),
    linear-gradient(145deg, #edf4fb 0%, #d5e4f2 100%);
}

.award-trophy-placeholder svg,
.archive-award-placeholder svg,
.award-modal-placeholder svg {
  display: block;
  margin: auto;
  transform: none;
}

.archive-workspace .archive-award-item {
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 148px;
}

.archive-award-placeholder,
.archive-workspace .archive-award-item > img {
  width: 132px !important;
  min-width: 132px;
  height: 100% !important;
  min-height: 148px;
  align-self: stretch;
}

.archive-workspace .archive-award-item > img {
  object-fit: cover;
  border-radius: 0;
}

.archive-award-placeholder {
  display: grid;
  border-right: 1px solid #c7d8e8;
}

@media (max-width: 760px) {
  .profile-award-button {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .profile-award-visual {
    width: 104px;
  }

  .archive-workspace .archive-award-item {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 126px;
  }

  .archive-award-placeholder,
  .archive-workspace .archive-award-item > img {
    width: 104px !important;
    min-width: 104px;
    min-height: 126px;
  }
}

/* === awards visual polish v3 === */

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder)::before {
  content: "" !important;
  position: absolute !important;
  left: auto !important;
  right: 24px !important;
  top: 26px !important;
  width: 78px !important;
  height: 78px !important;
  border-radius: 18px !important;
  background-color: rgb(255 255 255 / 82%) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23b48625' d='M24 8h16c1.1 0 2 .9 2 2v5h8c1.1 0 2 .9 2 2v5c0 8.4-5.5 15.4-13 17.7V45h7c1.1 0 2 .9 2 2v5H16v-5c0-1.1.9-2 2-2h7v-5.3C17.5 37.4 12 30.4 12 22v-5c0-1.1.9-2 2-2h8v-5c0-1.1.9-2 2-2Zm4 6v18c0 3.3 2.7 6 6 6s6-2.7 6-6V14H28Zm-10 7v1c0 4.4 2.4 8.2 6 10.3V21h-6Zm26 0v11.3c3.6-2.1 6-5.9 6-10.3v-1h-6ZM22 49v3h20v-3H22Z'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 54px 54px !important;
  box-shadow: 0 12px 24px rgb(9 43 87 / 12%) !important;
  transform: none !important;
  z-index: 2 !important;
}

.award-trophy-placeholder,
.archive-award-placeholder,
.award-modal-placeholder {
  position: relative;
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
  background: linear-gradient(145deg, #edf4fb 0%, #d7e6f3 100%) !important;
}

.award-trophy-placeholder::before,
.archive-award-placeholder::before,
.award-modal-placeholder::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgb(255 255 255 / 90%);
  transform: translate(-50%, -50%);
}

.award-trophy-placeholder svg,
.archive-award-placeholder svg,
.award-modal-placeholder svg {
  position: relative !important;
  z-index: 1;
  display: block !important;
  width: 58px !important;
  height: 58px !important;
  margin: 0 !important;
  fill: #b48625 !important;
  transform: none !important;
}

.award-modal-placeholder::before {
  width: 180px;
  height: 180px;
}

.award-modal-placeholder svg {
  width: 140px !important;
  height: 140px !important;
}

.profile-award-button {
  height: 136px !important;
  grid-template-columns: 124px minmax(0, 1fr) !important;
}

.profile-award-visual,
.profile-award-visual > img,
.profile-award-visual .award-trophy-placeholder {
  width: 124px !important;
  height: 100% !important;
  min-height: 136px !important;
}

.archive-workspace .archive-award-item,
.home-award-tile {
  border-color: #c6d8e8;
  background: #fff;
}

.award-preview-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-award-tile {
  min-width: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid #c6d8e8;
  border-radius: 8px;
  color: #0a2d65;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgb(22 62 111 / 10%);
}

.home-award-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgb(22 62 111 / 16%);
}

.home-award-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #edf4fb 0%, #d7e6f3 100%);
}

.home-award-visual > img,
.home-award-visual .archive-award-placeholder {
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  border-right: 0;
}

.home-award-visual > img {
  object-fit: cover;
}

.home-award-tile strong,
.home-award-tile > span:not(.home-award-visual) {
  display: block;
  padding-inline: 12px;
}

.home-award-tile strong {
  min-height: 42px;
  margin-top: 10px;
  overflow: hidden;
  color: #082e68;
  font-weight: 900;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-award-tile > span:not(.home-award-visual) {
  padding-bottom: 12px;
  color: #82621f;
  font-weight: 900;
}

.home-award-tile p {
  display: none;
}

@media (max-width: 980px) {
  .award-preview-row {
    grid-template-columns: 1fr;
  }
}

/* === profile awards exact fit === */

.profile-award-button {
  min-height: 136px !important;
  height: 136px !important;
  align-items: stretch !important;
}

.profile-award-visual {
  align-self: stretch !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
}

.profile-award-visual > img,
.profile-award-visual .award-trophy-placeholder {
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
}

@media (max-width: 620px) {
  .profile-award-button {
    height: 136px !important;
  }
}

/* === awards card and trophy final pass === */

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23b48625' d='M24 8h16c1.1 0 2 .9 2 2v5h8c1.1 0 2 .9 2 2v5c0 8.4-5.5 15.4-13 17.7V45h7c1.1 0 2 .9 2 2v5H16v-5c0-1.1.9-2 2-2h7v-5.3C17.5 37.4 12 30.4 12 22v-5c0-1.1.9-2 2-2h8v-5c0-1.1.9-2 2-2Zm4 6v18c0 3.3 2.7 6 6 6s6-2.7 6-6V14H28Zm-10 7v1c0 4.4 2.4 8.2 6 10.3V21h-6Zm26 0v11.3c3.6-2.1 6-5.9 6-10.3v-1h-6ZM22 49v3h20v-3H22Z'/%3E%3C/svg%3E") !important;
}

.award-preview-row {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.home-award-tile {
  min-height: 148px !important;
  display: grid !important;
  grid-template-columns: 132px minmax(0, 1fr) !important;
  grid-template-rows: 1fr auto auto 1fr !important;
  align-items: stretch !important;
  padding: 0 !important;
  background: #fff !important;
}

.home-award-visual {
  grid-column: 1 !important;
  grid-row: 1 / -1 !important;
  width: 132px !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  align-self: stretch !important;
  margin: 0 !important;
  border-right: 1px solid #c7d8e8;
}

.home-award-visual > img,
.home-award-visual .archive-award-placeholder {
  width: 132px !important;
  height: 100% !important;
  min-height: 148px !important;
}

.home-award-visual .archive-award-placeholder {
  border-right: 0;
}

.home-award-tile strong {
  grid-column: 2 !important;
  grid-row: 2 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 14px !important;
  -webkit-line-clamp: 3;
}

.home-award-tile > span:not(.home-award-visual) {
  grid-column: 2 !important;
  grid-row: 3 !important;
  margin: 8px 0 0 !important;
  padding: 0 14px !important;
}

.home-award-tile p {
  display: none !important;
}

@media (max-width: 980px) {
  .award-preview-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .home-award-tile {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    min-height: 126px !important;
  }

  .home-award-visual,
  .home-award-visual > img,
  .home-award-visual .archive-award-placeholder {
    width: 104px !important;
    min-height: 126px !important;
  }
}

/* === external award icon === */

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder)::before {
  background-image: url("../img/award-trophy.a6caa0e996d4.png") !important;
  background-size: 58px 58px !important;
}

.award-trophy-placeholder,
.archive-award-placeholder,
.award-modal-placeholder {
  background:
    radial-gradient(circle at 50% 50%, rgb(255 255 255 / 92%) 0 36%, transparent 37%),
    linear-gradient(145deg, #edf4fb 0%, #d7e6f3 100%) !important;
}

.award-trophy-placeholder svg,
.archive-award-placeholder svg,
.award-modal-placeholder svg {
  display: none !important;
}

.award-trophy-placeholder::after,
.archive-award-placeholder::after,
.award-modal-placeholder::after {
  content: "";
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: block;
  background: url("../img/award-trophy.a6caa0e996d4.png") center / contain no-repeat;
}

.award-modal-placeholder::after {
  width: 150px;
  height: 150px;
}

/* === APT awards folder cover === */

.archive-folder-card.apt-awards-folder[href*="type=awards&folder="]:not(.all-folder) {
  background: url("../img/awards-apt-cover.67042c23994c.webp") center / cover no-repeat !important;
}

.archive-folder-card.rt-awards-folder[href*="type=awards&folder="]:not(.all-folder) {
  background: url("../img/awards-rt-cover.4e8a2072be63.webp") center / cover no-repeat !important;
}

.archive-folder-card.rf-awards-folder[href*="type=awards&folder="]:not(.all-folder) {
  background: url("../img/awards-rf-cover.1a647aca19ee.webp") center / cover no-repeat !important;
}

.archive-folder-card.almetyevsk-awards-folder[href*="type=awards&folder="]:not(.all-folder) {
  background: url("../img/awards-almetyevsk-cover.aedaa3da573d.webp") center / cover no-repeat !important;
}

.archive-folder-card.apt-awards-folder[href*="type=awards&folder="]:not(.all-folder)::before {
  content: none !important;
  display: none !important;
}

.archive-folder-card.rt-awards-folder[href*="type=awards&folder="]:not(.all-folder)::before {
  content: none !important;
  display: none !important;
}

.archive-folder-card.rf-awards-folder[href*="type=awards&folder="]:not(.all-folder)::before {
  content: none !important;
  display: none !important;
}

.archive-folder-card.almetyevsk-awards-folder[href*="type=awards&folder="]:not(.all-folder)::before {
  content: none !important;
  display: none !important;
}

.archive-folder-card.apt-awards-folder[href*="type=awards&folder="]:not(.all-folder)::after {
  background: linear-gradient(0deg, rgb(5 34 78 / 88%), rgb(5 34 78 / 12%) 72%) !important;
}

/* === remove folder corner badge === */

.archive-folder-card .folder-icon,
.archive-folder-card .folder-icon::before {
  display: none !important;
  content: none !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder)::before {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder)::after {
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  border-radius: 0 !important;
  background-image: none !important;
  background: transparent !important;
  background-size: auto !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder) {
  justify-content: flex-end !important;
}

.archive-folder-card[href*="type=awards&folder="]:not(.all-folder) > div {
  margin-left: auto !important;
  max-width: 82% !important;
  text-align: right !important;
}

/* === archive search and modal navigation === */

.folder-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .45fr) auto auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid #d7e2e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgb(22 62 111 / 8%);
}

.folder-search label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #173d73;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.folder-search input,
.folder-search select {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
}

.award-kind-filter,
.photo-folder-search {
  grid-template-columns: minmax(220px, 360px) auto;
  justify-content: start;
}

.award-kind-filter {
  padding: 4px;
  border-color: #d4e1ef;
  background: #f2f7fc;
}

.award-kind-filter label {
  gap: 7px;
}

.award-kind-filter .award-college-filter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #cbdbea;
  border-radius: 7px;
  background: #fff;
  color: #173d73;
  font-weight: 800;
}

.award-kind-filter .award-college-filter input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0d4da0;
}

.award-kind-filter .award-college-filter span {
  color: #173d73;
  font-size: 13px;
  line-height: 1.25;
}

.award-kind-filter select {
  min-height: 42px;
  border: 0;
  border-radius: 5px;
  appearance: none;
  padding: 0 44px 0 14px;
  background:
    #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1.5 7 7.5l6-6' fill='none' stroke='%23105f9f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    right 18px center / 14px 9px no-repeat;
  color: #173d73;
  font-size: 16px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px #d4e1ef;
}

.archive-folder-card[href*="type=awards&folder="]::before {
  content: none !important;
  display: none !important;
  background-image: none !important;
}

.archive-folder-card[href*="type=awards&folder="] .folder-icon,
.archive-folder-card[href*="type=awards&folder="] .folder-icon::before {
  content: none !important;
  display: none !important;
}

.archive-folder-card.apt-awards-folder[href*="type=awards&folder="]::after,
.archive-folder-card.rt-awards-folder[href*="type=awards&folder="]::after,
.archive-folder-card.rf-awards-folder[href*="type=awards&folder="]::after,
.archive-folder-card.almetyevsk-awards-folder[href*="type=awards&folder="]::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

.material-dialog-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  display: none;
  border: 1px solid rgb(255 255 255 / 38%);
  border-radius: 50%;
  background: rgb(10 45 101 / 78%);
  color: #fff;
  font-size: 40px;
  line-height: 1;
  box-shadow: 0 12px 28px rgb(5 31 72 / 26%);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transform: translateY(-50%);
}

.material-dialog.has-gallery .material-dialog-nav {
  display: grid;
  place-items: center;
}

.material-dialog-prev {
  left: -62px;
}

.material-dialog-next {
  right: -62px;
}

.material-dialog-nav:disabled {
  display: none;
}

.material-modal-media video {
  pointer-events: auto;
}

@media (max-width: 1240px) {
  .material-dialog-prev {
    left: 10px;
  }

  .material-dialog-next {
    right: 10px;
  }
}

@media (max-width: 760px) {
  .folder-search {
    grid-template-columns: 1fr;
  }

  .material-dialog-nav {
    top: 50%;
    bottom: auto;
    width: 44px;
    height: 44px;
    font-size: 34px;
    transform: translateY(-50%);
  }
}

/* === exact modal button icons start === */


.material-dialog-close,
.material-dialog-nav {
  position: absolute !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  border: 1px solid rgb(255 255 255 / 38%) !important;
  border-radius: 50% !important;
  background: rgb(10 45 101 / 78%) !important;
  box-shadow: 0 12px 28px rgb(5 31 72 / 26%) !important;
  backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  text-indent: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-align: center !important;
  overflow: hidden !important;
}


.material-dialog-close {
  position: fixed !important;
  right: clamp(14px, 2.4vw, 30px) !important;
  top: clamp(14px, 2vw, 26px) !important;
  z-index: 30 !important;
  width: 46px !important;
  height: 46px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  opacity: .62 !important;
  transition: opacity .18s ease, transform .18s ease !important;
  overflow: visible !important;
}

.material-dialog-close:hover,
.material-dialog-close:focus-visible,
.material-dialog.is-backdrop-hover .material-dialog-close {
  opacity: 1 !important;
  transform: scale(1.06) !important;
}


.material-dialog-close::before,
.material-dialog-close::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 26px !important;
  height: 3px !important;
  margin: 0 !important;
  border: 1px solid rgb(0 0 0 / 48%) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  transform-origin: center !important;
  pointer-events: none !important;
  box-shadow: none !important;
}

.material-dialog-close::before {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.material-dialog-close::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}


.material-dialog-nav {
  display: none !important;
}


.material-dialog.has-gallery .material-dialog-nav {
  display: grid !important;
  place-items: center !important;
}


.material-dialog-nav::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 13px !important;
  height: 13px !important;
  margin: 0 !important;
  border-top: 3px solid #ffffff !important;
  border-right: 3px solid #ffffff !important;
  pointer-events: none !important;
  transform-origin: center !important;
}

.material-dialog-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg) !important;
}

.material-dialog-next::before {
  transform: translate(-65%, -50%) rotate(45deg) !important;
}

.material-dialog-nav:disabled {
  display: none !important;
}

@media (min-width: 1024px) {
  .material-dialog-nav {
    border-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    opacity: .9 !important;
    transition: background .18s ease, border-color .18s ease, opacity .18s ease !important;
  }

  .material-dialog-nav:hover,
  .material-dialog-nav:focus-visible {
    border-color: rgb(255 255 255 / 34%) !important;
    background: rgb(10 45 101 / 78%) !important;
    box-shadow: 0 12px 28px rgb(5 31 72 / 26%) !important;
    backdrop-filter: blur(8px) !important;
    opacity: 1 !important;
  }
}

@media (max-width: 760px) {
  .material-dialog-nav::before {
    width: 11px !important;
    height: 11px !important;
    border-top-width: 3px !important;
    border-right-width: 3px !important;
  }
}

@media (max-width: 768px) {
  .material-dialog.has-gallery .material-dialog-nav,
  .material-dialog-nav {
    display: none !important;
  }

  .material-dialog-close,
  .material-dialog-nav {
    width: 44px !important;
    height: 44px !important;
    border-color: rgb(255 255 255 / 34%) !important;
    background: rgb(10 45 101 / 76%) !important;
    box-shadow: 0 10px 22px rgb(5 31 72 / 22%) !important;
    color: #ffffff !important;
  }

  .material-dialog-close {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .material-dialog-close::before,
  .material-dialog-close::after {
    width: 24px !important;
    height: 3px !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .material-dialog-nav::before {
    width: 11px !important;
    height: 11px !important;
    border-top-color: #ffffff !important;
    border-right-color: #ffffff !important;
    filter: none !important;
  }

  .material-dialog-prev {
    left: 2px !important;
  }

  .material-dialog-next {
    right: 2px !important;
  }
}

@media (max-width: 430px) {
  .material-dialog-close,
  .material-dialog-nav,
  .scroll-top-button {
    width: 38px !important;
    height: 38px !important;
  }

  .material-dialog-close {
    right: 10px !important;
    top: 10px !important;
  }

  .material-dialog-close::before,
  .material-dialog-close::after {
    width: 21px !important;
    height: 2.5px !important;
  }

  .material-dialog-nav::before {
    width: 9px !important;
    height: 9px !important;
    border-top-width: 2.5px !important;
    border-right-width: 2.5px !important;
  }

  .scroll-top-button {
    font-size: 23px !important;
  }
}

@media (max-width: 340px) {
  .material-dialog-close,
  .material-dialog-nav,
  .scroll-top-button {
    width: 34px !important;
    height: 34px !important;
  }

  .material-dialog-close::before,
  .material-dialog-close::after {
    width: 19px !important;
  }

  .material-dialog-nav::before {
    width: 8px !important;
    height: 8px !important;
    border-top-width: 2px !important;
    border-right-width: 2px !important;
  }
}

/* === exact modal button icons end === */

/* === about page editorial redesign === */
.about-page {
  width: min(var(--content-max), calc(100% - 40px));
  margin: clamp(34px, 5vw, 72px) auto;
  padding: 0 !important;
  position: relative;
}

.about-page::before {
  content: none;
}

.about-page-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-right: 0;
}

.about-page-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #86acd9, transparent);
}

.about-page-heading p {
  display: none;
}

.about-page-heading h2 {
  margin: 0;
  color: #0a2d65;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}

.about-page-heading h2::after {
  content: none;
}

.about-page-shell,
.detailed-history {
  display: grid;
  gap: 28px;
}

.about-page-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid #d9e8f7;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 58px rgb(7 59 130 / 10%);
}

.detailed-history {
  gap: 0;
}

.about-intro-card,
.about-number-card,
.about-media-card,
.about-mission-card,
.about-union-card,
.about-finale-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-intro-card {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 3vw, 30px);
  align-items: center;
  padding: 0 0 clamp(26px, 4vw, 44px);
  border-bottom: 1px solid #d9e8f7;
}

.about-photo-card {
  width: 100%;
  max-width: 430px;
  min-height: clamp(210px, 25vw, 280px);
  margin: 0;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(0deg, rgb(7 59 130 / 88%), rgb(7 59 130 / 10%) 68%),
    radial-gradient(circle at 16% 18%, rgb(255 255 255 / 54%), transparent 24%),
    linear-gradient(135deg, #0b55b5, #eaf3fc);
  box-shadow: 0 16px 34px rgb(7 59 130 / 18%);
}

.about-photo-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(255 255 255 / 44%);
  border-radius: 16px;
  pointer-events: none;
}

.about-photo-card svg {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-photo-card span {
  position: relative;
  z-index: 1;
  max-width: 260px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.about-photo-card--real {
  padding: 0;
  display: block;
  background: #eaf3fc;
}

.about-photo-card--real::before,
.about-photo-card--real svg {
  display: none;
}

.about-photo-card--real img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-photo-card--real figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  width: max-content;
  max-width: calc(100% - 48px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgb(6 43 104 / 65%);
}

.about-intro-card--wide-image {
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  align-items: center;
}

.about-photo-card--wide {
  width: 100%;
  max-width: 440px;
  min-height: 0;
  aspect-ratio: auto;
  background: #f3f8fd;
}

.about-photo-card--wide img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.about-intro-full {
  grid-column: 1 / -1;
  margin: 0;
  color: #526a86;
  font-size: 17px;
  line-height: 1.68;
}

.about-intro-copy,
.about-card-copy,
.about-union-copy,
.about-workshops-content {
  display: grid;
  gap: 14px;
}

.about-eyebrow {
  margin: 0;
  color: #0b55b5;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.25;
}

.about-intro-copy h3,
.about-card-copy h3,
.about-union-copy h3,
.about-workshops-content h3 {
  margin: 0;
  color: #073b82;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.about-intro-copy p,
.about-card-copy p,
.about-union-copy p {
  margin: 0;
  color: #526a86;
  font-size: 17px;
  line-height: 1.68;
}

.about-intro-copy .about-eyebrow,
.about-union-copy .about-eyebrow,
.about-workshops-content .about-eyebrow {
  margin: 0;
  color: #0b55b5;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detailed-history {
  display: grid;
}

.about-page .about-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .58s ease, transform .58s ease;
}

.about-page .about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-number-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px) 0;
  border-bottom: 1px solid #d9e8f7;
}

.about-number-badge {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #0b55b5;
  text-align: center;
}

.about-number-badge svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-number-badge strong {
  background: linear-gradient(135deg, #0b55b5, #073b82);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(58px, 8vw, 92px);
  line-height: .9;
}

.about-number-badge span {
  color: #526a86;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-inline-details,
.about-dark-details {
  margin-top: 4px;
}

.about-inline-details summary,
.about-dark-details summary {
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid #0b55b5;
  border-radius: 14px;
  color: #073b82;
  cursor: pointer;
  font-weight: 800;
}

.about-inline-details[open] > summary,
.about-dark-details[open] > summary {
  display: none;
}

.about-inline-details p,
.about-dark-details p {
  margin-top: 14px;
}

.about-details-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height .55s ease,
    opacity .35s ease,
    transform .45s ease;
}

.about-inline-details[open] .about-details-body,
.about-dark-details[open] .about-details-body {
  max-height: 900px;
  opacity: 1;
  transform: translateY(0);
}

.about-details-body p:first-child {
  margin-top: 8px;
}

.about-details-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #073b82;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
}

.about-details-close::after {
  content: "↑";
  font-size: 16px;
  line-height: 1;
  color: #073b82;
  transform: translateY(-1px);
}

.about-media-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .68fr);
  gap: clamp(22px, 3vw, 30px);
  align-items: center;
  padding: clamp(28px, 4vw, 46px) 0;
  border-bottom: 0;
}

.about-media-card.media-left {
  grid-template-columns: minmax(240px, .68fr) minmax(0, 1fr);
}

.about-stage-card .about-card-copy {
  position: relative;
  padding-left: 22px;
}

.about-stage-card {
  border-top: 0;
}

.about-stage-card .about-card-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 999px;
  background: #b8d7f4;
}

.about-stage-card .about-card-copy p {
  position: relative;
}

.about-stage-card .about-card-copy p::before {
  content: "";
  position: absolute;
  left: -27px;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b55b5;
  box-shadow: 0 0 0 4px #eaf3fc;
}

.about-union-card {
  --about-shell-pad: clamp(24px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(260px, .38fr);
  gap: clamp(22px, 3vw, 30px);
  align-items: center;
  margin: 0 calc(var(--about-shell-pad) * -1) 0 0;
  min-height: clamp(360px, 36vw, 470px);
  padding: clamp(34px, 5vw, 58px) var(--about-shell-pad) clamp(34px, 5vw, 58px) 0;
  background:
    linear-gradient(90deg, #fff 0%, #fff 48%, rgb(255 255 255 / 72%) 67%, rgb(255 255 255 / 18%) 100%),
    #fff;
  background-origin: border-box;
  border-top: 0;
  border-bottom: 1px solid #d9e8f7;
  transition: min-height .55s ease;
}

.about-union-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  width: min(62%, 720px);
  height: clamp(360px, 36vw, 470px);
  background: url("../images/about/obiedinenie.6863fe651072.png") right top / contain no-repeat;
  opacity: .96;
  z-index: 0;
}

.about-union-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.about-union-image {
  display: none;
}

.about-union-details {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  max-width: none;
}

.about-union-card::after {
  content: none;
}

.about-mission-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px) 0;
  border-bottom: 1px solid #d9e8f7;
}

.about-mission-card article {
  padding: 0 clamp(22px, 4vw, 38px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.about-mission-card article:first-child {
  border-right: 1px solid #d9e8f7;
}

.about-round-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2b6fb7;
  color: #fff;
}

.about-round-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-mission-card p:not(.about-eyebrow) {
  margin: 0;
  color: #102a4c;
  font-size: 17px;
  line-height: 1.62;
}

.about-workshops-card {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .68fr);
  gap: clamp(22px, 3vw, 30px);
  align-items: center;
  margin: 0;
  padding: clamp(28px, 4vw, 46px) 0;
  border-radius: 0;
  background: #fff;
  color: #102a4c;
  box-shadow: none;
  border-top: 0;
  border-bottom: 1px solid #d9e8f7;
}

.about-workshops-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
}

.about-workshops-photo {
  justify-self: end;
  transition: transform .55s ease;
}

.about-workshops-card:has(.about-workshops-details[open]) .about-workshops-photo {
  transform: translateY(28px);
}

.about-workshops-details {
  grid-column: 1 / -1;
}

.about-workshops-content .about-eyebrow {
  color: #0b55b5;
}

.about-workshops-content h3 {
  color: #073b82;
}

.about-workshops-content p {
  color: #526a86;
}

.about-workshops-content > p {
  margin: 0;
  color: #526a86;
  font-size: 17px;
  line-height: 1.68;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0;
}

.about-stat-grid article {
  min-height: 150px;
  padding: 16px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid #d9e8f7;
  border-radius: 16px;
  background: rgb(247 250 254 / 78%);
  color: #0b55b5;
  backdrop-filter: blur(6px);
}

.about-stat-grid svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .9;
}

.about-stat-grid strong {
  color: #0b55b5;
  font-size: 34px;
  line-height: 1;
}

.about-stat-grid span {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-dark-details summary {
  border-color: #0b55b5;
  color: #073b82;
}

.about-dark-details p {
  color: #526a86;
}

.about-workshops-details .about-details-body p {
  margin: 14px 0 0;
  color: #526a86;
  font-size: 17px;
  line-height: 1.68;
}

.about-union-details .about-details-body p {
  margin: 14px 0 0;
  color: #526a86;
  font-size: 17px;
  line-height: 1.68;
}

.about-finale-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: clamp(32px, 5vw, 54px) 0;
  background: #fff;
  color: #102a4c;
  border-top: 0;
}

.about-trophy-icon {
  width: 76px;
  height: 76px;
  color: #0b55b5;
}

.about-trophy-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-finale-card blockquote {
  margin: 0 0 12px;
  color: #073b82;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
}

.about-finale-card p {
  margin: 0;
  color: #526a86;
  font-size: 17px;
  line-height: 1.68;
}

.about-programs-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px) 0;
  border: 0;
  border-bottom: 1px solid #d9e8f7;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-programs-item {
  padding: clamp(20px, 3vw, 30px);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: transparent;
}

.about-programs-item + .about-programs-item {
  border-left: 1px solid #d9e8f7;
}

.about-programs-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #0b55b5;
  color: #fff;
}

.about-programs-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) {
  .about-number-card:hover,
  .about-media-card:hover,
  .about-mission-card:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .about-page {
    width: min(100% - 32px, var(--content-max));
  }

  .about-page-heading {
    padding-right: 0;
  }

  .about-intro-card,
  .about-intro-card--wide-image,
  .about-number-card,
  .about-media-card,
  .about-media-card.media-left,
  .about-workshops-card,
  .about-union-card,
  .about-mission-card,
  .about-finale-card,
  .about-programs-card {
    grid-template-columns: 1fr;
  }

  .about-photo-card {
    width: auto;
    max-width: 100%;
    min-height: 230px;
  }

  .about-union-image {
    width: 100%;
    opacity: .22;
  }

  .about-mission-card article:first-child {
    border-right: 0;
    border-bottom: 1px solid #d9e8f7;
  }

  .about-programs-item + .about-programs-item {
    border-left: 0;
    border-top: 1px solid #d9e8f7;
  }

  .about-workshops-content {
    width: 100%;
  }

  .about-programs-card {
    gap: 1px;
  }
}

@media (max-width: 600px) {
  .about-page {
    width: min(100% - 28px, var(--content-max));
    margin-block: 28px;
  }

  .about-page-shell,
  .detailed-history {
    gap: 0;
  }

  .about-intro-card,
  .about-number-card,
  .about-media-card,
  .about-mission-card article {
    padding: 20px;
    border-radius: 0;
  }

  .about-page-shell {
    padding: 0;
  }

  .about-union-card,
  .about-workshops-card,
  .about-finale-card {
    margin-inline: 0;
  }

  .about-workshops-card {
    padding: 22px;
  }

  .about-finale-card {
    margin-bottom: 0;
  }

  .about-union-card,
  .about-workshops-card,
  .about-finale-card {
    padding: 22px;
    border-radius: 0;
  }

  .about-union-card {
    min-height: auto;
    background: linear-gradient(180deg, rgb(255 255 255 / 92%) 0%, rgb(255 255 255 / 96%) 58%, #fff 100%);
    padding-top: clamp(120px, 35vw, 190px);
  }

  .about-union-card::before {
    width: 100%;
    background-position: center top;
    background-size: min(100%, 520px) auto;
  }

  .about-photo-card {
    width: auto;
    max-width: 100%;
    min-height: 190px;
    border-radius: 16px;
  }

  .about-photo-card--real figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    font-size: 20px;
    white-space: normal;
    text-wrap: balance;
  }

  .about-photo-card svg {
    width: 40px;
    height: 40px;
  }

  .about-photo-card span {
    font-size: 17px;
  }

  .about-stage-card .about-card-copy {
    padding-left: 0;
  }

  .about-stage-card .about-card-copy::before,
  .about-stage-card .about-card-copy p::before {
    display: none;
  }

  .about-finale-card {
    gap: 14px;
  }

  .about-finale-card blockquote {
    font-size: 26px;
  }

  .about-photo-card--wide {
    width: 100%;
    min-height: 0;
  }

  .about-programs-item {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Final container alignment overrides */
.hero-inner,
.about-page,
.site-header-inner,
.site-footer-inner {
  width: min(var(--content-max), calc(100% - 40px));
}

.hero-inner {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 980px) {
  .hero-inner,
  .about-page,
  .site-header-inner,
  .site-footer-inner {
    width: min(var(--content-max), calc(100% - 28px));
  }
}

/* hotfix: do not style profile back link as awards folder */
.person-profile .profile-back,
.person-profile .profile-back[href*="type=awards&folder="],
.person-profile .profile-back[href*="type=awards&folder="]:not([href*="folder=all"]) {
  position: static !important;
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #0d4da0 !important;
  font-weight: 800 !important;
}

.person-profile .profile-back::before,
.person-profile .profile-back::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.person-profile .profile-back,
.person-profile .profile-back[href*="type=awards&folder="],
.person-profile .profile-back[href*="type=awards&folder="]:not([href*="folder=all"]) {
  position: static !important;
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #0d4da0 !important;
  font-weight: 800 !important;
}

.person-profile .profile-back::before,
.person-profile .profile-back::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
/* profile back hotfix */
.person-profile .profile-back,
.person-profile .profile-back[href*="type=awards&folder="],
.person-profile .profile-back[href*="type=awards&folder="]:not([href*="folder=all"]) {
  position: relative !important;
  z-index: 20 !important;
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  max-width: max-content !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #0d4da0 !important;
  font-weight: 800 !important;
}

.person-profile .profile-back::before,
.person-profile .profile-back::after,
.person-profile .profile-back[href*="type=awards&folder="]::before,
.person-profile .profile-back[href*="type=awards&folder="]::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  background: none !important;
  background-image: none !important;
}

/* profile back final fix */
.person-profile a.profile-back{position:relative!important;z-index:20!important;display:inline-flex!important;width:auto!important;max-width:max-content!important;height:auto!important;min-height:0!important;padding:0!important;margin:0 0 20px!important;overflow:visible!important;border:0!important;border-radius:0!important;background:none!important;background-image:none!important;box-shadow:none!important;color:#06285d!important;font-weight:800!important;text-decoration:none!important;}
.person-profile a.profile-back:hover,.person-profile a.profile-back:focus-visible{color:#041f4a!important;}
.person-profile a.profile-back::before,.person-profile a.profile-back::after{content:none!important;display:none!important;width:0!important;height:0!important;min-height:0!important;background:none!important;background-image:none!important;}


.not-found-page {
  min-height: calc(100vh - 180px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 620px;
}

.not-found-card h1 {
  margin: 0;
  color: #072f6b;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.not-found-card p {
  margin: 0;
  color: #456585;
  font-size: 18px;
  line-height: 1.55;
}

/* award folder no trophy icon final */
.archive-folder-card[href*="type=awards&folder="]::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}
.archive-folder-card[href*="type=awards&folder="] .folder-icon,
.archive-folder-card[href*="type=awards&folder="] .folder-icon::before {
  content: none !important;
  display: none !important;
}

/* award folder no trophy icon hard final 2 */
.archive-folder-card[href*="type=awards&folder="]::before,
.archive-folder-card[href*="type=awards&folder="] .folder-icon,
.archive-folder-card[href*="type=awards&folder="] .folder-icon::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

/* award folder no trophy icon final 20260714 */
.archive-folder-card[href*="type=awards&folder="]::before,
.archive-folder-card[href*="type=awards&folder="] .folder-icon,
.archive-folder-card[href*="type=awards&folder="] .folder-icon::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}


/* final modal album link and positions */
.material-modal-info.has-album-link,
.material-modal-info.is-short.has-album-link {
  align-content: start !important;
  padding-top: 122px !important;
}
.material-modal-info > .material-album-link {
  top: 34px !important;
}
.directory-position-text {
  color: #708096 !important;
  font-weight: 600 !important;
}
.directory-position-tooltip {
  display: none !important;
}


/* final modal album link and muted position text 20260727-5 */
.material-dialog .material-dialog-content .material-modal-info {
  position: relative !important;
}
.material-dialog .material-dialog-content .material-modal-info.has-album-link,
.material-dialog .material-dialog-content .material-modal-info.is-short.has-album-link {
  align-content: start !important;
  padding-top: 86px !important;
}
.material-dialog .material-dialog-content .material-modal-info > a.material-album-link {
  position: absolute !important;
  left: 50% !important;
  top: 26px !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
}
.directory-person .directory-position-text { color: #486484 !important; }


/* final album link top alignment without glow 20260727-8 */
.material-dialog .material-dialog-content .material-modal-info > a.material-album-link {
  position: absolute !important;
  left: 50% !important;
  top: 28px !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  box-shadow: none !important;
}

/* people cards typography 20260729 */
.directory-person-body h2 {
  margin-bottom: 12px !important;
}

.directory-person-positions {
  margin-bottom: 5px !important;
}

.directory-position-text {
  color: #486484 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
}

.person-periods {
  margin-bottom: 9px !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

.person-tags a,
.person-tags span {
  font-size: 13px !important;
  line-height: 1.25 !important;
}


/* move album link into the right white panel center 20260727-10 */
.material-dialog .material-dialog-content .material-modal-info {
  position: relative !important;
}
.material-dialog .material-dialog-content .material-modal-info > a.material-album-link {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 28px !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  box-shadow: none !important;
}
.material-dialog .material-dialog-content .material-modal-media > a.material-album-link {
  display: none !important;
}


/* move album link into the right white panel center 20260727-10 */
.material-dialog .material-dialog-content .material-modal-info {
  position: relative !important;
}
.material-dialog .material-dialog-content .material-modal-info > a.material-album-link {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 28px !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  box-shadow: none !important;
}
.material-dialog .material-dialog-content .material-modal-media > a.material-album-link {
  display: none !important;
}


/* INPRINT_PAGE_V1 */
.inprint-list-section {
  max-width: min(100% - 56px, 1180px);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 78px) 0;
}

.inprint-search {
  margin: 0 auto clamp(18px, 3vw, 28px);
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.inprint-list {
  display: grid;
  gap: 18px;
}

.inprint-item {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1px minmax(0, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
  align-items: center;
  width: 100%;
  min-height: 146px;
  padding: 7px clamp(10px, 1.6vw, 16px);
  border: 1px solid rgb(120 163 207 / 34%);
  border-radius: 10px;
  background: rgb(255 255 255 / 88%);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 45px rgb(10 39 78 / 8%);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.inprint-item[hidden],
.inprint-item.is-search-hidden {
  display: none !important;
}

.inprint-item:hover,
.inprint-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgb(16 95 159 / 48%);
  box-shadow: 0 24px 55px rgb(10 39 78 / 14%);
  outline: none;
}

.inprint-cover-col {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  overflow: hidden;
}

.inprint-cover-col img {
  display: block;
  width: 100%;
  height: 132px;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.inprint-item.is-vertical-cover {
  min-height: 190px;
}

.inprint-item.is-vertical-cover .inprint-cover-col {
  min-height: 176px;
}

.inprint-item.is-vertical-cover .inprint-cover-col img {
  height: 176px;
}

.inprint-cover-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 132px;
  border-radius: 8px;
  background: #eaf3fc;
  color: #0a5596;
  font-weight: 900;
}

.inprint-divider {
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgb(16 95 159 / 45%), transparent);
}

.inprint-title-col {
  position: relative;
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 8px;
  padding-top: 18px;
}

.inprint-article-date {
  position: absolute;
  top: 0;
  right: 0;
  color: #8d6b20;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-align: right;
}

.form-row .article-date-select {
  min-width: 116px;
}

.form-row .article-month-select {
  min-width: 180px;
}

.inprint-title-col strong {
  color: #07336e;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.18;
  letter-spacing: 0;
}

.inprint-title-col small {
  align-self: end;
  justify-self: end;
  color: #6c7f98;
  font-size: 12px;
  font-weight: 700;
}

html.inprint-dialog-locked,
html.inprint-dialog-locked body {
  overflow: hidden;
}

.inprint-dialog {
  width: fit-content;
  max-width: calc(100vw - 16px);
  max-height: calc(100vh - 16px);
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #f4f8fd;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 34px 90px rgb(0 15 38 / 38%);
}

.inprint-dialog.is-multi-pdf {
  width: min(1120px, calc(100vw - 16px));
  height: calc(100vh - 16px);
  overflow: hidden;
}

.inprint-dialog.is-pdf-preview {
  width: fit-content;
  max-width: calc(100vw - 132px);
  height: auto;
  max-height: calc(100vh - 16px);
  background: transparent;
  box-shadow: none;
}

.inprint-dialog.is-pdf-preview.is-multi-pdf {
  width: fit-content;
  max-width: calc(100vw - 132px);
  height: calc(100vh - 16px);
  overflow: hidden;
}

.inprint-dialog.is-single-pdf {
  width: min(calc(100vw - 16px), calc((100vh - 16px) / var(--pdf-ratio, 1.414)));
  height: auto;
  aspect-ratio: 1 / var(--pdf-ratio, 1.414);
}

.inprint-dialog.is-pdf-preview.is-single-pdf {
  width: fit-content;
  max-width: calc(100vw - 132px);
  height: auto;
  max-height: calc(100vh - 16px);
  aspect-ratio: auto;
}

.inprint-dialog.is-image {
  width: fit-content;
  max-width: calc(100vw - 132px);
  height: auto;
  max-height: calc(100vh - 16px);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  line-height: 0;
}

.inprint-dialog.is-scaled {
  overflow: visible;
}

.inprint-dialog.is-scaled .inprint-pdf-image-pages,
.inprint-dialog.is-scaled .inprint-page img,
.inprint-dialog.is-scaled .inprint-page iframe {
  cursor: grab;
}

.inprint-dialog.is-dragging .inprint-pdf-image-pages,
.inprint-dialog.is-dragging .inprint-page img,
.inprint-dialog.is-dragging .inprint-page iframe {
  cursor: grabbing;
}

.inprint-dialog.is-dragging,
.inprint-dialog.is-dragging * {
  user-select: none;
}

.inprint-dialog::backdrop {
  background: rgb(2 15 38 / 76%);
  backdrop-filter: blur(5px);
}

.inprint-dialog-close {
  position: fixed;
  top: 18px;
  right: max(18px, calc((100vw - min(1120px, 100vw - 38px)) / 2 - 25px));
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 50%;
  background: #123f78;
  color: transparent;
  font-family: Arial, sans-serif;
  font-size: 0;
  font-weight: 400;
  line-height: 0;
  padding: 0;
  cursor: pointer;
}

.inprint-dialog-content {
  height: auto;
  min-height: 0;
}

.inprint-dialog.is-image .inprint-dialog-content,
.inprint-dialog.is-image .inprint-modal-inner,
.inprint-dialog.is-image .inprint-pages,
.inprint-dialog.is-image .inprint-page {
  width: fit-content;
  height: auto;
  max-width: calc(100vw - 132px);
  max-height: calc(100vh - 16px);
}

.inprint-dialog.is-pdf .inprint-dialog-content {
  height: 100%;
}

.inprint-modal-inner {
  position: relative;
  height: auto;
  min-height: 0;
}

.inprint-dialog.is-pdf .inprint-modal-inner {
  height: 100%;
}

.inprint-pages {
  height: auto;
  overflow: hidden;
}

.inprint-dialog.is-pdf .inprint-pages {
  height: 100%;
}

.inprint-page {
  position: relative;
  display: none;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 16px);
  overflow: visible;
  padding: 2px;
}

.inprint-page.is-pdf {
  height: 100%;
  max-height: none;
  overflow: hidden;
  padding: 0;
}

.inprint-page.is-single-pdf {
  padding: 0;
  background: transparent;
}

.inprint-page.is-multi-pdf {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #0a5596 #eaf3fc;
}

.inprint-page.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  place-content: center;
}

.inprint-dialog.is-image .inprint-page.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.inprint-dialog.is-image .inprint-page img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 132px);
  max-height: calc(100vh - 16px);
  object-fit: contain;
}

.inprint-dialog.is-image .inprint-dialog-close {
  right: max(18px, calc((100vw - min(1180px, 100vw - 38px)) / 2 - 25px));
}

.inprint-page iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.inprint-page.is-multi-pdf iframe {
  width: max(100%, 980px);
  height: max(calc((100vh - 16px) * var(--pdf-pages, 2)), calc(100vh - 16px));
}

.inprint-page.is-single-pdf iframe {
  border-radius: 0;
}

.inprint-page img {
  display: block;
  max-width: calc(100vw - 132px);
  max-height: calc(100vh - 16px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  transform-origin: 50% 50%;
  will-change: transform;
  user-select: none;
}

.inprint-pdf-image-pages {
  display: grid;
  justify-items: center;
  gap: 0;
  line-height: 0;
  padding: 0;
  background: transparent;
}

.inprint-pdf-image-pages img {
  background: transparent;
  box-shadow: none;
  max-width: 100%;
}

.inprint-page.is-pdf-preview {
  overflow: visible;
  background: transparent;
}

.inprint-page.is-pdf-preview.is-multi-pdf {
  overflow-x: hidden;
  overflow-y: auto;
  width: fit-content;
  max-width: calc(100vw - 132px);
  max-height: calc(100vh - 16px);
  background: transparent;
  scrollbar-width: thin;
  scrollbar-color: #0a5596 #eaf3fc;
}

.inprint-page.is-multi-pdf::-webkit-scrollbar,
.inprint-page.is-pdf-preview.is-multi-pdf::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.inprint-page.is-multi-pdf::-webkit-scrollbar-track,
.inprint-page.is-pdf-preview.is-multi-pdf::-webkit-scrollbar-track {
  background: #eaf3fc;
}

.inprint-page.is-multi-pdf::-webkit-scrollbar-thumb,
.inprint-page.is-pdf-preview.is-multi-pdf::-webkit-scrollbar-thumb {
  border: 3px solid #eaf3fc;
  border-radius: 999px;
  background: #0a5596;
}

.inprint-page.is-multi-pdf::-webkit-scrollbar-thumb:hover,
.inprint-page.is-pdf-preview.is-multi-pdf::-webkit-scrollbar-thumb:hover {
  background: #123f78;
}

.inprint-page.is-multi-pdf::-webkit-scrollbar-button,
.inprint-page.is-pdf-preview.is-multi-pdf::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.inprint-page.is-pdf-preview.is-active {
  display: block;
}

.inprint-page.is-pdf-preview.is-single-pdf.is-active {
  display: flex;
}

.inprint-page.is-pdf-preview .inprint-pdf-image-pages {
  width: fit-content;
  max-width: calc(100vw - 132px);
  margin: 0 auto;
  background: transparent;
  transform-origin: 50% 50%;
  will-change: transform;
}

.inprint-page.is-pdf-preview.is-single-pdf .inprint-pdf-image-pages {
  max-width: min(1000px, calc(100vw - 132px));
}

.inprint-page.is-pdf-preview.is-single-pdf .inprint-pdf-image-pages img {
  width: auto;
  height: auto;
  max-width: min(1000px, calc(100vw - 132px));
  max-height: calc(100vh - 16px);
}

.inprint-page.is-pdf-preview.is-multi-pdf .inprint-pdf-image-pages {
  width: var(--inprint-pdf-sheet-width, fit-content);
  max-width: calc(100vw - 132px);
  padding: 1px;
  background: #eaf3fc;
}

.inprint-page.is-pdf-preview.is-multi-pdf .inprint-pdf-image-pages img {
  width: auto;
  max-width: min(1040px, calc(100vw - 132px));
  max-height: none;
}

.inprint-page-nav {
  position: fixed;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 50%;
  background: #123f78;
  color: transparent;
  font-family: Arial, sans-serif;
  font-size: 0;
  font-weight: 400;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.inprint-page-nav::before {
  display: block;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-2px);
}


.inprint-page-prev { left: max(18px, calc((100vw - min(1180px, 100vw - 38px)) / 2 - 78px)); }
.inprint-page-next { right: max(18px, calc((100vw - min(1180px, 100vw - 38px)) / 2 - 78px)); }
.inprint-page-nav[hidden] { display: none; }

.inprint-dialog-close::before,
.inprint-page-nav::before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
}

.inprint-dialog-close::before {
  content: "\00d7";
  transform: translate(-50%, -54%);
}

.inprint-page-nav::before {
  transform: translate(-50%, -55%);
}


.inprint-dialog-close,
.inprint-page-nav {
  display: grid !important;
  place-items: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  background: #123f78 !important;
}

.inprint-page-nav {
  width: 48px !important;
  height: 58px !important;
  border: 1px solid rgb(255 255 255 / 54%) !important;
  border-radius: 8px !important;
  background: rgb(5 40 92 / 90%) !important;
}

.inprint-dialog-close::before,
.inprint-dialog-close::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 18px !important;
  height: 2.5px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #fff !important;
  transform-origin: center !important;
  pointer-events: none !important;
}

.inprint-dialog-close::before {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

.inprint-dialog-close::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.inprint-page-nav::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 13px !important;
  height: 13px !important;
  border-top: 3px solid #fff !important;
  border-right: 3px solid #fff !important;
  background: transparent !important;
  transform-origin: center !important;
  pointer-events: none !important;
}

.inprint-page-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg) !important;
}

.inprint-page-next::before {
  transform: translate(-65%, -50%) rotate(45deg) !important;
}

.inprint-dialog-close {
  position: fixed !important;
  right: clamp(14px, 2.4vw, 30px) !important;
  top: clamp(14px, 2vw, 26px) !important;
  left: auto !important;
  z-index: 1003 !important;
  width: 46px !important;
  height: 46px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  opacity: .62 !important;
  overflow: visible !important;
  transition: opacity .18s ease, transform .18s ease !important;
}

.inprint-dialog-close:hover,
.inprint-dialog-close:focus-visible,
.inprint-dialog.is-backdrop-hover .inprint-dialog-close {
  opacity: 1 !important;
  transform: scale(1.06) !important;
}

.inprint-dialog-close::before,
.inprint-dialog-close::after {
  width: 26px !important;
  height: 3px !important;
  border: 1px solid rgb(0 0 0 / 48%) !important;
  background: #fff !important;
  box-shadow: none !important;
}

.inprint-page-nav[hidden] {
  display: none !important;
}

.inprint-file-link,
.inprint-empty,
.inprint-empty-list,
.inprint-loading {
  color: #0a5596;
  font-weight: 800;
}

.inprint-loading {
  display: grid;
  min-width: min(520px, calc(100vw - 38px));
  min-height: 220px;
  place-items: center;
  border-radius: 8px;
  background: #f4f8fd;
}

@media (max-width: 760px) {
  .inprint-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .inprint-divider { height: 1px; align-self: auto; }
  .inprint-title-col { min-height: 0; }
  .inprint-page-nav { width: 46px; height: 46px; font-size: 32px; }
  .inprint-page-prev { left: 10px; }
  .inprint-page-next { right: 10px; }
}

/* INPRINT_MODAL_STABLE_20260812 */
.inprint-dialog.is-image,
.inprint-dialog.is-pdf-preview {
  width: fit-content !important;
  max-width: calc(100vw - 132px) !important;
  height: auto !important;
  max-height: calc(100vh - 16px) !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
}

.inprint-dialog.is-pdf-preview.is-single-pdf,
.inprint-dialog.is-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inprint-dialog.is-pdf-preview.is-multi-pdf {
  width: fit-content !important;
  max-width: calc(100vw - 132px) !important;
  height: calc(100vh - 16px) !important;
}

.inprint-dialog.is-image .inprint-dialog-content,
.inprint-dialog.is-image .inprint-modal-inner,
.inprint-dialog.is-image .inprint-pages,
.inprint-dialog.is-image .inprint-page,
.inprint-dialog.is-pdf-preview.is-single-pdf .inprint-dialog-content,
.inprint-dialog.is-pdf-preview.is-single-pdf .inprint-modal-inner,
.inprint-dialog.is-pdf-preview.is-single-pdf .inprint-pages,
.inprint-dialog.is-pdf-preview.is-single-pdf .inprint-page {
  width: fit-content !important;
  max-width: calc(100vw - 132px) !important;
  height: auto !important;
  max-height: calc(100vh - 16px) !important;
  overflow: visible !important;
}

.inprint-dialog.is-image .inprint-page.is-active,
.inprint-dialog.is-pdf-preview.is-single-pdf .inprint-page.is-active {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.inprint-dialog.is-image .inprint-page img,
.inprint-page.is-pdf-preview.is-single-pdf .inprint-pdf-image-pages img {
  width: auto !important;
  max-width: calc(100vw - 132px) !important;
  height: auto !important;
  max-height: calc(100vh - 16px) !important;
  object-fit: contain !important;
}

.inprint-page.is-pdf-preview.is-single-pdf .inprint-pdf-image-pages {
  width: fit-content !important;
  max-width: calc(100vw - 132px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
}

.inprint-dialog.is-pdf-preview.is-multi-pdf .inprint-dialog-content,
.inprint-dialog.is-pdf-preview.is-multi-pdf .inprint-modal-inner,
.inprint-dialog.is-pdf-preview.is-multi-pdf .inprint-pages {
  width: fit-content !important;
  max-width: calc(100vw - 132px) !important;
  height: 100% !important;
  overflow: visible !important;
}

.inprint-page.is-pdf-preview.is-multi-pdf {
  display: none;
  width: fit-content !important;
  max-width: calc(100vw - 132px) !important;
  height: 100% !important;
  max-height: calc(100vh - 16px) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding: 0 !important;
  background: transparent !important;
  scrollbar-width: thin;
  scrollbar-color: #0a5596 #eaf3fc;
}

.inprint-page.is-pdf-preview.is-multi-pdf.is-active {
  display: block !important;
}

.inprint-page.is-pdf-preview.is-multi-pdf .inprint-pdf-image-pages {
  width: var(--inprint-pdf-sheet-width, fit-content) !important;
  max-width: calc(100vw - 132px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
}

.inprint-page.is-pdf-preview.is-multi-pdf .inprint-pdf-image-pages img {
  display: block !important;
  width: auto !important;
  max-width: min(var(--inprint-pdf-sheet-width, 1000px), calc(100vw - 132px)) !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  background: #fff !important;
}

.inprint-page.is-pdf-preview.is-multi-pdf::-webkit-scrollbar {
  width: 12px;
}

.inprint-page.is-pdf-preview.is-multi-pdf::-webkit-scrollbar-track {
  background: #eaf3fc;
}

.inprint-page.is-pdf-preview.is-multi-pdf::-webkit-scrollbar-thumb {
  border: 3px solid #eaf3fc;
  border-radius: 999px;
  background: #0a5596;
}

.inprint-page.is-pdf-preview.is-multi-pdf::-webkit-scrollbar-button {
  display: none;
}

/* PUBLIC_RESPONSIVE_CLEANUP_20260812 */
html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

body > main {
  min-width: 0;
  overflow-x: clip;
}

.site-header,
.site-footer,
.home-hero,
.archive-hero,
.team-hero,
.person-profile,
.inprint-list-section,
.people-directory,
.archive-workspace,
.person-profile-content {
  max-width: 100vw;
  overflow-x: clip;
}

.home-hero *,
.archive-hero *,
.team-hero *,
.person-profile *,
.people-directory *,
.archive-workspace *,
.inprint-list-section *,
.person-profile-content * {
  min-width: 0;
}

.archive-hero.inprint-hero {
  min-height: clamp(248px, 32vw, 330px) !important;
}

.archive-hero.inprint-hero .archive-hero-inner {
  min-height: clamp(172px, 22vw, 250px) !important;
  padding-block: clamp(18px, 3vw, 34px) clamp(48px, 7vw, 72px) !important;
  align-items: center !important;
}

.archive-hero.inprint-hero h1 {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .home-hero,
  .archive-hero,
  .team-hero,
  .person-profile {
    background-position: center top !important;
  }

  .people-directory-grid,
  .students-directory-grid,
  .archive-grid,
  .archive-video-grid,
  .archive-award-grid,
  .profile-video-grid,
  .award-board,
  .video-preview-row,
  .home-video-folder-row {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  body > main:has(> .archive-hero.inprint-hero:first-child) > .archive-hero.inprint-hero:first-child {
    padding-top: 68px !important;
  }

  .archive-hero.inprint-hero {
    min-height: 228px !important;
  }

  .archive-hero.inprint-hero .archive-hero-inner {
    min-height: 160px !important;
    padding-block: 8px 42px !important;
    align-items: center !important;
  }

  .archive-hero.inprint-hero h1 {
    font-size: clamp(30px, 9vw, 42px) !important;
  }

  .archive-hero.inprint-hero p {
    max-width: 28rem;
  }

  .people-directory-grid,
  .students-directory-grid,
  .archive-grid,
  .archive-video-grid,
  .archive-award-grid {
    grid-template-columns: 1fr !important;
  }

  .people-directory-grid.is-rows .directory-person,
  .students-directory-grid.is-rows .directory-person {
    grid-template-columns: minmax(92px, 128px) minmax(0, 1fr) !important;
  }

  .directory-person {
    max-width: 100%;
  }

  .directory-person-body h2 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .person-profile-grid {
    grid-template-columns: 1fr !important;
  }

  .person-profile-copy h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }
}

@media (max-width: 520px) {
  .people-directory-grid.is-rows .directory-person,
  .students-directory-grid.is-rows .directory-person {
    grid-template-columns: 1fr !important;
  }

  .archive-hero.inprint-hero {
    min-height: 210px !important;
  }

  .archive-hero.inprint-hero .archive-hero-inner {
    min-height: 142px !important;
    padding-block: 2px 36px !important;
  }
}

/* INPRINT_LAYOUT_RESTORE_20260812 */
body > main:has(> .archive-hero.inprint-hero:first-child) {
  background: transparent !important;
  overflow-x: hidden !important;
}

.archive-hero.inprint-hero {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.archive-hero.inprint-hero + .inprint-list-section {
  margin-top: 0 !important;
}

.inprint-list-section {
  width: min(1180px, calc(100vw - 56px)) !important;
  max-width: min(1180px, calc(100vw - 56px)) !important;
  margin-inline: auto !important;
  padding: clamp(32px, 5vw, 68px) 0 clamp(54px, 7vw, 86px) !important;
  overflow: visible !important;
}

.inprint-list {
  width: 100% !important;
  max-width: 100% !important;
}

.inprint-item {
  max-width: 100% !important;
  overflow: hidden !important;
}

.inprint-cover-col,
.inprint-title-col {
  min-width: 0 !important;
}

@media (max-width: 760px) {
  .inprint-list-section {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    padding-top: 22px !important;
  }

  .archive-hero.inprint-hero {
    min-height: 204px !important;
  }

  .archive-hero.inprint-hero .archive-hero-inner {
    min-height: 136px !important;
    padding-block: 0 34px !important;
  }
}

@media (max-width: 520px) {
  .inprint-list-section {
    width: calc(100vw - 18px) !important;
    max-width: calc(100vw - 18px) !important;
  }

  .archive-hero.inprint-hero {
    min-height: 188px !important;
  }

  .archive-hero.inprint-hero .archive-hero-inner {
    min-height: 120px !important;
    padding-block: 0 28px !important;
  }
}

/* INPRINT_HERO_NO_HEADER_GAP_20260812 */
body > main:has(> .archive-hero.inprint-hero:first-child) {
  margin-top: -76px !important;
  padding-top: 0 !important;
}

body > main:has(> .archive-hero.inprint-hero:first-child) > .archive-hero.inprint-hero:first-child {
  padding-top: 76px !important;
}

body > main:has(> .home-hero:first-child) {
  margin-top: -76px;
  padding-top: 0;
}

body > main:has(> .home-hero:first-child) > .home-hero:first-child {
  padding-top: 76px;
}

body > main:has(> .team-hero:first-child) {
  margin-top: -76px;
  padding-top: 0;
}

body > main:has(> .team-hero:first-child) > .team-hero:first-child {
  padding-top: 76px;
}

@media (max-width: 760px) {
  body > main:has(> .archive-hero.inprint-hero:first-child) {
    margin-top: -68px !important;
  }

  body > main:has(> .archive-hero.inprint-hero:first-child) > .archive-hero.inprint-hero:first-child {
    padding-top: 68px !important;
  }

  body > main:has(> .home-hero:first-child) {
    margin-top: -68px;
  }

  body > main:has(> .home-hero:first-child) > .home-hero:first-child {
    padding-top: 68px;
  }
}

@media (max-width: 640px) {
  body > main:has(> .team-hero:first-child) {
    margin-top: -68px;
  }

  body > main:has(> .team-hero:first-child) > .team-hero:first-child {
    padding-top: 68px;
  }
}

@media (max-width: 430px) {
  .hero-bg {
    background-position: 18% top;
    transform-origin: 18% top;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(237 244 251 / 84%) 0%, rgb(237 244 251 / 70%) 58%, rgb(237 244 251 / 48%) 100%),
      linear-gradient(0deg, rgb(4 31 77 / 16%) 0%, transparent 24%);
  }
}

/* MOBILE_BURGER_AWARDS_20260814 */
@media (max-width: 980px) {
  .site-header .menu-toggle {
    display: inline-flex;
    flex: 0 0 46px;
    background: transparent;
    color: #fff;
    border: 0;
    box-shadow: none;
  }

  .site-header .nav-links {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    z-index: 50;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    background: #05285c;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgb(2 15 38 / 24%);
  }

  .site-header .nav-links.is-open {
    display: grid;
  }

  .site-header .nav-links a {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 5px;
    color: #fff;
  }
}

@media (max-width: 420px) {
  .site-header-inner {
    gap: 10px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    flex: 0 0 58px;
    width: 58px;
    height: 42px;
  }

  .with-actions {
    align-items: stretch;
    gap: 12px;
  }

  .with-actions::after {
    display: none;
  }

  .with-actions .small-link,
  .small-link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .award-row,
  .award-preview-row,
  .archive-award-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .award-card,
  .archive-award-item,
  .archive-award-grid a,
  .home-award-tile {
    width: 100%;
    min-width: 0 !important;
    overflow: hidden;
  }

  .award-card,
  .archive-award-item,
  .archive-award-grid a {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 10px;
    padding: 10px;
  }

  .archive-award-item {
    align-items: center;
  }

  .archive-award-copy {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
    text-align: left;
  }

  .archive-award-copy strong,
  .archive-award-copy small,
  .archive-award-copy p {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .archive-award-copy strong,
  .archive-award-copy p {
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .award-card img,
  .archive-award-item img,
  .archive-award-grid img,
  .archive-award-placeholder,
  .archive-award-item > img {
    width: 76px !important;
    min-width: 76px !important;
    height: 76px !important;
  }

  .archive-award-placeholder svg {
    width: 38px !important;
    height: 38px !important;
  }

  .award-card strong,
  .archive-award-item strong,
  .archive-award-grid strong,
  .home-award-tile strong {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .home-award-tile {
    grid-template-columns: 84px minmax(0, 1fr) !important;
    min-height: 112px !important;
  }

  .home-award-visual,
  .home-award-visual > img,
  .home-award-visual .archive-award-placeholder {
    width: 84px !important;
    min-height: 112px !important;
  }

  .home-award-tile strong {
    padding: 0 10px !important;
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  .home-award-tile > span:not(.home-award-visual) {
    padding: 0 10px !important;
    font-size: 11px;
  }
}

@media (max-width: 340px) {
  .site-header-inner {
    width: calc(100% - 16px);
  }

  .brand-mark {
    flex-basis: 50px;
    width: 50px;
  }

  .site-header .menu-toggle {
    flex-basis: 42px;
    width: 42px;
  }

  .award-card,
  .archive-award-item,
  .archive-award-grid a,
  .home-award-tile {
    grid-template-columns: 68px minmax(0, 1fr) !important;
  }

  .award-card img,
  .archive-award-item img,
  .archive-award-grid img,
  .archive-award-placeholder,
  .archive-award-item > img,
  .home-award-visual,
  .home-award-visual > img,
  .home-award-visual .archive-award-placeholder {
    width: 68px !important;
    min-width: 68px !important;
  }

  .archive-award-item img,
  .archive-award-placeholder,
  .archive-award-item > img {
    height: 68px !important;
  }
}

/* MOBILE_BURGER_PLAIN_ABOUT_FLOW_20260814 */
@media (max-width: 980px) {
  .site-header .menu-toggle,
  .menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    overflow: visible;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #fff;
  }

  .site-header .menu-toggle span,
  .menu-toggle span {
    flex: 0 0 2px;
    width: 24px;
    height: 2px;
    margin: 0;
    background: currentColor;
  }
}

@media (max-width: 900px) {
  .about-media-card.media-left .about-card-copy {
    order: 1;
  }

  .about-media-card.media-left .about-photo-card {
    order: 2;
    margin-top: 2px;
    margin-bottom: 10px;
  }
}

/* MOBILE_UNION_COMPACT_20260814 */
@media (max-width: 420px) {
  .about-union-card {
    padding-top: 22px !important;
    margin-top: 0 !important;
  }

  .about-union-card::before {
    content: none !important;
    display: none !important;
  }

  .about-inline-details[open] .about-details-body,
  .about-dark-details[open] .about-details-body {
    max-height: none !important;
    overflow: visible !important;
  }
}

@media (max-width: 340px) {
  .about-union-card {
    padding: 18px !important;
  }

  .about-union-copy,
  .about-card-copy {
    gap: 10px;
  }

  .about-union-copy p:not(.about-eyebrow),
  .about-card-copy p:not(.about-eyebrow),
  .about-union-details .about-details-body p {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .about-union-copy .about-eyebrow {
    margin: 0 !important;
    color: #0b55b5 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
  }
}

/* HOME_COMPACT_SECTION_ACTIONS_20260814 */
@media (max-width: 420px) {
  .section-title.with-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  .section-title.with-actions h2 {
    min-width: 0;
    font-size: clamp(18px, 5.6vw, 22px) !important;
    line-height: 1.08;
  }

  .section-title.with-actions .small-link {
    width: auto;
    max-width: 116px;
    min-height: 30px;
    padding: 0 8px;
    gap: 5px;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1;
    flex: 0 0 auto;
  }
}

@media (max-width: 340px) {
  .section-title.with-actions {
    gap: 6px;
  }

  .section-title.with-actions h2 {
    font-size: 17px !important;
  }

  .section-title.with-actions .small-link {
    max-width: 102px;
    min-height: 28px;
    padding-inline: 7px;
    font-size: 9px;
  }
}

/* HOME_AFTER_PEOPLE_FLOW_20260814 */
.people-panel + .media-panel {
  padding-top: 28px !important;
}

.media-panel .media-block {
  scroll-margin-top: 92px;
}

@media (max-width: 760px) {
  .people-panel,
  .media-panel {
    padding-top: 28px !important;
  }

  .people-panel + .media-panel {
    padding-top: 18px !important;
  }

  .media-panel {
    gap: 12px !important;
  }
}

@media (max-width: 420px) {
  .people-panel,
  .media-panel {
    padding-top: 22px !important;
  }

  .people-panel + .media-panel {
    padding-top: 12px !important;
  }

  .media-block {
    padding: 14px !important;
  }
}

/* HOME_MEDIA_SCROLL_PERFORMANCE_20260814 */
.media-block.reveal {
  transform: none !important;
}

.media-block.reveal.is-visible {
  transition: opacity .28s ease !important;
}

.home-album-row .home-album-card img {
  backface-visibility: hidden;
}

/* ABOUT_DETAILS_ARROW_SPACING_20260814 */
.about-union-details .about-details-body p:first-child,
.about-workshops-details .about-details-body p:first-child,
.about-inline-details .about-details-body p:first-child,
.about-dark-details .about-details-body p:first-child {
  margin-top: 8px !important;
}

.about-details-close {
  gap: 6px !important;
}

.about-details-close::after {
  content: "↑" !important;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 16px !important;
  line-height: 1 !important;
  transform: translateY(-1px);
}

@media (max-width: 420px) {
  .about-union-details .about-details-body p:first-child,
  .about-workshops-details .about-details-body p:first-child,
  .about-inline-details .about-details-body p:first-child,
  .about-dark-details .about-details-body p:first-child {
    margin-top: 4px !important;
  }
}

/* HOME_MOBILE_AWARD_IMAGE_BALANCE_20260814 */
@media (max-width: 420px) {
  .award-preview-row .home-award-tile {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    min-height: 136px !important;
  }

  .award-preview-row .home-award-visual {
    width: 104px !important;
    min-height: 136px !important;
    height: 100% !important;
    aspect-ratio: auto !important;
  }

  .award-preview-row .home-award-visual > img,
  .award-preview-row .home-award-visual .archive-award-placeholder {
    width: 100% !important;
    height: 100% !important;
    min-height: 136px !important;
    object-fit: cover;
    object-position: center;
  }

  .award-preview-row .home-award-tile strong {
    padding: 0 8px !important;
    font-size: 12px !important;
    line-height: 1.16 !important;
    -webkit-line-clamp: 4;
  }

  .award-preview-row .home-award-tile > span:not(.home-award-visual) {
    padding: 0 8px !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 340px) {
  .award-preview-row .home-award-tile {
    grid-template-columns: 112px minmax(0, 1fr) !important;
    min-height: 146px !important;
  }

  .award-preview-row .home-award-visual {
    width: 112px !important;
    min-height: 146px !important;
  }

  .award-preview-row .home-award-visual > img,
  .award-preview-row .home-award-visual .archive-award-placeholder {
    min-height: 146px !important;
  }

  .award-preview-row .home-award-tile strong {
    padding-inline: 7px !important;
    font-size: 10.5px !important;
    line-height: 1.14 !important;
  }

  .award-preview-row .home-award-tile > span:not(.home-award-visual) {
    padding-inline: 7px !important;
    font-size: 9.5px !important;
  }
}

/* FOOTER_LOGO_BALANCE_20260814 */
.site-footer-inner {
  align-items: center;
}

.site-footer-inner p {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 190px);
  font-size: 13px;
  line-height: 1.35;
}

.site-footer-inner p strong {
  font-size: 14px;
}

.footer-official-logo {
  flex: 0 0 auto;
  width: min(170px, 34vw);
  max-width: none;
}

@media (max-width: 640px) {
  .site-footer-inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-block: 22px;
  }

  .site-footer-inner p {
    max-width: none;
    font-size: 11px;
    line-height: 1.28;
  }

  .site-footer-inner p strong {
    font-size: 12px;
  }

  .footer-official-logo {
    width: min(112px, 34vw);
  }

  .footer-official-logo img {
    max-height: 38px;
  }
}

@media (max-width: 340px) {
  .site-footer-inner {
    gap: 8px;
  }

  .site-footer-inner p {
    font-size: 10px;
    line-height: 1.22;
  }

  .site-footer-inner p strong {
    font-size: 11px;
  }

.footer-official-logo {
    width: 94px;
  }
}


