:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-alt: #eef4f8;
  --text: #111827;
  --heading: #102a43;
  --muted: #5f6b7a;
  --line: #dce5ed;
  --blue: #2478bd;
  --blue-dark: #175f9b;
  --green: #28a86b;
  --orange: #e88324;
  --shadow: 0 16px 44px rgba(16, 42, 67, 0.08);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a {
  color: var(--blue);
}

button {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  text-decoration: none;
  min-width: max-content;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  letter-spacing: 0.05em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav a {
  padding: 9px 8px;
  color: #334155;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--blue-dark);
  background: #edf5fb;
}

.menu-toggle {
  display: none;
  padding: 9px 12px;
  color: var(--heading);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}

.hero {
  padding: 100px 0 82px;
  background:
    radial-gradient(circle at 12% 8%, rgba(36, 120, 189, 0.12), transparent 31%),
    radial-gradient(circle at 84% 17%, rgba(40, 168, 107, 0.10), transparent 28%),
    #fff;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 999px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--heading);
  letter-spacing: -0.065em;
}

.hero h1 {
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.92;
}

.hero h1 span {
  color: var(--heading);
}

.page-hero {
  padding: 88px 0 60px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
}

.expansion {
  max-width: 850px;
  margin: 28px 0 0;
  color: #25384a;
  font-size: clamp(1.04rem, 1.8vw, 1.32rem);
}

.expansion strong {
  color: var(--blue-dark);
}

.lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead-small {
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

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

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--heading);
  background: #fff;
}

