/* ============================================================
   Climate Disaster Laboratory (CDL) — Chonnam National Univ.
   Static stylesheet — vanilla CSS, no build tools required.
   ============================================================ */

/* -- Design tokens ------------------------------------------- */
:root {
  --color-bg:        #ffffff;
  --color-bg-soft:   #f5f7fa;
  --color-bg-alt:    #eef2f6;
  --color-border:    #e2e8f0;
  --color-text:      #1a2230;
  --color-text-soft: #4b5563;
  --color-muted:     #6b7280;

  --color-primary:        #0a2a5e;   /* deep navy */
  --color-primary-strong: #061d44;
  --color-accent:         #1e88c8;   /* clean blue accent */
  --color-accent-soft:    #e6f0fa;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 14px 40px rgba(15, 23, 42, 0.10);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --container: 1180px;

  --font-sans: "Pretendard", "Inter", "Noto Sans KR", -apple-system,
               BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, sans-serif;
  --font-serif: "Source Serif Pro", "Noto Serif KR", Georgia, serif;
}

/* -- Reset / base -------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--color-primary); }

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; color: var(--color-text-soft); }

ul { padding-left: 1.2em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}
.section--soft   { background: var(--color-bg-soft); }
.section--alt    { background: var(--color-bg-alt); }
.section--narrow { padding: 56px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p  { font-size: 1.05rem; color: var(--color-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-strong);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* -- Site header / navigation -------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
  text-decoration: none;
}
.nav__brand:hover { color: var(--color-text); }
.nav__brand:hover .nav__brand-name { color: var(--color-primary); }

/* Image logo (CDL emblem) */
.nav__logo {
  display: inline-block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.nav__brand-name {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav__brand-divider {
  width: 1px;
  height: 26px;
  background: var(--color-border);
  flex-shrink: 0;
}
.nav__brand-dept {
  display: flex;
  flex-direction: column;
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--color-muted);
  white-space: nowrap;
  font-weight: 500;
}
.nav__brand-dept span:first-child { color: var(--color-text-soft); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  position: relative;
  display: inline-block;
  padding: 26px 16px;     /* taller padding so the underline can sit at the very bottom */
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 0;
  text-decoration: none;
}
.nav__links a:hover {
  background: transparent;
  color: var(--color-accent);
}
.nav__links a.is-active {
  color: var(--color-accent);
  background: transparent;
  font-weight: 600;
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

/* Hide the divider + dept tagline on narrow screens so the nav still fits */
@media (max-width: 1180px) {
  .nav__brand-divider,
  .nav__brand-dept { display: none; }
}

/* Footer brand logo sizing */
.site-footer__brand .nav__logo {
  width: 34px;
  height: 34px;
}
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* -- Hero (full-bleed video background) ---------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 880px);
  padding: 0;
  background: #061d44;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  /* slight scale so mouse-parallax translation never reveals edges */
  transform: translate3d(0, 0, 0) scale(1.08);
  transform-origin: center center;
  transition: transform 0.05s linear;  /* JS overrides via rAF */
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(100deg,
      rgba(4, 16, 38, 0.78) 0%,
      rgba(4, 16, 38, 0.55) 38%,
      rgba(4, 16, 38, 0.18) 70%,
      rgba(4, 16, 38, 0.35) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 50%, rgba(0,0,0,0.35) 100%),
    radial-gradient(120% 80% at 50% 100%, transparent 50%, rgba(0,0,0,0.45) 100%);
  mix-blend-mode: multiply;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 160px;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  color: #fff;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ec3ff;
  box-shadow: 0 0 10px rgba(78, 195, 255, 0.9);
  animation: hero-pulse 2.6s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.4); }
}
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  max-width: 720px;
}
.hero__lead {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 32px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  font-weight: 600;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, #fff, transparent);
  animation: hero-scroll 2.2s ease-in-out infinite;
}
@keyframes hero-scroll {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* When using the cinematic hero, raise the stats card so it overlaps the dark hero edge */
.hero--cinematic + .container .stats {
  margin-top: -64px;
}

/* -- Scroll reveal animations -------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal--left  { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--zoom  { transform: scale(0.94); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--zoom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -- Stats row ----------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: -56px;
  position: relative;
  z-index: 5;
  border: 1px solid var(--color-border);
}
.stats__item { text-align: center; }
.stats__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stats__label {
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

/* -- Card grid ----------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #c9d6e2;
}
.card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  position: relative;
  overflow: hidden;
}
.card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__media--alt1 { background: linear-gradient(135deg, #0f3460, #16537e); }
.card__media--alt2 { background: linear-gradient(135deg, #1e3a8a, #2563eb); }
.card__media--alt3 { background: linear-gradient(135deg, #134e4a, #14b8a6); }
.card__media--alt4 { background: linear-gradient(135deg, #312e81, #6366f1); }
.card__media--alt5 { background: linear-gradient(135deg, #7f1d1d, #b91c1c); }
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, transparent 30%, transparent 65%, rgba(0,0,0,0.18) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 14px);
}
.card__media-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}
.card__body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.card__text { color: var(--color-text-soft); font-size: 0.95rem; flex-grow: 1; }
.card__more {
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__more::after { content: "→"; transition: transform 0.15s ease; }
.card__more:hover::after { transform: translateX(3px); }

/* -- Two column generic -------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.two-col--lead { grid-template-columns: 1.1fr 0.9fr; }

/* -- People grid --------------------------------------------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.person {
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.person:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.person__avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}
.person__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.person__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.person__role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.person__meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}
/* Alumni — single-line list (name · program · period) */
.alumni-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
}
.alumni-list > li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 6px;
  border-bottom: 1px solid #eef1f5;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}
