:root {
  --ink: #10262a;
  --muted: #5f7175;
  --paper: #f4f7f6;
  --surface: #ffffff;
  --surface-soft: #eef5f3;
  --line: #d9e5e2;
  --teal: #0f6b72;
  --teal-dark: #073f47;
  --blue: #245c91;
  --gold: #c99a42;
  --coral: #c86654;
  --shadow: 0 24px 70px rgba(16, 38, 42, 0.12);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(16, 38, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.78rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  opacity: 0.78;
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.94rem;
}

.nav a {
  position: relative;
  padding: 6px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 30, 35, 0.9) 0%, rgba(5, 30, 35, 0.72) 42%, rgba(5, 30, 35, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 30, 35, 0.15) 0%, rgba(5, 30, 35, 0.65) 100%);
}

.hero-content {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 136px 0 54px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.65rem, 5.4vw, 5.7rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  font-weight: 850;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(860px, 100%);
  margin: 46px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-stats div {
  min-width: 0;
  padding: 18px 18px 18px 0;
}

.hero-stats dt {
  color: var(--gold);
  font-weight: 950;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.section {
  padding: clamp(68px, 9vw, 118px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: clamp(24px, 5vw, 70px);
  max-width: none;
  align-items: end;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.55vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.28;
}

.section p,
.lead {
  color: var(--muted);
}

.lead {
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.intro {
  padding-block: clamp(52px, 7vw, 86px);
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.intro-copy {
  display: grid;
  gap: 14px;
}

.intro-copy p {
  margin: 0;
  font-size: 1.06rem;
}

.clinical {
  background:
    linear-gradient(180deg, #f4f7f6 0%, #edf5f2 100%);
}

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

.feature-card,
.article-grid article,
.profile-panel,
.contact-panel,
.research-list article,
.teaching-points article,
.map-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(16, 38, 42, 0.06);
}

.feature-card {
  min-height: 244px;
  padding: 28px;
}

.feature-card-large {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(15, 107, 114, 0.12), rgba(201, 154, 66, 0.12)),
    var(--surface);
}

.card-label {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--coral);
  font-weight: 950;
}

.feature-card p {
  margin: 16px 0 0;
}

.treatment-map {
  padding-top: 0;
  background: #edf5f2;
}

.map-band {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(26px, 5vw, 64px);
  padding: clamp(28px, 5vw, 46px);
}

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

.map-grid article {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.map-grid strong {
  color: var(--teal-dark);
  font-size: 1.08rem;
}

.map-grid span {
  color: var(--muted);
}

.surgery-videos {
  background: #f8fbfa;
}

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

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(16, 38, 42, 0.06);
}

.video-thumb {
  position: relative;
  display: grid;
  min-height: 148px;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(15, 107, 114, 0.86), rgba(35, 92, 143, 0.7)),
    linear-gradient(180deg, rgba(201, 154, 66, 0.38), rgba(255, 255, 255, 0));
}

.video-thumb::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  content: "";
}

.play-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 32px rgba(7, 28, 32, 0.2);
}

.play-icon::after {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--teal);
  content: "";
  transform: translate(-42%, -50%);
}

.video-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.video-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.video-copy p {
  margin: 0;
  color: var(--blue);
  font-weight: 850;
}

.video-copy span {
  color: var(--muted);
  font-size: 0.94rem;
}

.video-note {
  max-width: 980px;
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(201, 154, 66, 0.1);
}

.why {
  background:
    linear-gradient(180deg, #edf5f2 0%, #f7f6f0 100%);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.team-intro,
.story-panel,
.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(16, 38, 42, 0.06);
}

.team-intro {
  padding: clamp(26px, 4vw, 38px);
}

.team-intro h3 {
  font-size: clamp(1.38rem, 2.2vw, 2rem);
}

.team-intro p {
  margin: 18px 0 0;
}

.team-strengths {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.team-strengths div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.team-strengths strong {
  color: var(--teal-dark);
}

.team-strengths span {
  color: var(--muted);
  font-size: 0.94rem;
}

.story-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
}

.story-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.story-heading p {
  max-width: 560px;
  margin: 0;
  font-size: 0.96rem;
}

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

.story-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.story-grid p {
  margin: 0;
}

.story-grid a {
  color: var(--blue);
  font-weight: 850;
}

.story-grid a:hover,
.story-grid a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: clamp(24px, 5vw, 64px);
  margin-top: 22px;
  padding: clamp(26px, 5vw, 42px);
}

.faq-heading h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.faq-list summary {
  min-height: 58px;
  padding: 17px 46px 17px 18px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 18px;
}

.pathway {
  background: var(--surface);
}

.pathway-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 108px;
  margin-bottom: 0;
}

