:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #eef1f4;
  --ink: #171717;
  --muted: #5d636b;
  --line: #d9dee5;
  --stanford-red: #8c1515;
  --stanford-dark: #2e2d29;
  --blue: #3c5488;
  --sky: #4dbbd5;
  --teal: #00a087;
  --orange: #e64b35;
  --amber: #b7791f;
  --graphite: #363733;
  --sea: #2f8f82;
  --terracotta: #b75546;
  --mist-blue: #6f8ea7;
  --shadow: 0 20px 58px rgba(28, 35, 44, 0.14);
  --small-shadow: 0 10px 24px rgba(28, 35, 44, 0.07);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

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: 82px;
  padding: 16px clamp(24px, 6vw, 86px);
  border-top: 8px solid #000000;
  border-bottom: 1px solid rgba(217, 222, 229, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 2px;
  background:
    linear-gradient(135deg, transparent 0 30%, var(--stanford-red) 30% 60%, transparent 60%),
    linear-gradient(45deg, var(--stanford-dark), #60666d);
  color: #ffffff;
  font-weight: 800;
  clip-path: polygon(24% 0, 100% 0, 76% 50%, 100% 100%, 24% 100%, 0 50%);
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 1rem;
  font-weight: 750;
}

.site-nav a {
  min-height: 38px;
  padding: 8px 11px;
  border-radius: 2px;
  color: #202124;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #f2e9e9;
  color: var(--stanford-red);
}

.site-nav .language-link {
  margin-left: 6px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--stanford-red);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: min(640px, calc(100vh - 90px));
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) clamp(24px, 6vw, 86px) clamp(32px, 4vw, 48px);
}

.hero::before {
  position: absolute;
  inset: 12% 0 8% 43%;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(140, 21, 21, 0.038) 48% 52%, transparent 52%),
    linear-gradient(45deg, transparent 0 48%, rgba(60, 84, 136, 0.05) 48% 52%, transparent 52%);
  background-size: 108px 108px;
  content: "";
  opacity: 0.74;
  z-index: -3;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -26%;
  width: min(56vw, 720px);
  aspect-ratio: 1;
  background: #e6e9ee;
  clip-path: polygon(24% 4%, 80% 4%, 100% 50%, 80% 96%, 24% 96%, 0 50%);
  content: "";
  opacity: 0.68;
  z-index: -2;
}

.hero-background {
  position: absolute;
  inset: 0 -8% 0 38%;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(244, 246, 248, 0.9) 20%, rgba(244, 246, 248, 0.58) 58%, var(--bg) 100%),
    linear-gradient(180deg, var(--bg) 0%, rgba(244, 246, 248, 0.28) 46%, var(--bg) 100%),
    url("./hero-risk-observatory.png") center right / cover no-repeat;
  filter: saturate(0.82) contrast(1.02);
  opacity: 0.48;
  z-index: -3;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

