*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Tinted neutrals — hint of blue (hue 250) for academic/tech cohesion */
  --fg: oklch(15% 0.01 250);
  --fg-secondary: oklch(38% 0.01 250);
  --fg-muted: oklch(55% 0.012 250);
  --bg: oklch(99% 0.005 250);
  --bg-alt: oklch(97% 0.005 250);
  --accent: oklch(52% 0.19 260);
  --accent-light: oklch(93% 0.04 260);
  --border: oklch(90% 0.008 250);
  --radius: 6px;
  --max-w: 1120px;
  --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'IBM Plex Serif', Georgia, serif;
  /* Motion tokens — exponential easing (Impeccable) */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --dur-fast: 120ms;
  --dur-mid: 250ms;
  --dur-slow: 500ms;
}

/* ── Dark mode ── */
[data-theme="dark"] {
  /* Dark surfaces via lightness, not shadow (Impeccable) */
  --fg: oklch(90% 0.008 250);
  --fg-secondary: oklch(70% 0.01 250);
  --fg-muted: oklch(52% 0.01 250);
  --bg: oklch(14% 0.01 250);
  --bg-alt: oklch(18% 0.01 250);
  --accent: oklch(70% 0.14 260);
  --accent-light: oklch(22% 0.04 260);
  --border: oklch(22% 0.008 250);
}
[data-theme="dark"] nav {
  background: oklch(14% 0.01 250 / .88);
}
[data-theme="dark"] .job-banner {
  border-color: oklch(30% 0.06 260);
}
[data-theme="dark"] .hero-img {
  filter: grayscale(10%) brightness(.95);
}
[data-theme="dark"] .pub-venue {
  color: var(--accent);
  background: var(--accent-light);
}
[data-theme="dark"] .pub-award {
  color: oklch(80% 0.14 85);
  background: oklch(22% 0.06 60);
}
[data-theme="dark"] .pub-title { color: var(--fg); }
[data-theme="dark"] .pub-authors .me { color: var(--fg); }
[data-theme="dark"] .project h3 { color: var(--fg); }
[data-theme="dark"] .hero-links a.primary-link {
  background: var(--accent);
  border-color: var(--accent);
  color: oklch(14% 0.01 250);
}
[data-theme="dark"] .hero-links a.primary-link:hover {
  background: oklch(78% 0.12 260);
  border-color: oklch(78% 0.12 260);
  color: oklch(14% 0.01 250);
}
[data-theme="dark"] .news-list li + li,
[data-theme="dark"] .pub-list li + li,
[data-theme="dark"] .teaching-list li + li,
[data-theme="dark"] .press-list li + li,
[data-theme="dark"] .project { border-color: oklch(22% 0.008 250); }

/* ── Theme toggle ── */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .3rem .55rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1;
  color: var(--fg-muted);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  display: flex;
  align-items: center;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.theme-toggle:active {
  transform: scale(.94);
}
.theme-toggle .icon-sun,
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: inline; }
:root:not([data-theme="dark"]) .theme-toggle .icon-moon,
html:not([data-theme]) .theme-toggle .icon-moon { display: inline; }