.sticky-copy p:last-child {
  margin-top: 22px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 28px 0 28px 28px;
  border-left: 2px solid var(--line);
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 950;
}

.timeline p {
  margin: 9px 0 0;
}

.research {
  background:
    linear-gradient(90deg, rgba(15, 107, 114, 0.09), rgba(36, 92, 145, 0.08)),
    #f7f9f8;
}

.research-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.research-list {
  display: grid;
  gap: 16px;
}

.research-list article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 24px;
}

.research-list span {
  color: var(--blue);
  font-weight: 950;
}

.research-list p {
  margin: 10px 0 0;
}

.teaching {
  background: var(--surface);
}

.teaching-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.education-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe9e7;
  box-shadow: var(--shadow);
}

.education-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.teaching-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.teaching-points article {
  padding: 22px;
  background: var(--surface-soft);
}

.teaching-points p {
  margin: 10px 0 0;
}

.media {
  background:
    linear-gradient(180deg, #f7f6f0 0%, #f1f6f4 100%);
}

.media-timeline {
  display: grid;
  gap: 18px;
}

.media-timeline article {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: start;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.media-timeline article:last-child {
  border-bottom: 0;
}

.media-timeline time {
  position: sticky;
  top: 96px;
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal-dark);
  color: #fff;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.media-timeline article > div {
  position: relative;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(16, 38, 42, 0.05);
}

.media-type {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(201, 154, 66, 0.16);
  color: #8a6120;
  font-size: 0.78rem;
  font-weight: 850;
}

.media-timeline h3 {
  max-width: 760px;
}

.media-timeline p {
  max-width: 820px;
  margin: 10px 0 0;
}

.media-timeline a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 850;
}

.media-timeline a:hover,
.media-timeline a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.doctor {
  background:
    linear-gradient(90deg, rgba(15, 107, 114, 0.1), rgba(201, 154, 66, 0.08)),
    #f7f6f0;
}

.doctor-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.profile-panel {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: start;
  padding: clamp(26px, 4vw, 44px);
}

.profile-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe9e7;
  aspect-ratio: 4 / 5;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-panel p {
  margin: 12px 0 0;
}

.credential-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.credential-list li {
  position: relative;
  padding-left: 18px;
}

.credential-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.profile-badges span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7faf9;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 780;
}

.knowledge {
  background: var(--surface);
}

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

.article-grid article {
  min-height: 210px;
  padding: 26px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.article-grid p {
  margin: 0 0 38px;
  color: var(--blue);
  font-weight: 850;
}

.contact {
  background: var(--teal-dark);
  color: #fff;
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
}

.contact-grid > div > p {
  max-width: 620px;
  margin-top: 22px;
}

.contact-panel {
  display: grid;
  gap: 0;
  padding: 8px;
  background: #fff;
  color: var(--ink);
  font-style: normal;
}

.contact-panel div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-panel div:last-child {
  border-bottom: 0;
}

.contact-panel span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-panel strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.site-footer {
  background: #071c20;
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  display: flex;
  width: min(1160px, calc(100% - 36px));
  min-height: 92px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .nav {
    gap: 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 1000px) {
  .feature-grid,
  .article-grid,
  .video-grid,
  .teaching-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card-large {
    grid-column: span 2;
  }
}

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

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-header.is-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    min-height: 46px;
    padding: 10px 12px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 30, 35, 0.92) 0%, rgba(5, 30, 35, 0.74) 58%, rgba(5, 30, 35, 0.42) 100%),
      linear-gradient(180deg, rgba(5, 30, 35, 0.18) 0%, rgba(5, 30, 35, 0.68) 100%);
  }

  .hero-content {
    padding-bottom: 44px;
  }

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

  .intro-grid,
  .split-heading,
  .pathway-grid,
  .research-layout,
  .teaching-grid,
  .doctor-layout,
  .why-layout,
  .faq,
  .map-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy,
  .media-timeline time {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero-content {
    width: min(100% - 32px, 760px);
    padding-top: 102px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(2.22rem, 10.5vw, 3.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats,
  .feature-grid,
  .article-grid,
  .teaching-points,
  .story-grid,
  .video-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 34px;
  }

  .hero-stats div {
    padding: 12px 8px 12px 0;
  }

  .section {
    padding-block: 58px;
  }

  .feature-card,
  .feature-card-large {
    grid-column: span 1;
    min-height: auto;
  }

  .card-label {
    margin-bottom: 30px;
  }

  .timeline li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding-left: 16px;
  }

  .research-list article,
  .profile-panel,
  .media-timeline article {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    max-width: 220px;
  }

  .media-timeline article > div {
    padding: 22px;
  }

  .story-heading {
    display: grid;
  }

  .story-grid article {
    min-height: auto;
  }

  .contact-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    display: grid;
    padding-block: 24px;
  }
}
