/* ImmunovaTx — "clinical editorial"
   Serif display (Fraunces) + IBM Plex Sans body + IBM Plex Mono labels.
   Square corners, hairline rules, no shadows, asymmetric numbered sections,
   full-screen overlay navigation. Emerald accent on white/ink. */

:root {
  --ink:        #0E3B38;   /* deep teal — headings / ink */
  --ink-2:      #195753;   /* mid teal */
  --muted:      #5B716E;   /* muted teal-grey — body/labels */
  --teal:       #12A883;   /* emerald accent */
  --teal-600:   #0C8868;   /* darker emerald — hover */
  --mint:       #5CD0AC;   /* light mint */
  --line:       #cfe0db;   /* hairline borders */
  --panel:      #f3f8f6;   /* light panel */
  --bg:         #fcfdfc;   /* faint warm off-white */
  --bg-pure:    #ffffff;
  --maxw:       1240px;
  --ease:       cubic-bezier(.16,.84,.44,1);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 560;
  line-height: 1.07;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 540; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); font-weight: 540; }
h3 { font-size: 1.3rem; font-weight: 560; letter-spacing: 0; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.1em; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* mono eyebrows / labels / numbers */
.eyebrow, .mono {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--teal-600);
  margin: 0 0 1.1em;
}
.lead { font-size: 1.22rem; line-height: 1.55; color: var(--muted); max-width: 60ch; }
.lead strong { color: var(--ink); font-weight: 600; }
.muted { color: var(--muted); }

/* ---------- Links & buttons (NO pills) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
  font-size: .76rem;
  padding: .95em 1.55em;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s, border-color .18s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--ink); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: var(--teal); color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); }

/* underlined text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: baseline;
  gap: .4em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
}
.arrow-link:hover { color: var(--teal-600); text-decoration: none; border-color: var(--teal-600); }
.arrow-link .arr { color: var(--teal); transition: transform .18s var(--ease); }
.arrow-link:hover .arr { transform: translateX(3px); }
.read-more { font-family: var(--sans); font-weight: 600; font-size: .94rem; color: var(--teal-600); border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.read-more:hover { border-color: var(--teal); text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .7em; color: var(--ink); font-family: var(--serif); font-weight: 560; font-size: 1.4rem; letter-spacing: -.01em; }
.brand:hover { text-decoration: none; }
.brand span strong { color: var(--teal); font-weight: 600; }
.brand .logo { width: 32px; height: 32px; flex: none; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta-desktop { display: inline-flex; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: .85em 1.3em;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.nav-trigger:hover { background: var(--ink); color: #fff; }
.nav-trigger .plus { font-size: 1.05rem; line-height: 1; }

/* ---------- Full-screen overlay nav ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5%);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.nav-overlay.open { opacity: 1; visibility: visible; transform: none; }
.nav-overlay-top {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: 0 32px; border-bottom: 1px solid var(--line); flex: none;
}
.nav-close {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em;
  font-size: .76rem; font-weight: 500; color: var(--ink);
  background: transparent; border: 1px solid var(--ink); border-radius: 0;
  padding: .85em 1.3em; cursor: pointer; transition: background .18s, color .18s;
}
.nav-close:hover { background: var(--ink); color: #fff; }
.nav-close .x { font-size: 1.05rem; line-height: 1; }

.nav-overlay-body {
  flex: 1; overflow-y: auto;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: clamp(28px, 6vh, 72px) 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.overlay-links { list-style: none; margin: 0; padding: 0; max-width: 900px; }
.overlay-links li { border-top: 1px solid var(--line); }
.overlay-links li:last-child { border-bottom: 1px solid var(--line); }
.overlay-links a {
  display: flex; align-items: baseline; gap: clamp(16px, 3vw, 40px);
  padding: clamp(.45em, 1.6vh, .7em) 0;
  font-family: var(--serif); font-weight: 540;
  font-size: clamp(2rem, 6.5vw, 4.2rem); line-height: 1.05;
  color: var(--ink); letter-spacing: -.01em;
  transition: color .18s, padding-left .25s var(--ease);
}
.overlay-links a:hover { color: var(--teal-600); text-decoration: none; padding-left: 14px; }
.overlay-links .idx {
  font-family: var(--mono); font-size: .9rem; font-weight: 500;
  letter-spacing: .06em; color: var(--teal-600);
  flex: none; width: 2.6ch; padding-top: .9em;
}
.overlay-links a[aria-current="page"] { color: var(--teal); }
.overlay-links a[aria-current="page"] .idx::after {
  content: ""; display: inline-block; width: .5em; height: .5em;
  background: var(--teal); margin-left: .5em; vertical-align: middle;
}
.nav-overlay-foot {
  display: flex; flex-wrap: wrap; gap: 28px 56px;
  margin-top: clamp(28px, 5vh, 56px); padding-top: 28px;
  border-top: 1px solid var(--line);
}
.nav-overlay-foot .mono { margin: 0 0 .4em; color: var(--muted); }
.nav-overlay-foot a { color: var(--ink); font-weight: 600; }
.nav-overlay-foot address { font-style: normal; color: var(--muted); line-height: 1.5; }

/* ---------- Section scaffolding (editorial 2-col) ---------- */
section { padding: 0; }
.editorial { border-top: 1px solid var(--line); }
.editorial .container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  padding-top: 92px;
  padding-bottom: 92px;
}
.editorial.panel { background: var(--panel); }
.sec-label { position: sticky; top: 110px; align-self: start; }
.sec-label .num {
  font-family: var(--mono); font-size: .82rem; letter-spacing: .06em;
  color: var(--teal-600); display: block; margin-bottom: .9em;
}
.sec-label .name {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .14em;
  font-size: .76rem; color: var(--muted); font-weight: 500;
}
.sec-body { min-width: 0; }
.sec-body > h2 { margin-bottom: .5em; max-width: 18ch; }
.sec-body .lead { margin-bottom: 0; }
.sec-intro { margin-bottom: 56px; }