.alumni-list > li:hover { background: var(--color-bg-soft); }
.alumni__name {
  font-weight: 600;
  color: var(--color-primary);
}
.alumni__role {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.alumni__period {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 560px) {
  .alumni-list > li {
    gap: 8px;
    padding: 14px 6px;
  }
}

.people-section + .people-section { margin-top: 56px; }
.people-section__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 700;
}
.people-section__title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--color-border);
}

/* -- Profile (PI) -------------------------------------------- */
.profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.profile__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile__name { font-size: 1.9rem; margin-bottom: 4px; }
.profile__title {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 1rem;
}
.profile__contact {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}
.profile__contact strong {
  display: inline-block;
  min-width: 90px;
  color: var(--color-primary);
  font-weight: 600;
}
.profile h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  border-left: 3px solid var(--color-accent);
  padding-left: 12px;
}

/* -- Publication list ---------------------------------------- */
.pub-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.pub-toolbar button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text-soft);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pub-toolbar button:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pub-toolbar button.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.pub-list { list-style: none; padding: 0; margin: 0; }
.pub-list > li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.pub-list > li:hover {
  box-shadow: var(--shadow-sm);
  border-left-color: var(--color-primary);
}
.pub__year {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.pub__title {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
  line-height: 1.45;
}
.pub__authors {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  margin-bottom: 4px;
}
.pub__journal {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-style: italic;
}

/* -- Projects (Sejong-style year-grouped list) --------------- */
.proj-year {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 56px 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-primary);
}
.proj-year:first-of-type { margin-top: 0; }
.proj-year h2 {
  font-size: 1.7rem;
  margin: 0;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.proj-year__count {
  font-size: 0.88rem;
  color: var(--color-muted);
  font-weight: 500;
}
.proj-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  counter-reset: proj;
}
.proj-list > li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #eef1f5;
  align-items: start;
}
.proj-list > li:last-child { border-bottom: 0; }
.proj-list > li::before {
  counter-increment: proj;
  content: counter(proj, decimal-leading-zero);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.proj__title {
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 8px;
  font-size: 1rem;
}
.proj__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-muted);
}
.proj__meta > .meta-sep {
  width: 3px;
  height: 3px;
  background: var(--color-border);
  border-radius: 50%;
  display: inline-block;
}
.proj__status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.proj__status--ongoing {
  background: #dbeafe;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: ongoing-glow 1.8s ease-in-out infinite;
  position: relative;
}
.proj__status--ongoing::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  animation: ongoing-dot 1.2s ease-in-out infinite;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.7);
}
.proj__status--past    { background: #f3f4f6; color: #6b7280; }

@keyframes ongoing-glow {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(37, 99, 235, 0.45),
      0 0 8px 1px rgba(37, 99, 235, 0.30);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(37, 99, 235, 0),
      0 0 16px 4px rgba(37, 99, 235, 0.55);
  }
}
@keyframes ongoing-dot {
  0%, 100% { transform: scale(1);   opacity: 1;   }
  50%      { transform: scale(0.55); opacity: 0.5; }
}

