:root {
  color-scheme: light;
  --ink: #111113;
  --muted: #68686f;
  --soft: #f5f5f7;
  --line: #e5e5ea;
  --glass: rgba(255, 255, 255, 0.82);
  --accent: #0066cc;
  --accent-deep: #004b9b;
  --sage: #d8e4df;
  --clay: #e9ded2;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: var(--ink);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 28px;
  background: var(--glass);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(180%) blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-elevated="true"] {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 38px;
  margin-left: 12px;
  opacity: 0.92;
  transition: opacity 220ms ease, transform 220ms ease;
}

.brand::after {
  position: absolute;
  inset: 4px 7px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(181, 28, 34, 0.16), transparent 70%);
  content: "";
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 220ms ease, transform 240ms ease;
  pointer-events: none;
}

.brand:hover {
  opacity: 1;
  transform: translateY(-1px) scale(1.035);
}

.brand:hover::after {
  opacity: 1;
  transform: scale(1);
}

.brand img {
  display: block;
  width: 112px;
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  margin-left: auto;
  padding-right: 44px;
  color: #333338;
  font-size: 0.88rem;
}

nav a {
  position: relative;
  padding: 5px 0;
}

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

nav a:hover::after {
  transform: scaleX(1);
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  min-height: min(590px, calc(80svh - 58px));
  padding: 74px clamp(28px, 5vw, 72px) 58px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 52%);
  transform: translate(-118px, 50px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 18px;
  color: #777983;
  font-size: clamp(0.68rem, 0.78vw, 0.84rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.28;
  text-transform: none;
  white-space: nowrap;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: #898b93;
  font-size: clamp(2rem, 3.55vw, 3.35rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 14px;
  color: #33343a;
  font-size: clamp(0.68rem, 0.78vw, 0.84rem);
  letter-spacing: 0;
  line-height: 1.58;
  text-align: justify;
  text-align-last: left;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 19px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.contact-links a:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--accent);
  color: #fff;
}

.primary:hover {
  background: var(--accent-deep);
}

.secondary,
.contact-links a {
  border: 1px solid #d2d2d7;
  background: #fff;
}

.secondary:hover,
.contact-links a:hover {
  border-color: #a7a7af;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.metrics-band div,
.metrics-band .metric-card {
  min-height: 145px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.metrics-band strong,
.metrics-band span {
  display: block;
}

.metrics-band .metric-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  transition: background 220ms ease, transform 220ms ease;
}

.metrics-band .metric-card::after {
  position: absolute;
  inset: 28px 42px auto auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.18), transparent 68%);
  content: "";
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 220ms ease, transform 260ms ease;
  pointer-events: none;
}

.metrics-band .metric-card:hover {
  background: #f1f4f8;
  transform: translateY(-3px);
}

.metrics-band .metric-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.metrics-band strong {
  margin-bottom: 7px;
  color: #08090b;
  font-size: clamp(1.6rem, 4vw, 2.55rem);
  line-height: 1;
  transform-origin: left center;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.metrics-band .metric-card:hover strong {
  animation: metric-pop 520ms cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--accent);
  text-shadow: 0 10px 26px rgba(0, 113, 227, 0.22);
}

@keyframes metric-pop {
  0% {
    transform: translateX(0) scale(1);
  }

  34% {
    transform: translateX(2px) scale(1.12);
  }

  58% {
    transform: translateX(-1px) scale(1.06);
  }

  100% {
    transform: translateX(0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .brand::after,
  .metrics-band .metric-card,
  .metrics-band .metric-card::after,
  .metrics-band strong {
    transition: none;
  }

  .brand:hover {
    transform: none;
  }

  .metrics-band .metric-card:hover strong {
    animation: none;
    transform: scale(1.04);
  }
}

.metrics-band span {
  max-width: 320px;
  color: var(--muted);
  font-size: clamp(0.68rem, 0.78vw, 0.84rem);
  line-height: 1.45;
  white-space: nowrap;
}

.intro-grid,
.profile-section,
#publications,
.artworks-section {
  padding: 112px 0;
}

.intro-grid,
.profile-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
}

.profile-columns {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.04fr);
  column-gap: clamp(116px, 13vw, 178px);
}

.section-heading {
  max-width: 520px;
}

.section-heading.narrow {
  max-width: 720px;
  margin-bottom: 42px;
}

#publications .section-heading.narrow {
  max-width: none;
}

#publications .section-heading h2,
.contact-band h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

#publications .section-heading h2 {
  color: #898b93;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.research-visual-section {
  position: relative;
  overflow: hidden;
  background: #000;
  padding: 46px 0;
}

.research-visual-section img {
  display: block;
  width: 100%;
  height: auto;
}

