@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-faint: #999;
  --border: #e5e5e5;
  --border-hover: #ccc;
  --bg: #fff;
  --bg-subtle: #f8f8f6;
  --bg-card: #f4f3f0;
  --accent: #2d5a8e;
  --accent-light: #e8f0f9;
  --tag-bg: #eef3fa;
  --tag-text: #2d5a8e;
  --max-w: 820px;
  --nav-h: 60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Navigation ─────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}
.nav-brand:hover { text-decoration: none; }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); text-decoration: none; }
.nav-links a.active { font-weight: 500; }

/* ── Nav dropdown ───────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 0;
  min-width: 240px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 110;
  padding-top: 14px;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  transition: background 0.1s;
}

.nav-dropdown-menu a:hover {
  background: var(--bg-subtle);
  color: var(--text);
  text-decoration: none;
}

/* ── Page wrapper ────────────────────────────────── */
.page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* ── Section ─────────────────────────────────────── */
.section { margin-bottom: 3.5rem; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

/* ── Hero (index only) ───────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2.75rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.hero-photo {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
  display: block;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.hero-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.hero-affil {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-bio {
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  max-width: 530px;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-links a {
  font-size: 12.5px;
  padding: 5px 13px;
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  color: var(--text-muted);
  transition: all 0.15s;
}
.hero-links a:hover {
  color: var(--text);
  border-color: var(--text);
  text-decoration: none;
}

/* ── Research cards ──────────────────────────────── */
.research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.research-card {
  display: block;
  background: var(--bg-card);
  border-radius: 10px;
  padding: 1rem 1.1rem 1.1rem;
  color: var(--text);
  transition: all 0.15s;
}
.research-card:hover {
  background: var(--bg-subtle);
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.rc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  background: var(--tag-bg);
  color: var(--tag-text);
  padding: 2px 9px;
  border-radius: 100px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.rc-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.rc-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── News ────────────────────────────────────────── */
.news-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.news-date {
  font-size: 12px;
  color: var(--text-faint);
  padding-top: 3px;
  font-variant-numeric: tabular-nums;
}

.news-text { font-size: 13.5px; line-height: 1.75; }

.badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  padding: 1px 7px;
  border-radius: 100px;
  margin-right: 5px;
  vertical-align: middle;
}
.badge-conf { background: #fef3e2; color: #92500a; }
.badge-award { background: #e8f9ee; color: #186130; }
.badge-pos { background: #e8f0f9; color: #2d5a8e; }
.badge-news { background: #f3e8f9; color: #5a2d8e; }
.badge-pub { background: #e2f6f0; color: #0a6b4f; }

/* ── News toggle ─────────────────────────────────── */
#news-older {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
#news-older.news-collapsed {
  max-height: 0;
  opacity: 0;
}
.news-toggle {
  display: block;
  margin: 1rem auto 0;
  background: none;
  border: 1px solid var(--mid);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.news-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Explore cards ───────────────────────────────── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.explore-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  transition: all 0.15s;
  color: var(--text);
}
.explore-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-subtle);
  text-decoration: none;
  transform: translateY(-1px);
}

.ec-title {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.ec-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Page header (inner pages) ───────────────────── */
.page-header { margin-bottom: 2.5rem; }

.page-header h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.page-header p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Publications ────────────────────────────────── */
.pub-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 12.5px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-sans);
  transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--border-hover); color: var(--text); }
.filter-btn.active { background: var(--text); color: #fff; border-color: var(--text); }

.pub-year-group { margin-bottom: 2rem; }

.pub-year {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.pub-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  margin-bottom: 0.7rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.pub-item:hover {
  border-color: var(--border-hover);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.pub-body { flex: 1 1 auto; min-width: 0; }

.pub-title {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.pub-authors {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.pub-authors .me { color: var(--text); font-style: italic; }

.pub-venue {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.pub-links {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 230px;
}

.pub-link {
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 11px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--text-muted);
  background: var(--bg-subtle);
  transition: filter 0.15s, transform 0.15s;
}
.pub-link:hover { filter: brightness(0.95); transform: translateY(-1px); text-decoration: none; }
.pub-link.doi  { background: #e8f0f9; color: #2d5a8e; }
.pub-link.pdf  { background: #fdeaea; color: #c0392b; }
.pub-link.code { background: #f0e8f9; color: #6b3fa0; }
.pub-link.project { background: #e9f6ee; color: #1a6b3d; }

/* ── Publication topic labels ──────────────────── */
.pub-topics {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.pub-topic-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 1px 7px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.topic-spatial { background: #e8f5ee; color: #1a6b3d; }
.topic-trustworthy { background: #f0e8f9; color: #6b3fa0; }
.topic-transferable { background: #fef3e2; color: #92500a; }

.pub-filters.type-filters {
  margin-bottom: 0.5rem;
}

/* ── Research project page ──────────────────────── */
.back-link {
  font-size: 13px;
  margin-bottom: 0.75rem;
}
.back-link a { color: var(--text-muted); }
.back-link a:hover { color: var(--text); }

.page-header .proj-tag { margin-top: 0.6rem; }

.proj-image-hero {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-faint);
  overflow: hidden;
}
.proj-image-hero img { width: 100%; height: 100%; object-fit: contain; background: #fff; display: block; }

.proj-body {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
  max-width: 640px;
}

.proj-body p { margin-bottom: 1rem; }

.proj-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.proj-body li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.35rem;
}

/* ── Research page ───────────────────────────────── */
.project-item {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.project-item:last-child { border-bottom: none; }

.proj-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  background: var(--tag-bg);
  color: var(--tag-text);
  padding: 2px 9px;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.proj-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.proj-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.proj-collab {
  font-size: 12px;
  color: var(--text-faint);
}

.proj-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-faint);
}
.proj-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; display: block; }

/* ── Lab page ────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem;
  text-align: center;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-faint);
}

.team-name { font-size: 14px; font-weight: 500; margin-bottom: 0.2rem; }
.team-role { font-size: 12px; color: var(--text-muted); }

.team-affil {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
  opacity: 0.7;
}
.team-affil.mit { color: #A31F34; }
.team-affil.tum { color: #0065BD; }

.opening-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
}

.opening-box h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.opening-box p, .opening-box li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

.opening-box ul { padding-left: 1.25rem; }

/* ── Teaching ────────────────────────────────────── */
.course-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.25rem;
}

.course-code {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding-top: 2px;
}

.course-title { font-size: 15px; font-weight: 500; margin-bottom: 0.25rem; }
.course-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── Contact ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-block h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-block p, .contact-block a {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.collab-list { display: flex; flex-direction: column; gap: 10px; }

.collab-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13.5px;
}

.collab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.collab-name { font-weight: 500; }
.collab-inst { color: var(--text-muted); font-size: 13px; }

/* ── Footer ──────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
}

/* ── Visual Analytics cards ─────────────────────── */
.viz-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1.25rem;
}

.viz-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text);
}

.viz-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-subtle);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.viz-card .rc-tag { margin-bottom: 0; }

.viz-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0.5rem 0 0.35rem;
  line-height: 1.35;
}

.viz-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.viz-card-action {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* ── Viz modal overlay ─────────────────────────── */
.viz-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2vh 2vw;
}

.viz-modal.active { display: flex; }

.viz-modal-header {
  width: min(96vw, 1400px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  background: #fff;
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
}

.viz-modal-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.viz-modal-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.viz-modal-newtab {
  font-size: 12px;
  color: var(--text-muted);
}
.viz-modal-newtab:hover { color: var(--accent); text-decoration: none; }

.viz-modal-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: var(--font-sans);
}
.viz-modal-close:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.viz-modal-frame {
  width: min(96vw, 1400px);
  height: 88vh;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fff;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
  .hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-photo { width: 100px; height: 100px; }
  .research-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .project-item { grid-template-columns: 1fr; }
  .proj-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 12.5px; }
  .viz-grid { grid-template-columns: 1fr; }
  .viz-modal { padding: 0; }
  .viz-modal-header { border-radius: 0; }
  .viz-modal-frame { height: 80vh; border-radius: 0; }
}

/* ── Publications: featured (selected) + star ── */
.pub-item.featured,
.pub-item[data-selected="true"] {
  border-left: 3px solid var(--accent);
  background: var(--bg-subtle);
}
.pub-star {
  color: #d4a72c;
  margin-right: 5px;
  font-size: 13px;
}
@media (max-width: 640px) {
  .pub-item { flex-direction: column; gap: 10px; }
  .pub-links { max-width: none; justify-content: flex-start; }
}

/* ── Homepage hiring banner ─────────────────────── */
.hiring-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.1rem;
  padding: 10px 16px;
  background: #eef6ee;
  border: 1px solid #cfe6cf;
  border-left: 3px solid #2e8b4f;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.hiring-banner:hover { background: #e6f2e6; text-decoration: none; }
.hiring-banner strong { color: #1f6b39; font-weight: 600; }
.hiring-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2e8b4f;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(46,139,79,0.5);
  animation: hiringPulse 2s infinite;
}
@keyframes hiringPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,139,79,0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(46,139,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,139,79,0); }
}

/* ── Opportunities page ─────────────────────────── */
.opp-iowa-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 2.5rem;
}
.opp-iowa-logo {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}
.opp-pdf-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin-bottom: 1.25rem;
  background: #fdeaea;
  border: 1px solid #f3c9c2;
  border-left: 3px solid #c0392b;
  border-radius: 10px;
  color: var(--text);
  transition: filter 0.15s, transform 0.15s;
}
.opp-pdf-card:hover { filter: brightness(0.98); transform: translateY(-1px); text-decoration: none; }
.opp-pdf-icon {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: #c0392b;
  padding: 8px 10px;
  border-radius: 6px;
}
.opp-pdf-body { display: flex; flex-direction: column; gap: 2px; }
.opp-pdf-body strong { font-size: 14px; color: #8f2c20; }
.opp-pdf-body span { font-size: 12.5px; color: var(--text-muted); }