/* ── Scroll animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reduced motion (Impeccable: not optional) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { text-decoration: underline; }

/* ── Focus-visible (Impeccable: never outline:none without replacement) ── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Ambient background ── */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: .09;
}
[data-theme="dark"] #bgCanvas {
  opacity: .12;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--accent);
  color: oklch(99% 0.005 250);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 200;
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus {
  top: .5rem;
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(99% 0.005 250 / .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.nav-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
  padding: .5rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover { color: var(--fg); text-decoration: none; }

/* ── Main container ── */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Job market banner ── */
.job-banner {
  background: var(--accent-light);
  border: 1px solid oklch(85% 0.06 260);
  border-radius: var(--radius);
  padding: .7rem 1.2rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.job-banner strong { font-weight: 600; }
.job-banner a {
  font-weight: 600;
  white-space: nowrap;
}

/* ── Hero ── */
.hero {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.hero-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(15%);
}
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: .35rem;
}
.hero-text .subtitle {
  color: var(--fg-muted);
  font-size: 0.875rem;
  margin-bottom: .75rem;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: .75rem;
  line-height: 1.5;
}
.hero-text .bio {
  color: var(--fg-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 65ch;
}
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.25rem;
}
.hero-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: .4rem .9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-secondary);
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.hero-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.hero-links a:active {
  transform: scale(.96);
}
.hero-links a.primary-link {
  background: var(--accent);
  border-color: var(--accent);
  color: oklch(99% 0.005 250);
}
.hero-links a.primary-link:hover {
  background: oklch(45% 0.2 260);
  border-color: oklch(45% 0.2 260);
  color: oklch(99% 0.005 250);
}

/* ── Sections — varied rhythm (Impeccable: no monotonous spacing) ── */
section { padding: 2rem 0 2.5rem; border-bottom: 1px solid var(--border); }
section:last-child { border-bottom: none; }
section#publications { padding: 2.5rem 0 3rem; }
section#press { padding: 1.5rem 0 2rem; }

section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0 2.5rem;
  align-items: start;
}
.col-main {
  min-width: 0;
}
.col-side {
  position: sticky;
  top: 52px;
  max-height: calc(100vh - 52px);
  overflow-y: auto;
  padding: 1.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.col-side::-webkit-scrollbar { width: 4px; }
.col-side::-webkit-scrollbar-track { background: transparent; }
.col-side::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.col-side h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

/* ── Selected Projects ── */
.project {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.project:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.project h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .4rem;
}
.project-meta {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
}
.project-meta .pub-venue {
  margin-bottom: 0;
}
.project-desc {
  font-size: 0.8125rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  margin-bottom: .5rem;
}
.project-video {
  margin-top: .75rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.project-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
.project-links {
  margin-top: .6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.project-links a {
  font-size: 0.8125rem;
  font-weight: 500;
}
.project-press {
  margin-top: .6rem;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}
.project-press a { color: var(--fg-muted); }
.project-press a:hover { color: var(--accent); }

/* ── News ── */
.news-list { list-style: none; }
.news-list li {
  padding: .6rem 0;
  font-size: 0.875rem;
  color: var(--fg-secondary);
  display: flex;
  gap: .75rem;
  line-height: 1.6;
}
.news-list li + li { border-top: 1px solid var(--border); }
.news-date {
  flex-shrink: 0;
  width: 80px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}

/* ── Publications ── */
.pub-list { list-style: none; }
.pub-list li {
  padding: 1rem 0;
  line-height: 1.65;
}
.pub-list li + li { border-top: 1px solid var(--border); }
.pub-venue {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: .15rem .5rem;
  border-radius: 3px;
  margin-bottom: .35rem;
}
.pub-title {
  font-weight: 500;
  color: var(--fg);
  transition: color var(--dur-fast) var(--ease-out);
}
.pub-title:hover { color: var(--accent); }
.pub-authors {
  font-size: 0.84375rem;
  color: var(--fg-muted);
  margin-top: .2rem;
}
.pub-authors .me { color: var(--fg); font-weight: 600; }
.pub-award {
  display: inline-block;
  font-size: 0.71875rem;
  font-weight: 600;
  color: oklch(50% 0.14 60);
  background: oklch(94% 0.05 85);
  padding: .1rem .45rem;
  border-radius: 3px;
  margin-top: .3rem;
}
.pub-extra a {
  font-size: 0.78125rem;
  font-weight: 500;
  margin-right: .5rem;
}

/* ── Teaching ── */
.teaching-list { list-style: none; }
.teaching-list li {
  padding: .65rem 0;
  font-size: 0.875rem;
  color: var(--fg-secondary);
  display: flex;
  align-items: baseline;
  gap: .75rem;
}
.teaching-list li + li { border-top: 1px solid var(--border); }
.teaching-year {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  width: 80px;
}
.teaching-detail {
  font-size: 0.78125rem;
  color: var(--fg-muted);
  margin-top: .15rem;
}

/* ── Press ── */
.press-list { list-style: none; }
.press-list li {
  padding: .7rem 0;
  font-size: 0.875rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}
.press-list li + li { border-top: 1px solid var(--border); }
.press-outlet {
  font-weight: 500;
  color: var(--fg-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* ── Videos ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.video-grid iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius);
}

/* ── Lite YouTube facade ── */
.lite-yt {
  position: relative;
  cursor: pointer;
  background: oklch(10% 0.01 250);
  background-size: cover;
  background-position: center;
}
.lite-yt::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 */
}
.lite-yt::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 42px;
  margin: -21px 0 0 -30px;
  background: oklch(15% 0.01 250 / .75);
  border-radius: 10px;
  transition: background var(--dur-fast) var(--ease-out);
}
.lite-yt:hover::after { background: oklch(55% 0.25 25); }
.lite-yt svg {
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 18px;
  margin: -9px 0 0 -7px;
  z-index: 1;
  fill: oklch(98% 0.005 250);
  pointer-events: none;
}
.lite-yt iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Staggered list entrance ── */
.stagger-in > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 50ms);
}
.stagger-in.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── Active nav link ── */
.nav-links a.active {
  color: var(--accent);
}

/* ── Micro-interactions ── */

/* Profile image — gentle scale + color on hover */
.hero-img {
  transition: transform var(--dur-mid) var(--ease-out), filter var(--dur-mid) var(--ease-out);
}
.hero-img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Nav links — animated underline that slides in from left */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Project cards — lift + shadow on hover */
.project {
  border-radius: var(--radius);
  padding: 1rem;
  margin-left: -.5rem;
  margin-right: -.5rem;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out), background var(--dur-mid) var(--ease-out);
}
.project:hover {
  transform: translateY(-2px);
  background: var(--bg-alt);
  box-shadow: 0 4px 20px oklch(15% 0.01 250 / .06);
}
[data-theme="dark"] .project:hover {
  box-shadow: 0 4px 20px oklch(0% 0 0 / .25);
}

