/* ─── RESEARCH PAGE ───────────────────────────────────────── */

.research-page {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

/* Page title block (shared pattern) */
.page-title-wrap {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.page-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

/* ── FUNDING STRIP ── */
.research-funding {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  animation: fadeUp 0.45s var(--ease-out-expo) both;
}

.research-funding p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  flex: 1 1 280px;
}

.research-funding-logos {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.research-funding-logos img {
  max-height: 42px;
  opacity: 0.9;
}

/* ── RESEARCH SECTIONS ── */
.research-section {
  margin-bottom: 3.5rem;
  animation: fadeUp 0.45s var(--ease-out-expo) both;
}

.research-section:nth-of-type(1) { animation-delay: 0.05s; }
.research-section:nth-of-type(2) { animation-delay: 0.12s; }
.research-section:nth-of-type(3) { animation-delay: 0.18s; }

/* Section header */
.research-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.research-header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.research-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── CONTENT BLOCKS ── */
.research-block {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

.research-block p {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.research-block p:last-child {
  margin-bottom: 0;
}

.research-block a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.research-block a:hover {
  color: var(--red);
}

/* Inline figure */
.research-figure {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.research-figure img {
  max-width: 220px;
  border-radius: 8px;
  border: 1px solid var(--rule);
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .research-block {
    padding: 1.4rem 1.5rem;
  }

  .research-header h2 {
    font-size: 1.15rem;
  }

  .research-figure img {
    max-width: 100%;
  }
}