.thin-rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); }
.hero .container { padding-top: clamp(56px, 9vh, 110px); padding-bottom: 0; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: center; }
.hero h1 { margin: .15em 0 .35em; }
.hero .lead { font-size: 1.3rem; margin-bottom: 1.7em; max-width: 50ch; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hero-visual { display: flex; justify-content: center; }
.hero-visual svg { width: 100%; max-width: 420px; height: auto; }
.hero-statbar {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--line); margin-top: clamp(40px, 6vh, 72px);
}
.hero-statbar .stat { flex: 1 1 0; min-width: 180px; padding: 28px 32px 28px 0; border-right: 1px solid var(--line); }
.hero-statbar .stat:last-child { border-right: 0; }
.hero-statbar .stat .big { font-family: var(--serif); font-size: 2.4rem; font-weight: 540; line-height: 1; color: var(--ink); display: block; }
.hero-statbar .stat .lbl { font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; color: var(--muted); margin-top: .8em; display: block; }
.scroll-cue { font-family: var(--mono); text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; color: var(--muted); }

/* ---------- Feature list (numbered cards, hairline) ---------- */
.feature-list { display: grid; gap: 0; }
.feature {
  display: grid; grid-template-columns: auto 1fr; gap: 28px;
  padding: 34px 0; border-top: 1px solid var(--line);
}
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature .fnum { font-family: var(--mono); font-size: .82rem; color: var(--teal-600); letter-spacing: .05em; padding-top: .4em; }
.feature .ficon { width: 40px; height: 40px; color: var(--teal); flex: none; }
.feature h3 { margin-bottom: .3em; }
.feature p:last-child { margin-bottom: 0; color: var(--muted); }
.feature .ftext { max-width: 60ch; }

/* generic bordered cards (square, hairline, no shadow) */
.grid { display: grid; gap: 0; }
.grid-3 { grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.grid-2 { grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.card {
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 32px;
}
.card .icon { width: 40px; height: 40px; margin-bottom: 22px; color: var(--teal); }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); }
.card p:last-child { margin-bottom: 0; }

/* plain two-column prose block */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split .visual { display: flex; justify-content: center; }
.split .visual svg { width: 100%; height: auto; }

