:root {
  --ink: #0f2533;
  --muted: #607080;
  --blue: #0b62a3;
  --blue-dark: #083a70;
  --blue-soft: #eaf5ff;
  --gold: #c8a24a;
  --orange: #f26b3a;
  --green: #16845d;
  --line: #dbe8ef;
  --paper: #ffffff;
  --wash: #f5f9fb;
  --shadow: 0 18px 45px rgba(15, 37, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  background:
    linear-gradient(135deg, rgba(11, 98, 163, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-logo-tbb {
  border-radius: 50%;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 17px;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #314555;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.top-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.top-nav a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

main {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 72px) 54px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(46px, 7vw, 98px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 24px 0 0;
  color: var(--blue-dark);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}

.hero-body {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.button.secondary {
  background: #ffffff;
}

.hero-visual {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.overview article {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: #ffffff;
}

.overview strong {
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.overview span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.subsection-heading {
  margin-top: 42px;
}

.group-entry-grid {
  margin-bottom: 48px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.filter-button.active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.student-card,
.award-card,
.group-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(15, 37, 51, 0.08);
  overflow: hidden;
}

.student-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--blue-soft), #ffffff);
  overflow: hidden;
}

.student-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.student-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  font-size: 54px;
  font-weight: 900;
  background:
    linear-gradient(90deg, rgba(11, 98, 163, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 98, 163, 0.12) 1px, transparent 1px),
    #f8fbfd;
  background-size: 32px 32px;
}

.student-body {
  padding: 20px;
}

.student-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.student-body h3 {
  margin: 8px 0 6px;
  font-size: 28px;
  line-height: 1.18;
}

.student-role {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 800;
}

.student-summary {
  margin: 0;
  color: #334c5e;
  font-size: 16px;
  line-height: 1.72;
}

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

.tag-list.compact {
  margin-top: 8px;
}

.award-section {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e4eef5;
}

.award-label {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid #cfe3f4;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.tag.award {
  color: #663f00;
  background: #fff5da;
  border-color: #efd184;
}

.tag.team {
  color: #063f59;
  background: #e7f7ff;
  border-color: #8fd4ee;
}

.tag.empty {
  color: #6c7a84;
  background: #f5f8fa;
  border-color: #dbe5eb;
}

.team-awards {
  margin-top: 10px;
}

.student-field {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 10px;
  background: #f6fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.student-field img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.student-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

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

.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.profile-link:hover {
  background: var(--blue-dark);
}

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

.award-card {
  padding: 22px;
}

.award-card h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 22px;
}

.award-card .en {
  color: var(--gold);
  font-weight: 900;
}

.award-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.group-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
  min-height: 420px;
}

.group-copy {
  padding: 24px;
}

.group-copy h3 {
  margin: 0;
  font-size: 30px;
}

.group-focus {
  margin: 10px 0 0;
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1.6;
}

.group-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.group-members {
  color: var(--blue-dark) !important;
  font-weight: 900;
}

.member-link-list {
  margin: 10px 0 0;
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1.9;
}

.member-link-list a {
  color: var(--blue);
  border-bottom: 1px solid rgba(11, 98, 163, 0.25);
}

.mvp-strip {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  background: #f2f8fb;
}

.mvp-strip img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.site-footer {
  padding: 32px clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: var(--ink);
}

.site-footer p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.86);
}

.profile-page {
  background:
    linear-gradient(90deg, rgba(11, 98, 163, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 98, 163, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.profile-main {
  width: min(1380px, 100%);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.profile-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-title {
  margin: 0;
  max-width: 840px;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.96;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.profile-lead {
  max-width: 840px;
  margin: 26px 0 0;
  color: #425a6d;
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.75;
}

.profile-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.profile-visual-card::before {
  content: "";
  display: block;
  height: 12px;
  background: linear-gradient(90deg, var(--blue), #2ba8db, var(--gold));
}

.profile-visual-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.profile-visual-card--landscape img {
  display: block;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.profile-caption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.profile-nav {
  position: sticky;
  top: 88px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.profile-nav a {
  min-height: 36px;
  padding: 7px 12px;
  color: var(--blue-dark);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.profile-section {
  padding: clamp(48px, 6vw, 82px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 170px;
}

.profile-section h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
}

.profile-section p {
  color: #425a6d;
  font-size: 18px;
  line-height: 1.82;
}

.profile-reflection-section {
  background: rgba(234, 245, 255, 0.42);
}

.reflection-heading,
.profile-reflection {
  max-width: 900px;
}

.profile-reflection {
  margin-top: 30px;
  padding-left: 28px;
  border-left: 4px solid var(--orange);
}

.profile-reflection p {
  margin: 0;
  color: #263f51;
  font-size: 19px;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

.profile-reflection p + p {
  margin-top: 1.45em;
}

.profile-reflection h3 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 26px;
  line-height: 1.35;
}

.reflection-subsection + .reflection-subsection {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.reflection-subsection[lang="en"] p {
  text-align: left;
}

.profile-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.profile-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 37, 51, 0.07);
}

.profile-panel h3 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 24px;
}

.profile-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.profile-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #eef4f7;
}

.profile-photo figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.profile-photo-gallery,
.profile-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 380px));
  gap: 18px;
  justify-content: start;
  align-items: start;
}

.profile-video-grid-three {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.profile-video-grid-three figure {
  width: 100%;
  max-width: 380px;
}

.profile-photo-gallery figure,
.profile-video-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 37, 51, 0.08);
}

.profile-photo-gallery img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  background: #eef4f7;
}

.profile-photo-gallery figcaption,
.profile-video-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.profile-video-block {
  margin-top: 36px;
}

.profile-video-block h3 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 24px;
}

.profile-video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--ink);
}