/* Publication rows — subtle highlight bar */
.pub-list li {
  border-radius: var(--radius);
  padding-left: .75rem;
  padding-right: .75rem;
  margin-left: -.75rem;
  margin-right: -.75rem;
  transition: background var(--dur-fast) var(--ease-out);
}
.pub-list li:hover {
  background: var(--bg-alt);
}

/* News items — nudge right on hover */
.news-list li {
  border-radius: var(--radius);
  padding-left: .5rem;
  padding-right: .5rem;
  margin-left: -.5rem;
  margin-right: -.5rem;
  transition: background var(--dur-fast) var(--ease-out), padding-left var(--dur-mid) var(--ease-out);
}
.news-list li:hover {
  background: var(--bg-alt);
  padding-left: .75rem;
}

/* Teaching rows — same subtle highlight */
.teaching-list li {
  border-radius: var(--radius);
  padding-left: .5rem;
  padding-right: .5rem;
  margin-left: -.5rem;
  margin-right: -.5rem;
  transition: background var(--dur-fast) var(--ease-out);
}
.teaching-list li:hover {
  background: var(--bg-alt);
}

/* Press rows — highlight */
.press-list li {
  border-radius: var(--radius);
  padding-left: .5rem;
  padding-right: .5rem;
  margin-left: -.5rem;
  margin-right: -.5rem;
  transition: background var(--dur-fast) var(--ease-out);
}
.press-list li:hover {
  background: var(--bg-alt);
}

/* Video thumbnails — zoom on hover */
.lite-yt {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
}
.lite-yt:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px oklch(15% 0.01 250 / .12);
}
[data-theme="dark"] .lite-yt:hover {
  box-shadow: 0 6px 24px oklch(0% 0 0 / .35);
}

/* Theme toggle — spin on click */
.theme-toggle {
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-mid) var(--ease-out);
}
.theme-toggle.spin {
  transform: rotate(360deg);
}

/* Hero pill buttons — lift on hover */
.hero-links a {
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.hero-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px oklch(15% 0.01 250 / .08);
}
[data-theme="dark"] .hero-links a:hover {
  box-shadow: 0 2px 8px oklch(0% 0 0 / .2);
}

/* Job banner — gentle pulse glow */
@keyframes banner-glow {
  0%, 100% { box-shadow: 0 0 0 0 oklch(52% 0.19 260 / .08); }
  50% { box-shadow: 0 0 0 6px oklch(52% 0.19 260 / 0); }
}
.job-banner {
  animation: banner-glow 3s var(--ease-out) infinite;
}

/* Pub venue badges — pop on hover */
.pub-venue {
  transition: transform var(--dur-fast) var(--ease-out);
}
.pub-venue:hover {
  transform: scale(1.08);
}

/* Footer ── */
footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .col-side {
    position: static;
    max-height: none;
    overflow-y: visible;
    padding: 0;
    order: -1;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .hero { flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; padding: 2rem 0 2rem; }
  .hero-img { width: 120px; height: 120px; }
  .hero-links { justify-content: center; }
  .job-banner { flex-direction: column; text-align: center; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.75rem; }
  .video-grid { grid-template-columns: 1fr; }
  .news-list li { flex-direction: column; gap: .15rem; }
  .news-date { width: auto; }
  .teaching-list li { flex-direction: column; gap: .15rem; }
  .teaching-year { width: auto; }
}

/* ── Print stylesheet ── */
@media print {
  /* Reset colors to black on white */
  :root, [data-theme="dark"] {
    --fg: #111;
    --fg-secondary: #333;
    --fg-muted: #555;
    --bg: #fff;
    --bg-alt: #fff;
    --accent: #111;
    --accent-light: #eee;
    --border: #ccc;
  }
  body { font-size: 11pt; line-height: 1.5; }

  /* Hide non-print elements */
  #bgCanvas, .theme-toggle, .skip-link,
  .lite-yt, .project-video, .video-grid,
  section#videos, .job-banner { display: none !important; }

  /* Remove sticky/fixed positioning */
  nav { position: static; background: #fff; backdrop-filter: none; }
  .col-side { position: static; max-height: none; overflow: visible; }

  /* Single column for print */
  .two-col { display: block; }

  /* Remove animations and hover effects */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }

  /* Clean link styling — show URLs */
  a { color: #111; text-decoration: underline; }
  a[href^="mailto"]::after,
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
    word-break: break-all;
  }
  /* Don't show URL for nav links and short labels */
  .nav-links a::after,
  .hero-links a::after,
  .project-links a::after,
  .project-press a::after,
  .pub-extra a::after { content: none; }

  /* Avoid page breaks inside items */
  .project, .pub-list li { break-inside: avoid; }

  /* Tighten spacing */
  .hero { padding: 1rem 0; }
  section { padding: 0.75rem 0; }
  main { padding: 0; }
  footer { padding: 1rem 0; }

  /* Ensure profile photo prints */
  .hero-img { filter: none; -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  /* Venue badges print cleanly */
  .pub-venue, .pub-award { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