/* ---------- Capability table (NO progress bars) ---------- */
.captable { width: 100%; border-collapse: collapse; font-size: .98rem; }
.captable thead th {
  text-align: left; font-family: var(--mono); text-transform: uppercase;
  letter-spacing: .1em; font-size: .68rem; font-weight: 500; color: var(--muted);
  padding: 0 18px 14px 0; border-bottom: 1px solid var(--ink);
}
.captable thead th.stages { text-align: left; }
.captable tbody td { padding: 22px 18px 22px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.captable .c-name { font-family: var(--serif); font-size: 1.18rem; font-weight: 560; color: var(--ink); }
.captable .c-name small { display: block; font-family: var(--sans); font-weight: 400; font-size: .86rem; color: var(--muted); margin-top: 4px; }
.captable .c-desc { color: var(--muted); max-width: 32ch; }
.stage-tags { display: flex; flex-wrap: wrap; gap: 14px; }
.stage-tags .st {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em;
  font-size: .64rem; color: var(--muted); display: inline-flex; align-items: center; gap: .5em;
}
.stage-tags .st .mk { width: 8px; height: 8px; border: 1.5px solid var(--muted); display: inline-block; }
.stage-tags .st.on { color: var(--ink); font-weight: 600; }
.stage-tags .st.on .mk { background: var(--teal); border-color: var(--teal); }

/* ---------- Team ---------- */
.people { display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.person { padding: 0 0 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.person .portrait {
  width: 100%; aspect-ratio: 1/1;
  background: var(--panel); border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden; margin-bottom: 20px;
}
.person .portrait svg { width: 70%; height: auto; color: #b9d3cd; }
.person .ptext { padding: 0 24px; }
.person h3 { font-size: 1.12rem; margin-bottom: .12em; }
.person .role { font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--teal-600); font-size: .68rem; font-weight: 500; margin-bottom: .7em; }
.person p { font-size: .92rem; color: var(--muted); margin: 0; }

.advisors { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.advisors li { padding: 24px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; }
.advisors strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 560; color: var(--ink); }
.advisors span { color: var(--muted); }

/* ---------- News ---------- */
.news-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.news-item { display: grid; grid-template-columns: 160px 1fr; gap: 40px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.news-item time { font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--teal-600); font-size: .74rem; }
.news-item h3 { margin-bottom: .35em; font-size: 1.5rem; max-width: 30ch; }
.news-item p { margin-bottom: .7em; color: var(--muted); max-width: 70ch; }

.news-cards { display: grid; grid-template-columns: repeat(3,1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.news-card { padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.news-card time { font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--teal-600); font-size: .72rem; }
.news-card h3 { font-size: 1.22rem; margin: .6em 0 .4em; }
.news-card p { font-size: .94rem; color: var(--muted); }

/* ---------- Careers ---------- */
.roles { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.roles li { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.roles .role-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 560; color: var(--ink); }
.roles .role-loc { font-family: var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-size: .72rem; margin-top: .35em; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); margin-bottom: 0; }
.contact-card { padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-card h3 { font-size: 1.1rem; }
.contact-card a { font-weight: 600; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; font-size: .68rem; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem;
  padding: .85em .9em;
  border: 1px solid var(--line); border-radius: 0;
  background: var(--bg-pure); color: var(--ink);
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}
.field textarea { resize: vertical; min-height: 150px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 16px; }
.form-success {
  display: none;
  background: var(--panel);
  border-left: 3px solid var(--teal);
  color: var(--ink);
  padding: 18px 20px; font-weight: 500; margin-bottom: 24px;
}
.form-success.show { display: block; }
.info-block { border: 1px solid var(--line); padding: 28px; }
.info-block + .info-block { margin-top: 24px; }
.info-block.flush { padding: 0; overflow: hidden; }

/* ---------- CTA strip ---------- */
.cta { border-top: 1px solid var(--line); }
.cta .container { padding-top: 0; padding-bottom: 0; }
.cta-strip { background: var(--ink); padding: clamp(48px, 7vw, 80px) clamp(32px, 6vw, 72px); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-strip h2 { color: #fff; margin: 0 0 .25em; max-width: 18ch; }
.cta-strip p { color: rgba(255,255,255,.78); margin: 0; max-width: 50ch; }
.cta-strip .cta-strip-text { position: relative; z-index: 1; max-width: 640px; }
.cta-strip .btn { position: relative; z-index: 1; }
.cta-strip .btn-light { background: var(--teal); color: #fff; }
.cta-strip .btn-light:hover { background: #fff; color: var(--ink); }
.cta-deco { position: absolute; right: -30px; top: 50%; transform: translateY(-50%); opacity: .14; width: 300px; height: auto; color: var(--mint); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 80px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-grid .brand { color: #fff; margin-bottom: 18px; }
.footer-grid .brand span strong { color: var(--mint); }
.site-footer h4 { font-family: var(--mono); color: #fff; font-size: .72rem; font-weight: 500; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,.62); font-size: .94rem; }
.site-footer address { font-style: normal; color: rgba(255,255,255,.62); font-size: .94rem; line-height: 1.6; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(255,255,255,.55); }

/* ---------- Page hero (interior) ---------- */
.page-hero { border-bottom: 1px solid var(--line); }
.page-hero .container { padding-top: clamp(56px, 8vh, 96px); padding-bottom: clamp(40px, 6vh, 64px); display: grid; grid-template-columns: 240px 1fr; gap: 56px; }
.page-hero .ph-label .num { font-family: var(--mono); font-size: .82rem; letter-spacing: .06em; color: var(--teal-600); display: block; }
.page-hero h1 { margin-bottom: .3em; max-width: 16ch; }
.page-hero .lead { margin-bottom: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .nav-overlay { transition: opacity .01s; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .editorial .container, .page-hero .container { grid-template-columns: 1fr; gap: 28px; }
  .sec-label { position: static; }
  .sec-label .num { display: inline; margin-right: 1em; margin-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .news-cards { grid-template-columns: 1fr 1fr; }
  .people { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta-desktop { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .editorial .container { padding-top: 60px; padding-bottom: 60px; }
  .grid-3, .grid-2, .news-cards, .contact-cards, .people, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-item { grid-template-columns: 1fr; gap: 10px; }
  .advisors li { grid-template-columns: 1fr; gap: 6px; }
  .roles li { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-statbar .stat { flex-basis: 100%; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-statbar .stat:last-child { border-bottom: 0; }

  /* capability table -> stacked */
  .captable, .captable tbody, .captable tr, .captable td { display: block; width: 100%; }
  .captable thead { display: none; }
  .captable tbody tr { border-bottom: 1px solid var(--line); padding: 22px 0; }
  .captable tbody td { border: 0; padding: 4px 0; }
  .captable .c-desc { max-width: none; }
}