.hero h1 {
  max-width: 540px;
  color: var(--stanford-red);
  font-size: clamp(3.6rem, 6.8vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero p {
  max-width: 510px;
  margin: 24px 0 0;
  color: #25282b;
  font-size: clamp(1.04rem, 1.42vw, 1.2rem);
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 3px;
  font-weight: 850;
}

.button.primary {
  background: var(--stanford-red);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid rgba(46, 45, 41, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--stanford-dark);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hex-cluster {
  position: absolute;
  inset: 0;
  width: min(660px, 100%);
  margin-left: auto;
  filter: drop-shadow(0 18px 30px rgba(28, 35, 44, 0.14));
}

.hex-tile {
  position: absolute;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 194px;
  height: 170px;
  padding: 30px 32px 26px;
  color: #ffffff;
  text-align: center;
  clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(19, 22, 26, 0.08);
  transition: transform 180ms ease, filter 180ms ease;
}

.hex-tile::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(0, 0, 0, 0.08)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 18px 18px;
  clip-path: inherit;
  content: "";
}

.hex-tile:hover {
  transform: translateY(-4px);
  filter: brightness(1.04);
}

.hex-tile strong {
  position: relative;
}

.hex-tile strong {
  max-width: 142px;
  font-size: 0.98rem;
  line-height: 1.13;
}

.hex-1 {
  top: 2%;
  left: 27%;
  background: var(--stanford-red);
}

.hex-2 {
  top: 16%;
  left: 57%;
  background: var(--blue);
}

.hex-3 {
  top: 30%;
  left: 2%;
  background: var(--graphite);
}

.hex-4 {
  top: 42%;
  left: 33%;
  background: var(--sea);
}

.hex-5 {
  top: 54%;
  left: 63%;
  background: var(--terracotta);
}

.hex-6 {
  top: 64%;
  left: 0;
  background: var(--mist-blue);
}

.page-section,
.split-section,
.content-layout,
.timeline-list,
.news-list,
.filter-toolbar,
.publication-list,
.partner-strip,
.prose-panel.standalone {
  max-width: 1110px;
  margin: 0 auto;
  padding: clamp(30px, 4.6vw, 54px) clamp(24px, 6vw, 86px);
}

.page-section.tight {
  padding-top: 24px;
}

.section-head {
  max-width: 790px;
  margin-bottom: 22px;
}

.section-head h2,
.page-hero h1,
.profile-hero h1 {
  color: var(--stanford-red);
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  font-weight: 900;
}

.section-head p,
.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.card,
.catalog-card,
.news-card,
.person-card,
.partner-card,
.spotlight-panel {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}

.card,
.catalog-card,
.news-card,
.partner-card,
.spotlight-panel {
  padding: 24px;
}

.card h3,
.catalog-card h3,
.news-card h3,
.partner-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.card h3 a,
.catalog-card h3 a,
.news-card h3 a {
  color: var(--stanford-red);
}

.card p,
.catalog-card p,
.news-card p,
.partner-card p {
  margin: 0;
  color: var(--muted);
}

.meta,
.status,
time {
  display: block;
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.tag-row span {
  padding: 4px 8px;
  border: 1px solid #d9dee5;
  border-radius: 2px;
  background: #f8f9fa;
  color: #3f4650;
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--stanford-red);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: 22px;
  align-items: start;
}

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

.list-item,
.publication-item,
.timeline-item,
.news-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #cfd6df;
}

.list-item span,
.pub-year,
.timeline-item > span,
.news-row time {
  color: var(--stanford-red);
  font-weight: 850;
}

.list-item h3,
.publication-item h2,
.timeline-item h2,
.news-row h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.list-item p,
.publication-item p,
.timeline-item p,
.news-row p {
  margin: 0;
  color: var(--muted);
}

.spotlight-panel {
  position: sticky;
  top: 96px;
  background:
    linear-gradient(135deg, rgba(246, 239, 239, 0.98), rgba(255, 255, 255, 0.98)),
    linear-gradient(90deg, rgba(77, 187, 213, 0.12), transparent);
}

.spotlight-panel h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.spotlight-panel p:not(.eyebrow) {
  color: #455966;
}

.mini-links {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.mini-links a,
.side-panel a {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--stanford-red);
  font-weight: 750;
}

.mini-links a:hover,
.side-panel a:hover {
  border-color: rgba(140, 21, 21, 0.32);
  background: #fbf6f6;
}

.partner-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: center;
  padding-top: 24px;
}

.partner-strip p {
  margin: 0;
  color: #405363;
  font-weight: 700;
}

.partner-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-strip span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #ffffff;
  color: #4d5e6a;
  font-size: 0.92rem;
}

.page-hero,
.profile-hero {
  max-width: 1110px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px) clamp(24px, 6vw, 86px) clamp(20px, 3vw, 34px);
}

.page-hero.compact {
  min-height: 0;
}

.page-hero.detail {
  min-height: 0;
}

.page-hero h1,
.profile-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 820px;
  margin-bottom: 0;
}

.page-hero + .page-section,
.page-hero + .timeline-list,
.page-hero + .news-list,
.page-hero + .filter-toolbar,
.page-hero + .content-layout {
  padding-top: clamp(14px, 2.6vw, 28px);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  padding-top: 20px;
}

.prose-panel,
.side-panel {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}

.prose-panel {
  padding: clamp(24px, 4vw, 40px);
}

.prose-panel h2,
.side-panel h2 {
  margin: 24px 0 12px;
  font-size: 1.24rem;
}

.prose-panel h2:first-child,
.side-panel h2:first-child {
  margin-top: 0;
}

.prose-panel p {
  margin: 0 0 16px;
  color: #405363;
}

.check-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  color: #405363;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stanford-red);
  content: "";
}

.side-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.side-panel p {
  margin: 0;
  color: var(--muted);
}

.side-panel strong {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.people-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(420px, 0.58fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  min-height: clamp(390px, 40vw, 530px);
  margin: 0;
  padding: clamp(42px, 5.6vw, 76px) clamp(24px, 6vw, 86px) clamp(34px, 4.8vw, 68px);
  overflow: hidden;
  isolation: isolate;
}

.people-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(244, 246, 248, 0.96) 28%, rgba(244, 246, 248, 0.72) 52%, rgba(244, 246, 248, 0.1) 100%),
    linear-gradient(180deg, rgba(244, 246, 248, 0.92) 0%, rgba(244, 246, 248, 0.26) 58%, var(--bg) 100%);
  content: "";
  z-index: -1;
}

.people-hero > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 470px;
}

.people-hero h1 {
  color: var(--stanford-red);
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  font-weight: 900;
}

.people-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.people-visual {
  position: relative;
  z-index: 0;
  align-self: stretch;
  min-height: 340px;
  margin: clamp(-30px, -3vw, -16px) clamp(-86px, -6vw, -24px) clamp(-42px, -4vw, -24px) clamp(-190px, -12vw, -80px);
  pointer-events: none;
}