.profile-video-grid .portrait-video {
  max-width: 380px;
}

.profile-video-grid .portrait-video video {
  aspect-ratio: 9 / 16;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.profile-gallery figure {
  margin: 0;
}

.profile-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.profile-gallery figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.live-mvp {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: start;
  margin: 32px 0;
}

.live-mvp-copy {
  padding-top: 8px;
}

.live-mvp-copy .live-mvp-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.live-mvp-copy h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1.25;
}

.live-mvp-copy .live-mvp-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.live-mvp-copy .profile-link {
  margin-top: 6px;
}

.live-mvp-frame {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f7fa;
}

.live-mvp-frame iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  background: #ffffff;
}

.resource-section {
  background: rgba(247, 251, 253, 0.78);
}

.resource-intro {
  max-width: 920px;
  margin: 0 0 28px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}

.resource-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 37, 51, 0.08);
}

.resource-file-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.resource-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 5px;
  color: #ffffff;
  background: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
}

.resource-card h3 {
  margin: 18px 0 10px;
  color: var(--blue-dark);
  font-size: 23px;
  line-height: 1.4;
}

.resource-card p {
  margin: 0 0 22px;
  color: #425a6d;
  font-size: 15px;
  line-height: 1.75;
}

.resource-download {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding: 10px 14px;
  border: 1px solid var(--blue-dark);
  border-radius: 6px;
  color: var(--blue-dark);
  background: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.resource-download:hover,
.resource-download:focus-visible {
  color: #ffffff;
  background: var(--blue-dark);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 18px;
  align-items: start;
}

.certificate-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 37, 51, 0.08);
}

.certificate-preview {
  display: block;
  background: #e7f2f8;
}

.certificate-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3508 / 2480;
  object-fit: contain;
  background: #e7f2f8;
}

.certificate-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.certificate-card figcaption span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.certificate-card strong {
  color: var(--blue-dark);
  font-size: 15px;
  line-height: 1.45;
}

.certificate-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.certificate-pdf-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 38px;
  padding: 0 10px;
  color: #ffffff;
  border-radius: 6px;
  background: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.certificate-pdf-link:hover,
.certificate-pdf-link:focus-visible {
  background: var(--blue);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .hero,
  .profile-hero,
  .profile-columns,
  .student-grid,
  .award-grid,
  .group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-text strong {
    white-space: normal;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .profile-hero,
  .profile-columns,
  .profile-gallery,
  .profile-photo-gallery,
  .profile-video-grid,
  .live-mvp,
  .student-grid,
  .award-grid,
  .group-grid,
  .overview {
    grid-template-columns: 1fr;
  }

  .live-mvp-frame iframe {
    height: 650px;
  }

  .hero {
    padding-top: 34px;
  }

  .profile-nav {
    position: static;
  }

  .profile-section {
    scroll-margin-top: 16px;
  }

  .profile-reflection {
    padding-left: 18px;
  }

  .profile-reflection p {
    font-size: 17px;
    line-height: 1.9;
    text-align: left;
  }

  .profile-reflection h3 {
    font-size: 22px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .profile-title {
    font-size: clamp(48px, 15vw, 76px);
  }

  .group-card {
    grid-template-columns: 1fr;
  }

  .mvp-strip {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .mvp-strip img {
    aspect-ratio: 1 / 1;
  }
}

@media print {
  .site-header,
  .filter-bar,
  .hero-actions {
    display: none;
  }

  body {
    background: #ffffff;
  }

  .section,
  .hero {
    padding: 24px;
  }

  .student-card,
  .award-card,
  .group-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