.hero-panel,
.side-card,
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.panel-label {
  margin: 0;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel h2,
.side-card h3,
.contact-card h2 {
  color: var(--heading);
}

.hero-panel h2 {
  margin: 12px 0 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.hero-panel > p:not(.panel-label) {
  color: var(--muted);
}

.facts {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 14px;
}

.facts dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.facts dd {
  margin: 0;
  color: var(--heading);
  font-size: 0.84rem;
  font-weight: 750;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.callout h2,
.prose h2,
.research-block h2,
.empty-state h2 {
  color: var(--heading);
}

.section-heading h2,
.split h2,
.callout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card h3 {
  margin: 16px 0 0;
  color: var(--heading);
  line-height: 1.25;
}

.card p {
  color: var(--muted);
}

.card a,
.text-link {
  font-weight: 850;
  text-decoration: none;
}

.tag,
.status {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tag {
  color: var(--blue-dark);
  background: #eaf4fb;
}

.status.active {
  color: #0c7044;
  background: #e7f7ef;
}

.status.planned {
  color: #9a5518;
  background: #fff2e5;
}

.split,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.mini-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}

.mini-list div {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.mini-list div:last-child {
  border-bottom: 0;
}

.mini-list span {
  color: var(--muted);
  font-size: 0.83rem;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(100deg, #fff, #eef7fb);
  box-shadow: var(--shadow);
}

.callout.compact {
  margin-top: 30px;
}

.callout p {
  margin-bottom: 0;
  color: var(--muted);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 0 0 10px;
}

.prose h2:not(:first-child) {
  margin-top: 34px;
}

.prose p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #334155;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

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

.person-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.person-photo {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(145deg, #eef6fb, #f0faf5);
  font-size: 2.25rem;
  font-weight: 900;
}

.person-body {
  padding: 19px;
}

.person-role {
  margin: 0;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-body h3 {
  margin: 7px 0 0;
  color: var(--heading);
}

.person-body p:last-child {
  color: var(--muted);
  font-size: 0.84rem;
}

.note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.stack {
  display: grid;
  gap: 20px;
}

.research-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.research-block h2 {
  margin: 14px 0 0;
}

.research-block > p {
  color: var(--muted);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.chip-list span {
  padding: 7px 10px;
  color: #425466;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfcfe;
  font-size: 0.75rem;
}

.empty-state {
  padding: 36px;
  text-align: center;
  border: 1px dashed #b9c7d4;
  border-radius: var(--radius);
  background: #fff;
}

.empty-state p {
  color: var(--muted);
}

.publication-template {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.pub-year {
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 900;
}

.publication-template h3 {
  margin: 0;
  color: var(--heading);
}

.publication-template p {
  color: var(--muted);
}

.pub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pub-links a {
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline time {
  color: var(--blue);
  font-weight: 900;
}

.timeline h2 {
  margin: 0;
  color: var(--heading);
  font-size: 1.2rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-card p {
  color: var(--muted);
}

.site-footer {
  padding: 36px 0;
  color: #dce6ef;
  background: var(--heading);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 30px;
  align-items: start;
}

.site-footer p {
  margin: 6px 0 0;
  color: #bfd0de;
  font-size: 0.84rem;
}

.site-footer a {
  color: #fff;
}

.footer-bottom {
  color: #bfd0de;
  font-size: 0.82rem;
}

code {
  padding: 2px 6px;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f6f9fb;
}

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

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

  .primary-nav a {
    padding-inline: 6px;
    font-size: 0.76rem;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: grid;
  }

  .primary-nav a {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .section-heading,
  .callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 14px;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 580px) {
  .container {
    width: min(var(--max), calc(100% - 26px));
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 19vw, 5rem);
  }

  .card-grid.four,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .hero-panel,
  .side-card,
  .contact-card,
  .research-block,
  .callout {
    padding: 22px;
  }

  .timeline article,
  .publication-template {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Individual member profile pages
   ========================================================= */

.person-name-link {
  color: inherit;
  text-decoration: none;
}

.person-name-link:hover,
.person-name-link:focus-visible {
  color: var(--blue, #175ca8);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.profile-page-body {
  min-height: 100vh;
  margin: 0;
  background: #f7f9fc;
  color: #172033;
}

.profile-topbar {
  background: #ffffff;
  border-bottom: 1px solid #e3e8ef;
}

.profile-topbar-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.profile-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #172033;
  font-weight: 700;
  text-decoration: none;
}

.profile-brand img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.profile-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.profile-navigation a {
  color: #354159;
  text-decoration: none;
  font-weight: 600;
}

.profile-navigation a:hover {
  color: #175ca8;
}

.profile-hero {
  width: min(1040px, calc(100% - 40px));
  margin: 64px auto 28px;
  padding: 44px;
  display: flex;
  align-items: center;
  gap: 38px;
  background: #ffffff;
  border: 1px solid #e3e8ef;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(19, 35, 58, 0.07);
}

.profile-avatar {
  width: 156px;
  height: 156px;
  flex: 0 0 156px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #e8eff8;
  color: #175ca8;
  font-size: 42px;
  font-weight: 700;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-heading h1 {
  margin: 5px 0 14px;
  color: #111827;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
}

.profile-role {
  margin: 0;
  color: #175ca8;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-summary {
  max-width: 720px;
  margin: 0;
  color: #566176;
  font-size: 1.08rem;
  line-height: 1.75;
}

.profile-content {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto 70px;
  display: grid;
  gap: 20px;
}

.profile-section {
  padding: 30px 34px;
  background: #ffffff;
  border: 1px solid #e3e8ef;
  border-radius: 16px;
}

.profile-section h2 {
  margin-top: 0;
  color: #172033;
}

.profile-section p {
  margin-bottom: 0;
  color: #566176;
  line-height: 1.75;
}

.profile-back-link {
  width: fit-content;
  margin-top: 10px;
  color: #175ca8;
  font-weight: 700;
  text-decoration: none;
}

.profile-footer {
  padding: 28px 20px;
  background: #101a2d;
  color: #dbe4f1;
  text-align: center;
}

@media (max-width: 760px) {
  .profile-topbar-inner {
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-navigation {
    gap: 14px;
  }

  .profile-hero {
    margin-top: 32px;
    padding: 30px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-avatar {
    width: 120px;
    height: 120px;
    flex-basis: 120px;
    font-size: 34px;
  }

  .profile-section {
    padding: 24px;
  }
}


/* LUMEN-X redesigned member directory */
.people-directory-section{background:radial-gradient(circle at 0 0,rgba(36,120,189,.07),transparent 30%),var(--bg)}
.member-directory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;align-items:stretch}
.member-card{min-width:0;padding:30px 24px 24px;display:flex;flex-direction:column;align-items:center;text-align:center;border:1px solid #d6e0ea;border-radius:26px;background:#fff;box-shadow:0 16px 36px rgba(16,42,67,.08);transition:.22s ease}
.member-card:hover{transform:translateY(-5px);border-color:#bfd2e3;box-shadow:0 22px 48px rgba(16,42,67,.13)}
.member-avatar{width:158px;height:158px;padding:6px;display:grid;place-items:center;border-radius:50%;background:linear-gradient(#fff,#fff) padding-box,linear-gradient(145deg,var(--blue),var(--green),var(--orange)) border-box;border:5px solid transparent;box-shadow:0 12px 28px rgba(16,42,67,.13)}
.member-avatar span{width:100%;height:100%;display:grid;place-items:center;border-radius:50%;color:var(--heading);background:linear-gradient(145deg,#e9f4fb,#f5f8fb 58%,#edf7f1);font-size:2.4rem;font-weight:900}
.member-name{margin:22px 0 0;color:var(--heading);font-size:1.2rem;line-height:1.24}.member-name a{color:inherit;text-decoration:none}.member-name a:hover{color:var(--blue-dark);text-decoration:underline;text-underline-offset:4px}
.member-role{margin:9px 0 0;padding:6px 11px;color:#a3113a;border-radius:999px;background:#fff0f5;font-size:.74rem;font-weight:850;line-height:1.2}
.member-focus{min-height:3.4em;margin:14px 0 0;color:#26394e;font-size:.92rem;line-height:1.55}
.member-tags{min-height:66px;margin-top:17px;display:flex;flex-wrap:wrap;align-content:flex-start;justify-content:center;gap:8px}.member-tags span{padding:7px 10px;color:var(--blue-dark);border-radius:999px;background:#edf4fa;font-size:.68rem;font-weight:800;line-height:1.2}
.member-card-contact{max-width:100%;margin-top:20px;color:var(--heading);font-size:.78rem;font-weight:750;overflow-wrap:anywhere;text-decoration:none}.member-card-contact:before{margin-right:6px;color:var(--blue);content:"✉"}
.member-profile-button{min-height:46px;margin-top:18px;padding:11px 18px;display:inline-flex;align-items:center;justify-content:center;gap:7px;color:#fff;border-radius:999px;background:var(--heading);font-size:.82rem;font-weight:850;text-decoration:none}.member-profile-button:hover{color:#fff;background:var(--blue-dark);transform:translateY(-1px)}
.member-photo-note{text-align:center}

/* LUMEN-X detailed member profiles */
.member-detail-body{background:#f6f8fb}.member-detail-main{padding:58px 0 82px}
.member-detail-hero{display:grid;grid-template-columns:210px minmax(0,1fr);gap:42px;align-items:center;padding:42px;border:1px solid var(--line);border-radius:28px;background:radial-gradient(circle at 0 0,rgba(36,120,189,.11),transparent 42%),#fff;box-shadow:var(--shadow)}
.member-detail-avatar{width:190px;height:190px;padding:7px;display:grid;place-items:center;border:6px solid transparent;border-radius:50%;background:linear-gradient(#fff,#fff) padding-box,linear-gradient(145deg,var(--blue),var(--green),var(--orange)) border-box;box-shadow:0 16px 34px rgba(16,42,67,.14)}
.member-detail-avatar span{width:100%;height:100%;display:grid;place-items:center;color:var(--heading);border-radius:50%;background:linear-gradient(145deg,#eaf4fb,#f5f8fb,#edf7f1);font-size:3.1rem;font-weight:900}
.member-detail-department{margin:0 0 10px;color:var(--blue-dark);font-weight:800}.member-detail-heading h1{margin:0;color:var(--heading);font-size:clamp(2.5rem,6vw,4.7rem);line-height:1;letter-spacing:-.055em}
.member-detail-program{width:fit-content;margin:15px 0 0;padding:7px 12px;color:#a3113a;border-radius:999px;background:#fff0f5;font-size:.78rem;font-weight:850}.member-detail-lab{margin:14px 0 0;color:var(--heading);font-weight:800}
.member-detail-email{margin-top:12px;display:inline-flex;align-items:center;gap:7px;font-weight:750;text-decoration:none}.member-detail-email:before{content:"✉"}
.member-detail-summary-grid{margin-top:26px;display:grid;grid-template-columns:1.55fr .85fr;gap:22px}.member-detail-highlight{padding:27px 30px;border:1px solid var(--line);border-radius:20px;background:#fff}.member-detail-highlight h2{margin:0;color:var(--heading);font-size:1.05rem}.member-detail-highlight p{margin:11px 0 0;color:var(--muted)}
.member-detail-layout{margin-top:26px;display:grid;grid-template-columns:245px minmax(0,1fr);gap:24px;align-items:start}.member-detail-nav{position:sticky;top:102px;padding:18px;display:grid;gap:4px;border:1px solid var(--line);border-radius:18px;background:#fff}.member-detail-nav a{padding:9px 11px;color:#34465a;border-radius:9px;font-size:.8rem;font-weight:750;text-decoration:none}.member-detail-nav a:hover{color:var(--blue-dark);background:#edf5fb}
.member-detail-sections{display:grid;gap:18px}.member-detail-section{padding:29px 32px;scroll-margin-top:105px;border:1px solid var(--line);border-radius:20px;background:#fff}.member-detail-section h2{margin:0;color:var(--heading);font-size:1.25rem}.member-detail-section p{margin:11px 0 0;color:var(--muted)}.member-detail-placeholder{font-style:italic}.member-detail-back{margin-top:24px;display:inline-flex;font-weight:850;text-decoration:none}
@media(max-width:1050px){.member-directory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.member-detail-summary-grid,.member-detail-layout{grid-template-columns:1fr}.member-detail-nav{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.member-directory-grid{grid-template-columns:1fr}.member-card{width:min(100%,390px);margin-inline:auto}.member-detail-main{padding-top:32px}.member-detail-hero{grid-template-columns:1fr;padding:28px 24px;text-align:center}.member-detail-avatar{width:148px;height:148px;margin-inline:auto}.member-detail-heading{display:grid;justify-items:center}.member-detail-nav{grid-template-columns:1fr}.member-detail-section,.member-detail-highlight{padding:24px}}