.people-visual::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 26%, rgba(140, 21, 21, 0.08), transparent 22%),
    linear-gradient(90deg, rgba(244, 246, 248, 0.84) 0%, rgba(244, 246, 248, 0.2) 32%, rgba(244, 246, 248, 0) 100%);
  content: "";
}

.people-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.93) contrast(1.03);
}

.people-hero + .page-section.tight {
  padding-top: clamp(24px, 3vw, 38px);
}

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

.group-title {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

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

.person-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
}

.avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid #d1d6de;
  border-radius: 2px;
  background: linear-gradient(135deg, #ffffff, #f4eeee);
  color: var(--stanford-red);
  font-weight: 850;
  overflow: hidden;
}

.avatar.large {
  width: 92px;
  height: 92px;
  font-size: 1.35rem;
}

.person-card h3 {
  margin-bottom: 5px;
  font-size: 1.06rem;
}

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

.person-card .role {
  margin-bottom: 8px;
  color: var(--stanford-red);
  font-weight: 750;
}

.profile-hero {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 0;
}

.chip {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #ffffff;
  color: #405363;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.chip.active,
.chip:hover {
  border-color: rgba(140, 21, 21, 0.35);
  background: #f5ecec;
  color: var(--stanford-red);
}

.publication-list {
  padding-top: 18px;
}

.publication-item {
  grid-template-columns: 76px minmax(0, 1fr);
}

.publication-item .venue {
  margin-top: 4px;
  color: #566978;
  font-style: italic;
}

.catalog-card dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.catalog-card dl div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #edf4f5;
}

.catalog-card dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.catalog-card dd {
  margin: 0;
  color: #263b4b;
  font-weight: 700;
}

.timeline-list,
.news-list {
  padding-top: 10px;
}

.news-row h2 a {
  color: var(--stanford-red);
}

.partner-card {
  min-height: 210px;
}

.partner-logo {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid #d1d6de;
  border-radius: 2px;
  background: #f5ecec;
  color: var(--stanford-red);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer p {
  max-width: 620px;
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: flex-start;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--stanford-red);
  font-weight: 750;
}

.language-gateway {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(244, 246, 248, 0.96), rgba(244, 246, 248, 0.62)),
    linear-gradient(180deg, rgba(244, 246, 248, 0.98), rgba(244, 246, 248, 0.42)),
    url("./hero-risk-observatory.png") center right / cover no-repeat;
}

.language-gateway > div {
  width: min(680px, 100%);
  margin-right: auto;
  padding: clamp(28px, 5vw, 56px);
  border-top: 8px solid var(--stanford-red);
  background: rgba(255, 255, 255, 0.9);
}

.language-gateway h1 {
  color: var(--stanford-red);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
}

.language-gateway p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    white-space: normal;
  }

  .site-nav .language-link {
    margin-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .people-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }

  .people-hero > div:first-child {
    max-width: 650px;
  }

  .people-visual {
    min-height: clamp(310px, 52vw, 470px);
    margin: 0 clamp(-86px, -6vw, -24px);
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-background {
    inset: 16% -20% 16% 14%;
    opacity: 0.44;
  }

  .hex-cluster {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
  }

  .feature-grid,
  .catalog-grid,
  .news-grid,
  .partner-grid,
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .content-layout,
  .partner-strip {
    grid-template-columns: 1fr;
  }

  .spotlight-panel,
  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-background {
    inset: 32% -78% 10% -16%;
    opacity: 0.36;
  }

  .hero-visual {
    min-height: auto;
  }

  .hex-cluster {
    position: relative;
    display: grid;
    gap: 10px;
    width: 100%;
    transform: none;
    left: auto;
  }

  .hex-tile {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: 108px;
    padding: 22px 26px;
    clip-path: polygon(8% 0, 100% 0, 92% 50%, 100% 100%, 8% 100%, 0 50%);
  }

  .hex-tile strong {
    max-width: none;
  }

  .people-hero {
    padding-top: 40px;
  }

  .people-hero h1 {
    font-size: 3.2rem;
  }

  .people-visual {
    min-height: 260px;
    margin: 4px -24px 0;
  }

  .people-visual::after {
    background:
      linear-gradient(90deg, rgba(244, 246, 248, 0.72) 0%, rgba(244, 246, 248, 0.16) 42%, rgba(244, 246, 248, 0) 100%),
      linear-gradient(180deg, rgba(244, 246, 248, 0) 0%, var(--bg) 100%);
  }

  .people-visual img {
    object-position: 65% center;
  }

  .feature-grid,
  .catalog-grid,
  .news-grid,
  .partner-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }

  .list-item,
  .publication-item,
  .timeline-item,
  .news-row,
  .profile-hero {
    grid-template-columns: 1fr;
  }

  .person-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .avatar {
    width: 48px;
    height: 48px;
  }

  .catalog-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