.research-text-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(44vw, 520px);
  padding: clamp(24px, 4.3vw, 58px) clamp(26px, 4vw, 68px);
  background: #000;
  color: #fff;
  transform: translateY(1px);
}

.research-panel-label {
  margin: 0 0 clamp(28px, 4vw, 52px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.research-text-list {
  display: grid;
  gap: clamp(30px, 4.2vw, 58px);
}

.research-text-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.research-index {
  color: #0874d8;
  font-size: clamp(1.25rem, 2.1vw, 1.72rem);
  font-weight: 700;
  line-height: 1;
}

.research-text-item h3 {
  margin-bottom: 9px;
  color: #fff;
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  line-height: 1.22;
}

.research-text-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.68rem, 0.72vw, 0.78rem);
  line-height: 1.28;
  text-align: justify;
  text-align-last: left;
}

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

.research-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.research-list span {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.research-list p,
.publication p,
.publication span,
.timeline span,
.compact-list p {
  color: var(--muted);
}

.research-list p,
.publication p {
  margin-bottom: 0;
}

.publication-list {
  border-top: 1px solid var(--line);
}

.publication {
  display: grid;
  grid-template-columns: 92px minmax(0, 900px);
  gap: clamp(18px, 4vw, 52px);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.publication > div:last-child {
  width: min(100%, 900px);
}

.publication.featured {
  padding-top: 38px;
}

.pub-year {
  color: var(--accent);
  font-weight: 700;
}

.publication h3 {
  width: min(100%, 900px);
  font-size: clamp(0.9rem, 1.36vw, 1.08rem);
  font-weight: 400;
  line-height: 1.28;
}

.publication h3 a {
  display: block;
  width: 100%;
  color: inherit;
  text-align: justify;
  text-align-last: left;
  text-decoration-color: var(--line);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.publication h3 a:hover {
  color: var(--accent);
  text-decoration-color: currentColor;
}

.publication p {
  width: min(100%, 900px);
  margin-bottom: 6px;
  font-size: 0.86rem;
}

.publication span {
  display: inline-block;
  max-width: 900px;
  font-size: 0.84rem;
}

.publication .author-note {
  color: var(--accent);
}

.profile-section {
  border-top: 1px solid var(--line);
}

.profile-section > .section-heading {
  max-width: 760px;
}

.profile-section > .section-heading h2 {
  color: #898b93;
  font-size: clamp(1.95rem, 3.1vw, 3.05rem);
  font-weight: 600;
  line-height: 1.08;
}

.profile-columns > section {
  min-width: 0;
}

.profile-columns > section:nth-child(2) {
  transform: translateX(46px);
}

.profile-columns h3 {
  margin-bottom: 22px;
  font-size: 1.02rem;
  text-transform: uppercase;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
}

.timeline time {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.34;
  white-space: nowrap;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 4px;
  max-width: 286px;
  font-size: 0.88rem;
  line-height: 1.46;
}

.timeline .school-name {
  display: grid;
  grid-template-columns: minmax(0, 286px) 18px;
  column-gap: 42px;
  align-items: center;
  width: 346px;
  font-size: 0.92rem;
  line-height: 1.34;
}

.school-label {
  display: block;
  margin-top: 0;
  color: var(--ink);
  white-space: nowrap;
}

.school-logo {
  width: auto;
  max-width: 18px;
  height: 16px;
  margin-top: 7px;
  object-fit: contain;
  opacity: 0.82;
}

.compact-list {
  display: grid;
  gap: 12px;
}

.compact-list p {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.profile-copy {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.profile-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
  text-align: justify;
  text-align-last: left;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.profile-fact {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.profile-fact:nth-child(2) {
  justify-self: center;
}

.profile-fact:nth-child(3) {
  justify-self: end;
}

.profile-fact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
  opacity: 0.72;
}

.profile-fact-cv svg {
  width: 14px;
  height: 14px;
}

.profile-fact span {
  color: #8f929a;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.profile-fact strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.profile-fact:hover strong {
  color: var(--accent);
}

.artworks-section {
  border-top: 1px solid var(--line);
}

.reviewer-section {
  padding: 96px 0 112px;
  border-top: 1px solid var(--line);
}

.reviewer-page {
  min-height: calc(100svh - 132px);
  padding: 116px 0;
}

.reviewer-section .section-heading h2 {
  color: #898b93;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.12;
}

.reviewer-page .section-heading h1 {
  color: #111113;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: none;
  white-space: nowrap;
}

.reviewer-subtitle {
  max-width: 840px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.certificate-rows {
  display: grid;
  gap: 14px;
}

.certificate-row {
  display: grid;
  gap: 14px;
}

.certificate-row-elsevier {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.certificate-row-other {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.certificate-row a {
  display: grid;
  align-content: space-between;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #f7f7f8;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.certificate-row a:hover {
  border-color: #c8c8cf;
  background: #fff;
  transform: translateY(-1px);
}

.certificate-row span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-row strong {
  color: var(--ink);
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.28;
}

.works-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.works-group {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: clamp(26px, 4vw, 44px);
  background: #fff;
}

.works-group > * {
  position: relative;
  z-index: 1;
}

.works-group:first-child {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("assets/aid-design-work.jpg");
  background-position: center 48%;
  background-size: cover;
}

.works-group:first-child h3,
.works-group:first-child p:not(.works-index) {
  color: #fff;
}

.works-group:first-child p:not(.works-index) {
  color: rgba(255, 255, 255, 0.84);
}

.works-group:nth-child(2) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.66)),
    url("assets/calligraphy-art-work.jpg");
  background-position: center 50%;
  background-size: cover;
}

.works-group:nth-child(2) h3,
.works-group:nth-child(2) p:not(.works-index) {
  color: #fff;
}

.works-group:nth-child(2) p:not(.works-index) {
  color: rgba(255, 255, 255, 0.84);
}

.works-index {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
}

.works-group h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.05;
}

.works-group p:not(.works-index) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 8vw, 112px);
  align-items: start;
  padding: 52px max(24px, calc((100vw - var(--max)) / 2)) 64px;
  background:
    radial-gradient(circle at 86% 86%, rgba(24, 62, 146, 0.34), transparent 35%),
    radial-gradient(circle at 68% 58%, rgba(10, 28, 84, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 42%),
    #08090d;
  color: #fff;
}

.contact-brand-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  justify-items: start;
}

.contact-logo {
  display: block;
  width: min(112px, 48vw);
  height: auto;
  transform: translateY(-18px);
}

.wechat-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin-top: -8px;
}

.wechat-row img {
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  object-fit: cover;
}

.wechat-row span,
.contact-panel strong {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.wechat-row strong {
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.25;
}

.contact-panel {
  display: flex;
  gap: 14px;
  align-self: end;
  justify-self: center;
  transform: translateX(-36px);
}

.contact-panel a {
  display: grid;
  align-content: center;
  width: 214px;
  min-height: 50px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1.35;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-panel a:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: 58px;
    gap: 16px;
    padding-block: 12px;
  }

  nav {
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero,
  .intro-grid,
  .profile-columns,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-start;
    min-height: 640px;
    padding: 82px 24px 52px;
  }

  .hero-photo {
    object-position: 38% center;
  }

  .hero-copy {
    width: min(100%, 430px);
    margin-left: auto;
    transform: translate(0, 0);
  }

  .profile-columns > section:nth-child(2) {
    transform: none;
  }

  .profile-facts {
    gap: 14px;
  }

  .research-visual-section {
    padding: 0;
  }

  .research-visual-section img {
    width: 155%;
    max-width: none;
    margin-left: -55%;
  }

  .research-text-panel {
    position: relative;
    width: auto;
    padding: 42px 24px;
    transform: none;
  }

  .metrics-band {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .profile-section,
  #publications,
  .artworks-section,
  .reviewer-section {
    padding: 78px 0;
  }

  .certificate-row-elsevier,
  .certificate-row-other {
    grid-template-columns: 1fr 1fr;
  }

  .works-groups {
    grid-template-columns: 1fr;
  }

  .contact-band {
    justify-items: start;
  }

  .contact-brand-block {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    width: 100%;
    flex-wrap: wrap;
    justify-self: start;
    justify-content: start;
    transform: none;
  }
}

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

  nav {
    width: 100%;
    gap: 9px;
    font-size: 0.72rem;
    justify-content: space-between;
    overflow-x: visible;
  }

  .section-shell {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: auto;
    padding: 64px 16px 44px;
  }

  .hero-photo {
    opacity: 0.12;
    object-position: left bottom;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    transform: translate(0, 0);
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.05rem);
    white-space: normal;
  }

  #publications .section-heading h2 {
    white-space: normal;
  }

  .brand {
    width: 88px;
    height: 34px;
  }

  .brand img {
    width: 84px;
    max-height: 25px;
  }

  .publication,
  .research-list article,
  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-fact,
  .profile-fact:nth-child(2),
  .profile-fact:nth-child(3) {
    justify-self: start;
  }

  .certificate-row-elsevier,
  .certificate-row-other {
    grid-template-columns: 1fr;
  }

  .research-text-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 18px;
  }

  .pub-year {
    font-size: 0.9rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