/* Ongoing-count summary banner shown at the top of the projects list */
.proj-summary {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(37, 99, 235, 0.20);
  border-radius: var(--radius-md);
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}
.proj-summary::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 65%);
  pointer-events: none;
}
.proj-summary__count {
  font-size: 3rem;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  position: relative;
  padding-right: 18px;
}
.proj-summary__count::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  animation: ongoing-dot 1.2s ease-in-out infinite;
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.75);
}
.proj-summary__text strong {
  display: block;
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.proj-summary__text small {
  color: var(--color-text-soft);
  font-size: 0.88rem;
}
@media (max-width: 560px) {
  .proj-summary { padding: 18px 20px; gap: 14px; }
  .proj-summary__count { font-size: 2.4rem; padding-right: 14px; }
}
.proj__role { font-weight: 600; color: var(--color-primary); }
.proj__funder { color: var(--color-text-soft); }
.proj__period {
  color: var(--color-muted);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 560px) {
  .proj-list > li { grid-template-columns: 28px 1fr; gap: 10px; }
  .proj-year h2 { font-size: 1.35rem; }
}

/* -- Publications grouped by year ---------------------------- */
.pub-group {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.pub-group:hover {
  box-shadow: var(--shadow-md);
  border-color: #c9d6e2;
}
.pub-group__year {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  color: #fff;
}
.pub-group__year h2 {
  font-size: 1.55rem;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.pub-group__count {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.pub-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pub-group__list > li {
  padding: 22px 28px 22px 31px;
  border-top: 1px solid #eef1f5;
  position: relative;
  transition: background 0.15s ease;
}
.pub-group__list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.pub-group__list > li:hover { background: var(--color-bg-soft); }
.pub-group__list > li:hover::before { opacity: 1; }
.pub-group__list > li:first-child { border-top: 0; }

@media (max-width: 560px) {
  .pub-group__year { padding: 18px 20px; }
  .pub-group__year h2 { font-size: 1.3rem; }
  .pub-group__list > li { padding: 18px 20px 18px 23px; }
}

/* -- Research detail ----------------------------------------- */
.topic {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}
.topic:last-child { border-bottom: 0; }
.topic__icon {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--color-accent-soft), #fff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.topic__body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.topic__body p  { color: var(--color-text-soft); }
.topic__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.topic__keywords span {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.topic__figs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}
.topic__figs figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.topic__figs figure:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #c9d6e2;
}
.topic__figs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}
@media (max-width: 720px) {
  .topic__figs { grid-template-columns: 1fr; gap: 12px; }
}

/* -- Links page ---------------------------------------------- */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: all 0.15s ease;
}
.link-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.link-card strong {
  display: block;
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 4px;
}
.link-card span {
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* -- Page hero (subpage banner) ------------------------------ */
.page-hero {
  background:
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(30,136,200,0.30), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 640px;
  font-size: 1.05rem;
}
.crumbs {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.crumbs a { color: rgba(255,255,255,0.85); }

/* -- Subpage hero theme variants ----------------------------- */
/* Override base ::after so each theme's accent gradient isn't tinted by the
   existing cyan blob; keep only the subtle diagonal stripes. */
.page-hero[class*="page-hero--"]::after {
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
}

/* PROFESSOR — scholarly: warm spotlight + stacked books / mortarboard */
.page-hero--professor {
  background:
    radial-gradient(900px 500px at 88% 35%, rgba(255, 195, 110, 0.20), transparent 55%),
    radial-gradient(700px 500px at 8% 100%, rgba(80, 140, 230, 0.20), transparent 60%),
    linear-gradient(135deg, #061d44 0%, #0a2a5e 60%, #14336e 100%);
}
.page-hero--professor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 280'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.6' opacity='0.20'%3E%3Crect x='40' y='80' width='240' height='180' rx='5'/%3E%3Crect x='90' y='50' width='240' height='180' rx='5'/%3E%3Cline x1='115' y1='90' x2='305' y2='90'/%3E%3Cline x1='115' y1='120' x2='305' y2='120'/%3E%3Cline x1='115' y1='150' x2='285' y2='150'/%3E%3Cline x1='115' y1='180' x2='295' y2='180'/%3E%3Cline x1='115' y1='210' x2='275' y2='210'/%3E%3C/g%3E%3Cg fill='%23ffffff' opacity='0.16'%3E%3Cpolygon points='350,30 392,52 350,74 308,52'/%3E%3C/g%3E%3Cline x1='350' y1='74' x2='350' y2='98' stroke='%23ffffff' stroke-width='1.6' opacity='0.16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4% center;
  background-size: auto 80%;
  pointer-events: none;
  z-index: 0;
}

/* MEMBERS — connected nodes / people network */
.page-hero--members {
  background:
    radial-gradient(900px 500px at 88% 50%, rgba(78, 195, 255, 0.24), transparent 55%),
    radial-gradient(700px 500px at 5% 100%, rgba(168, 85, 247, 0.18), transparent 60%),
    linear-gradient(135deg, #0a1f4d 0%, #0c2a5a 60%, #142d5e 100%);
}
.page-hero--members::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 260'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2' opacity='0.22'%3E%3Cline x1='80' y1='80' x2='200' y2='130'/%3E%3Cline x1='200' y1='130' x2='320' y2='80'/%3E%3Cline x1='200' y1='130' x2='180' y2='220'/%3E%3Cline x1='200' y1='130' x2='340' y2='190'/%3E%3Cline x1='80' y1='80' x2='180' y2='220'/%3E%3Cline x1='320' y1='80' x2='340' y2='190'/%3E%3C/g%3E%3Cg fill='%23ffffff' opacity='0.55'%3E%3Ccircle cx='80' cy='80' r='14'/%3E%3Ccircle cx='200' cy='130' r='20'/%3E%3Ccircle cx='320' cy='80' r='14'/%3E%3Ccircle cx='180' cy='220' r='12'/%3E%3Ccircle cx='340' cy='190' r='12'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4% center;
  background-size: auto 84%;
  pointer-events: none;
  z-index: 0;
}

/* RESEARCH — climate dynamics: typhoon eye + isobars */
.page-hero--research {
  background:
    radial-gradient(900px 500px at 88% 50%, rgba(46, 200, 180, 0.24), transparent 55%),
    radial-gradient(700px 500px at 8% 100%, rgba(80, 150, 220, 0.20), transparent 60%),
    linear-gradient(135deg, #032649 0%, #073060 60%, #103a72 100%);
}
.page-hero--research::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 280'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.4' opacity='0.22'%3E%3Ccircle cx='280' cy='140' r='30'/%3E%3Ccircle cx='280' cy='140' r='60'/%3E%3Ccircle cx='280' cy='140' r='95'/%3E%3Ccircle cx='280' cy='140' r='130'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.2' opacity='0.14'%3E%3Cpath d='M0 60 Q60 30 120 60 T240 60 T360 60 T480 60'/%3E%3Cpath d='M0 110 Q60 80 120 110 T240 110 T360 110 T480 110'/%3E%3Cpath d='M0 220 Q60 250 120 220 T240 220 T360 220 T480 220'/%3E%3C/g%3E%3Ccircle cx='280' cy='140' r='6' fill='%23ffffff' opacity='0.55'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0% center;
  background-size: auto 110%;
  pointer-events: none;
  z-index: 0;
}

/* PROJECTS — Gantt-like horizontal bars on a time grid */
.page-hero--projects {
  background:
    radial-gradient(900px 500px at 88% 30%, rgba(50, 200, 130, 0.20), transparent 55%),
    radial-gradient(700px 500px at 10% 100%, rgba(80, 150, 220, 0.18), transparent 60%),
    linear-gradient(135deg, #061d44 0%, #0a2a5e 60%, #133268 100%);
}
.page-hero--projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 260'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.10'%3E%3Cline x1='40' y1='30' x2='40' y2='230'/%3E%3Cline x1='100' y1='30' x2='100' y2='230'/%3E%3Cline x1='160' y1='30' x2='160' y2='230'/%3E%3Cline x1='220' y1='30' x2='220' y2='230'/%3E%3Cline x1='280' y1='30' x2='280' y2='230'/%3E%3Cline x1='340' y1='30' x2='340' y2='230'/%3E%3C/g%3E%3Cg fill='%23ffffff' opacity='0.22'%3E%3Crect x='40' y='40' width='240' height='14' rx='3'/%3E%3Crect x='80' y='80' width='200' height='14' rx='3'/%3E%3Crect x='100' y='120' width='220' height='14' rx='3'/%3E%3Crect x='60' y='160' width='180' height='14' rx='3'/%3E%3Crect x='120' y='200' width='200' height='14' rx='3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: auto 84%;
  pointer-events: none;
  z-index: 0;
}

/* PUBLICATIONS — stacked papers / overlapping documents */
.page-hero--publications {
  background:
    radial-gradient(900px 500px at 88% 30%, rgba(255, 180, 90, 0.18), transparent 55%),
    radial-gradient(700px 500px at 10% 100%, rgba(80, 140, 230, 0.20), transparent 60%),
    linear-gradient(135deg, #061d44 0%, #0a2a5e 60%, #1d2a52 100%);
}
.page-hero--publications::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 280'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.5' opacity='0.20'%3E%3Crect x='30' y='80' width='180' height='200' rx='5' transform='rotate(-8 120 180)'/%3E%3Crect x='100' y='50' width='180' height='200' rx='5'/%3E%3Crect x='160' y='40' width='180' height='200' rx='5' transform='rotate(7 250 140)'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.22'%3E%3Cline x1='118' y1='80' x2='262' y2='80'/%3E%3Cline x1='118' y1='105' x2='272' y2='105'/%3E%3Cline x1='118' y1='130' x2='252' y2='130'/%3E%3Cline x1='118' y1='155' x2='262' y2='155'/%3E%3Cline x1='118' y1='180' x2='242' y2='180'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4% center;
  background-size: auto 92%;
  pointer-events: none;
  z-index: 0;
}

/* LINKS — connected globe / latitude-longitude grid */
.page-hero--links {
  background:
    radial-gradient(900px 500px at 88% 40%, rgba(80, 200, 220, 0.24), transparent 55%),
    radial-gradient(700px 500px at 10% 100%, rgba(120, 100, 220, 0.20), transparent 60%),
    linear-gradient(135deg, #061d44 0%, #0a2a5e 60%, #143568 100%);
}
.page-hero--links::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 280'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.4' opacity='0.22'%3E%3Ccircle cx='280' cy='140' r='100'/%3E%3Cellipse cx='280' cy='140' rx='100' ry='38'/%3E%3Cellipse cx='280' cy='140' rx='100' ry='70'/%3E%3Cline x1='180' y1='140' x2='380' y2='140'/%3E%3Cline x1='280' y1='40' x2='280' y2='240'/%3E%3Cpath d='M180 100 Q280 60 380 100'/%3E%3Cpath d='M180 180 Q280 220 380 180'/%3E%3C/g%3E%3Cg fill='%23ffffff' opacity='0.60'%3E%3Ccircle cx='220' cy='110' r='4'/%3E%3Ccircle cx='340' cy='160' r='4'/%3E%3Ccircle cx='280' cy='220' r='4'/%3E%3Ccircle cx='200' cy='170' r='3'/%3E%3Ccircle cx='350' cy='95' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4% center;
  background-size: auto 90%;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 720px) {
  .page-hero[class*="page-hero--"]::before { opacity: 0.45; }
}

/* -- News list ----------------------------------------------- */
.news-list { list-style: none; padding: 0; margin: 0; }
.news-list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--color-border);
}
.news-list li:last-child { border-bottom: 0; }
.news-list time {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.news-list .news-title { color: var(--color-text); font-weight: 500; }
.news-list .news-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  padding: 4px 10px;
  border-radius: 999px;
}

/* -- Footer -------------------------------------------------- */
.site-footer {
  background: #0a1929;
  color: #aab7c4;
  padding: 56px 0 30px;
  margin-top: 80px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.site-footer p { color: #aab7c4; font-size: 0.9rem; line-height: 1.7; margin: 0 0 8px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 0.9rem; }
.site-footer a { color: #d3dde6; }
.site-footer a:hover { color: #fff; }
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.site-footer__brand .nav__logo { box-shadow: 0 0 0 1px rgba(255,255,255,0.1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  font-size: 0.82rem;
  color: #6c7a89;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* -- Responsive ---------------------------------------------- */
@media (max-width: 960px) {
  .hero { min-height: 72vh; }
  .hero__content { padding: 100px 24px 120px; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: -40px; padding: 28px 22px; }
  .hero--cinematic + .container .stats { margin-top: -40px; }
  .two-col, .two-col--lead { grid-template-columns: 1fr; gap: 32px; }
  .profile { grid-template-columns: 1fr; gap: 28px; }
  .profile__photo { max-width: 280px; }
  .topic { grid-template-columns: 100px 1fr; gap: 20px; }
  .topic__icon { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-list li { grid-template-columns: 90px 1fr; }
  .news-list .news-tag { grid-column: 2; justify-self: start; margin-top: 4px; }

  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 12px 16px 18px;
    gap: 2px;
    box-shadow: var(--shadow-sm);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a { padding: 12px 14px; }
  .nav__links a.is-active::after { display: none; }
  .nav__links a.is-active {
    background: var(--color-accent-soft);
    border-radius: 6px;
  }
}

/* -- Recruit (open positions on home) ------------------------ */
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 32px;
  text-align: left;
}
.recruit-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.recruit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #c9d6e2;
}
.recruit-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.recruit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.recruit-card p {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  margin: 0;
}
@media (max-width: 720px) {
  .recruit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats__num { font-size: 1.7rem; }
  .pub-list > li { padding: 18px 18px; }
}
