/* ═══════ App6 — Navigateur RE2020 ═══════ */

:root {
  --re-text: #1e293b;
  --re-text-soft: #475569;
  --re-muted: #64748b;
  --re-border: #e2e8f0;
  --re-bg: #fafaf7;
  --re-bg-soft: #f4f3ee;
  --re-accent: #c4704b;
  --re-accent-soft: #fef7f4;
  --re-primary: #2a4858;
  --re-primary-hover: #16333f;
  --re-error: #b91c1c;
  --re-ok: #047857;
}

/* ── Layout ── */

.re { max-width: 1120px; margin: 0 auto; padding: 1.5rem 1.25rem 4rem; min-height: calc(100vh - 120px); color: var(--re-text); }
.re-graph-main { max-width: none; padding: 0; display: grid; grid-template-columns: 260px 1fr; gap: 0; min-height: calc(100vh - 120px); }

/* ── Assistant hero ── */

.re-assistant { padding: 1.25rem 0 2rem; border-bottom: 1px solid var(--re-border); margin-bottom: 2rem; }
.re-assistant-title { font-size: 1.5rem; font-weight: 700; margin: 0 0 .4rem; letter-spacing: -0.01em; }
.re-assistant-sub { color: var(--re-muted); font-size: .92rem; margin: 0 0 1.25rem; }

.re-assistant-form { display: flex; flex-direction: column; gap: .65rem; }
.re-assistant-field { position: relative; }
.re-assistant-input {
  width: 100%; padding: .85rem 1rem; font-size: 1rem; line-height: 1.4;
  border: 2px solid var(--re-border); border-radius: 12px; background: #fff; color: var(--re-text);
  resize: vertical; min-height: 56px; box-sizing: border-box;
  font-family: inherit; transition: border-color .15s;
}
.re-assistant-input:focus { outline: none; border-color: var(--re-accent); box-shadow: 0 0 0 3px rgba(196,112,75,.12); }
.re-assistant-counter { position: absolute; right: .6rem; bottom: .4rem; font-size: .72rem; color: var(--re-muted); }
.re-counter-warn { color: var(--re-error); font-weight: 600; }

.re-assistant-actions { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.re-assistant-hint { font-size: .78rem; color: var(--re-muted); }
.re-assistant-spinner { display: none; width: 18px; height: 18px; border: 2px solid var(--re-border); border-top-color: var(--re-accent); border-radius: 50%; animation: re-spin .6s linear infinite; }
.htmx-request .re-assistant-spinner { display: inline-block; }
@keyframes re-spin { to { transform: rotate(360deg); } }

/* ── Buttons ── */

.re-btn-primary {
  background: var(--re-primary); color: #fff; border: none; border-radius: 10px;
  padding: .6rem 1.1rem; font-size: .92rem; font-weight: 600; cursor: pointer;
  transition: background .15s;
}
.re-btn-primary:hover:not(:disabled) { background: var(--re-primary-hover); }
.re-btn-primary:disabled { opacity: .55; cursor: not-allowed; }

.re-btn-ghost {
  background: #fff; color: var(--re-text); border: 1px solid var(--re-border); border-radius: 10px;
  padding: .55rem 1rem; font-size: .88rem; font-weight: 500; cursor: pointer;
  transition: all .15s;
}
.re-btn-ghost:hover:not(:disabled) { border-color: var(--re-accent); color: var(--re-accent); background: var(--re-accent-soft); }
.re-btn-ghost:disabled { opacity: .45; cursor: not-allowed; }
.re-btn-ghost.re-btn-active { border-color: var(--re-accent); color: var(--re-accent); }

/* ── Response (sources + synthesis) ── */

.re-response { margin-top: 1.5rem; display: grid; gap: 1.25rem; }
.re-response-title { font-size: 1rem; font-weight: 600; color: var(--re-primary); margin: 0 0 .5rem; letter-spacing: -0.005em; }

.re-synthesis {
  background: #fff;
  border: 1px solid var(--re-border);
  border-left: 3px solid var(--re-primary);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.re-synthesis-body {
  min-height: 1.6em;
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--re-text);
  max-width: 680px;
  word-wrap: break-word;
}
/* Committed stream = stable, parsed, KaTeX-rendered, append-only. */
.re-stream-committed { display: block; }
/* In-flight tail = raw text updated on every token; pre-wrap preserves
   paragraph breaks while a block is still streaming. */
.re-stream-inflight { display: block; white-space: pre-wrap; color: var(--re-text); }
.re-synthesis-body p { margin: 0 0 .85rem; }
.re-synthesis-body p:last-child { margin-bottom: 0; }
.re-synthesis-body strong { color: var(--re-primary); font-weight: 600; }
.re-synthesis-body ul, .re-synthesis-body ol { margin: .5rem 0 .85rem; padding-left: 1.4rem; }
.re-synthesis-body li { margin: .2rem 0; }
.re-synthesis-spinner { display: inline-block; width: 14px; height: 14px; vertical-align: middle; border: 2px solid var(--re-border); border-top-color: var(--re-accent); border-radius: 50%; animation: re-spin .6s linear infinite; margin-right: .5rem; }
.re-synthesis-hint { color: var(--re-muted); font-size: .88rem; }

/* Citations — inline pill-like chips, clickable, monospace */
.re-citation {
  display: inline-block;
  padding: .05rem .35rem;
  margin: 0 .08rem;
  background: var(--re-accent-soft);
  color: var(--re-accent);
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .82em;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: all .12s;
  white-space: nowrap;
}
.re-citation:hover {
  border-color: var(--re-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── KaTeX math blocks — clean, PDF-like, no panel chrome ── */

.re-synthesis-body .katex { color: var(--re-text); }
.re-synthesis-body .katex-display {
  margin: 1.5rem 0;
  padding: 0;
  background: none;
  border: none;
  text-align: center;
  overflow-x: auto;   /* narrow-screen safety only */
  overflow-y: hidden;
  font-size: 1.15em;
}
.re-synthesis-body .katex-display > .katex { display: inline-block; white-space: nowrap; }
.re-synthesis-body .katex-error { color: var(--re-error); font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: .9em; }

.re-sources-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .6rem; }
.re-source-card {
  display: flex; flex-direction: column; gap: .35rem;
  padding: .75rem .85rem; background: #fff; border: 1px solid var(--re-border); border-radius: 10px;
  text-decoration: none; color: inherit; transition: all .15s;
}
.re-source-card:hover { border-color: var(--re-accent); background: var(--re-accent-soft); }
.re-source-title { font-size: .85rem; font-weight: 500; line-height: 1.3; color: var(--re-text); }
.re-source-badges { display: flex; flex-wrap: wrap; gap: .25rem; }

.re-rate-hint { font-size: .76rem; color: var(--re-muted); margin: 0; text-align: right; }
.re-rate-limit { padding: 1rem; background: #fef3c7; border: 1px solid #fcd34d; border-radius: 10px; color: #78350f; font-size: .9rem; }
.re-assistant-empty { padding: 1rem; background: var(--re-bg-soft); border-radius: 10px; color: var(--re-muted); }

/* ── Search zone ── */

.re-search-zone { margin-top: 2rem; }
.re-search-form { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.re-search-input {
  flex: 1 1 280px; padding: .55rem .85rem; border: 1px solid var(--re-border); border-radius: 8px;
  font-size: .88rem; background: #fff; color: var(--re-text);
}
.re-search-input:focus { outline: none; border-color: var(--re-accent); }
.re-search-select { padding: .55rem .75rem; border: 1px solid var(--re-border); border-radius: 8px; font-size: .85rem; background: #fff; color: var(--re-text); }
.re-search-stats { font-size: .86rem; color: var(--re-muted); margin: 0 0 1rem; }
.re-search-filters { font-size: .82rem; color: var(--re-muted); margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }

/* ── Clusters grid ── */

.re-clusters { padding-top: 1rem; }
.re-clusters-title { font-size: 1.1rem; font-weight: 600; color: var(--re-text-soft); margin: 0 0 1rem; letter-spacing: -0.005em; }
.re-clusters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; }
.re-cluster-card {
  display: flex; flex-direction: column; gap: .45rem;
  padding: .9rem 1rem; background: #fff; border: 1px solid var(--re-border); border-left: 4px solid var(--re-muted);
  border-radius: 10px; text-decoration: none; color: inherit; transition: all .15s;
}
.re-cluster-card:hover { border-color: var(--re-accent); background: var(--re-accent-soft); }
.re-cluster-name { font-size: .92rem; font-weight: 600; color: var(--re-text); }
.re-cluster-stats { display: flex; align-items: baseline; gap: .35rem; font-size: .78rem; color: var(--re-muted); flex-wrap: wrap; }
.re-cluster-stats strong { color: var(--re-text); font-size: .95rem; }
.re-cluster-sub { color: var(--re-muted); }
.re-cluster-dot { width: 3px; height: 3px; background: var(--re-border); border-radius: 50%; display: inline-block; margin: 0 .25rem; }

.re-cluster-Ic_construction { border-left-color: #E63946; }
.re-cluster-Bbio { border-left-color: #457B9D; }
.re-cluster-Cep { border-left-color: #F4A261; }
.re-cluster-DH { border-left-color: #E9C46A; }
.re-cluster-StockC { border-left-color: #2A9D8F; }
.re-cluster-Dates_evol { border-left-color: #264653; }
.re-cluster-ACV_methode { border-left-color: #6A4C93; }
.re-cluster-Fluides_frigo { border-left-color: #1982C4; }
.re-cluster-Labels { border-left-color: #8AC926; }
.re-cluster-Ventilation { border-left-color: #FF595E; }
.re-cluster-Etancheite { border-left-color: #FFCA3A; }
.re-cluster-Cadre_general { border-left-color: #8D99AE; }
.re-cluster-Energie_systemes { border-left-color: #06D6A0; }

.re-clusters-footer { margin-top: 1.25rem; text-align: center; font-size: .85rem; }
.re-link { color: var(--re-accent); text-decoration: none; font-weight: 500; }
.re-link:hover { text-decoration: underline; }

/* ── Crumb ── */

.re-crumb { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; margin-bottom: 1rem; font-size: .84rem; }
.re-crumb-link { color: var(--re-accent); text-decoration: none; cursor: pointer; }
.re-crumb-link:hover { text-decoration: underline; }
.re-crumb-sep { color: #cbd5e1; }
.re-crumb-current { color: var(--re-muted); }

/* ── List (cluster + search) ── */

.re-list-header { display: flex; align-items: baseline; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.re-list-title { font-size: 1.4rem; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.re-list-stats { font-size: .88rem; color: var(--re-muted); margin: 0; }
.re-list-stats strong { color: var(--re-text); }
.re-list-actions { margin-left: auto; }
.re-dot { width: 3px; height: 3px; background: var(--re-border); border-radius: 50%; display: inline-block; margin: 0 .4rem; vertical-align: middle; }

.re-list-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.re-list-item { display: flex; gap: .6rem; padding: .65rem .85rem; background: #fff; border: 1px solid var(--re-border); border-radius: 8px; transition: border-color .15s; }
.re-list-item:hover { border-color: var(--re-accent); }
.re-item-secondary { background: var(--re-bg); }
.re-list-check { display: flex; align-items: center; padding-top: .2rem; }
.re-list-link { flex: 1; display: flex; flex-direction: column; gap: .35rem; text-decoration: none; color: inherit; }
.re-list-item-title { font-size: .92rem; font-weight: 500; color: var(--re-text); }
.re-list-item-badges { display: flex; flex-wrap: wrap; gap: .3rem; }
.re-list-snippet { font-size: .82rem; color: var(--re-muted); line-height: 1.45; margin: .2rem 0 0; }
.re-list-connections { font-size: .78rem; color: var(--re-muted); margin: .3rem 0 0; display: flex; flex-wrap: wrap; gap: .3rem; align-items: center; }
.re-list-connections-label { font-weight: 500; }
.re-list-connection-chip { padding: .15rem .45rem; background: var(--re-bg-soft); border-radius: 4px; font-size: .74rem; color: var(--re-text-soft); }

/* ── Badges ── */

.re-badge { display: inline-block; padding: .15rem .45rem; font-size: .7rem; font-weight: 600; border-radius: 4px; font-family: 'IBM Plex Mono', ui-monospace, monospace; letter-spacing: .01em; background: #f1f5f9; color: #475569; }
.re-badge-decret { background: #dbeafe; color: #1e40af; }
.re-badge-arrete { background: #e0e7ff; color: #3730a3; }
.re-badge-faq { background: #fef3c7; color: #854d0e; }
.re-badge-label { background: #dcfce7; color: #166534; }
.re-badge-loi { background: #ede9fe; color: #5b21b6; }
.re-badge-prio-1 { background: #fecaca; color: #991b1b; }
.re-badge-prio-2 { background: #fed7aa; color: #9a3412; }
.re-badge-prio-3 { background: #e5e7eb; color: #4b5563; }
.re-badge-hub { background: #c4704b; color: #fff; }
.re-badge-temp { background: #ecfccb; color: #3f6212; }
.re-badge-type { background: #e0f2fe; color: #075985; }
.re-badge-cluster { background: #f3e8ff; color: #6b21a8; }
.re-badge-filter { background: var(--re-accent-soft); color: var(--re-accent); }

/* ── Chunk detail ── */

.re-chunk { }
.re-chunk-header { margin-bottom: 1.5rem; }
.re-chunk-title { font-size: 1.6rem; font-weight: 700; margin: 0 0 .65rem; letter-spacing: -0.015em; line-height: 1.2; }
.re-chunk-badges { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .5rem; }
.re-chunk-source { font-size: .86rem; color: var(--re-muted); margin: 0; }

.re-chunk-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.re-chunk-body { min-width: 0; }
.re-chunk-content { font-size: .96rem; line-height: 1.65; color: var(--re-text); }
.re-chunk-content h1, .re-chunk-content h2, .re-chunk-content h3 { font-weight: 600; margin-top: 1.5rem; }
.re-chunk-content p { margin: .6rem 0; }
.re-chunk-content ul, .re-chunk-content ol { padding-left: 1.5rem; }
.re-chunk-content code { background: var(--re-bg-soft); padding: .1rem .3rem; border-radius: 3px; font-size: .9em; }
.re-chunk-content pre { background: var(--re-bg-soft); padding: .75rem; border-radius: 6px; overflow-x: auto; font-size: .84rem; }
.re-chunk-content table { border-collapse: collapse; margin: 1rem 0; font-size: .88rem; }
.re-chunk-content th, .re-chunk-content td { border: 1px solid var(--re-border); padding: .4rem .6rem; }
.re-chunk-content th { background: var(--re-bg-soft); font-weight: 600; }

.re-connections { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--re-border); }
.re-connections-title { font-size: 1rem; font-weight: 600; color: var(--re-primary); margin: 0 0 1rem; }
.re-connection-section { margin-bottom: .5rem; border: 1px solid var(--re-border); border-radius: 8px; background: #fff; }
.re-connection-section summary { padding: .55rem .85rem; cursor: pointer; font-size: .86rem; font-weight: 500; display: flex; justify-content: space-between; align-items: center; }
.re-connection-section[open] summary { border-bottom: 1px solid var(--re-border); background: var(--re-bg-soft); }
.re-connection-label { color: var(--re-text-soft); }
.re-connection-count { font-size: .72rem; color: var(--re-muted); font-weight: 600; }
.re-connection-list { list-style: none; padding: .4rem .6rem; margin: 0; display: flex; flex-direction: column; gap: .25rem; }
.re-connection-link { display: flex; justify-content: space-between; align-items: center; gap: .6rem; padding: .4rem .5rem; border-radius: 5px; text-decoration: none; color: inherit; font-size: .86rem; }
.re-connection-link:hover { background: var(--re-accent-soft); color: var(--re-accent); }
.re-connection-title { flex: 1; }

.re-chunk-actions { margin-top: 1.5rem; }
.re-export-form { display: flex; gap: .75rem; align-items: center; }
.re-export-status { font-size: .82rem; color: var(--re-muted); }

.re-chunk-aside { }
.re-aside-title { font-size: .88rem; font-weight: 600; color: var(--re-muted); margin: 0 0 .6rem; text-transform: uppercase; letter-spacing: .05em; }

/* ── Graph ── */

.re-graph-wrap { position: relative; width: 100%; height: 400px; background: var(--re-bg); border: 1px solid var(--re-border); border-radius: 10px; overflow: hidden; }
.re-graph-canvas { display: block; width: 100%; height: 100%; cursor: grab; }
.re-graph-canvas:active { cursor: grabbing; }
.re-graph-tooltip { position: absolute; pointer-events: none; background: rgba(30,41,59,.95); color: #fff; padding: .35rem .6rem; border-radius: 6px; font-size: .78rem; z-index: 10; max-width: 280px; word-wrap: break-word; }

.re-graph-main .re-graph-wrap { height: calc(100vh - 64px); border-radius: 0; border: none; border-left: 1px solid var(--re-border); }
.re-graph-side { padding: 1.25rem 1rem; background: #fff; border-right: 1px solid var(--re-border); overflow-y: auto; }
.re-graph-title { font-size: .86rem; font-weight: 600; color: var(--re-muted); margin: 0 0 .8rem; text-transform: uppercase; letter-spacing: .05em; }
.re-graph-filters { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.re-cluster-filter { display: flex; align-items: center; gap: .5rem; font-size: .84rem; cursor: pointer; padding: .2rem 0; color: var(--re-text-soft); }
.re-cluster-swatch { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.re-graph-hint { font-size: .72rem; color: var(--re-muted); margin: .75rem 0 0; line-height: 1.4; }

/* ── Error ── */

.re-error { color: var(--re-error); font-size: .88rem; }
.re-empty { padding: 2rem 1rem; background: var(--re-bg-soft); border-radius: 10px; text-align: center; color: var(--re-muted); }
.re-empty-hint { font-size: .82rem; margin-top: .5rem; }
.re-error-page { padding: 3rem 1rem; text-align: center; }
.re-error-title { font-size: 1.4rem; color: var(--re-text); margin: 0 0 1rem; }

/* ── Primary navigation (header actions) ── */

.re-nav { display: flex; align-items: center; gap: .15rem; }
.re-nav-link {
  display: inline-flex; align-items: center;
  padding: .4rem .75rem;
  font-size: .88rem; font-weight: 500;
  color: var(--re-text-soft);
  text-decoration: none;
  border-radius: 8px;
  transition: all .12s;
}
.re-nav-link:hover { color: var(--re-accent); background: var(--re-accent-soft); }
.re-nav-current { color: var(--re-primary); font-weight: 600; }
.re-nav-graph {
  background: var(--re-primary);
  color: #fff;
  padding: .42rem .85rem;
  margin-left: .35rem;
  font-weight: 600;
  gap: .4rem;
}
.re-nav-graph::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='4' r='2'/%3E%3Ccircle cx='4' cy='14' r='2'/%3E%3Ccircle cx='20' cy='14' r='2'/%3E%3Ccircle cx='9' cy='20' r='2'/%3E%3Ccircle cx='15' cy='20' r='2'/%3E%3Cline x1='12' y1='6' x2='5' y2='12'/%3E%3Cline x1='12' y1='6' x2='19' y2='12'/%3E%3Cline x1='5' y1='16' x2='8' y2='18'/%3E%3Cline x1='19' y1='16' x2='16' y2='18'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.re-nav-graph:hover { background: var(--re-primary-hover); color: #fff; }
.re-nav-graph.re-nav-current { background: var(--re-accent); }
.re-nav-graph.re-nav-current:hover { background: var(--re-accent); filter: brightness(.95); }

/* ── Graph CTA card (home page) ── */

.re-graph-cta {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.1rem 1.35rem;
  margin: 0 0 1.75rem;
  background: #fff;
  border: 1px solid var(--re-border);
  border-left: 4px solid var(--re-accent);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .05), 0 1px 2px rgba(15, 23, 42, .03);
  text-decoration: none;
  color: inherit;
  transition: all .18s;
}
.re-graph-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196, 112, 75, .14), 0 2px 4px rgba(15, 23, 42, .05);
  border-color: var(--re-accent);
}
.re-graph-cta-icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--re-border);
  border-radius: 12px;
  color: var(--re-accent);
}
.re-graph-cta-icon svg { width: 36px; height: 36px; }
.re-graph-cta-text { flex: 1; display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.re-graph-cta-title {
  font-size: 1rem; font-weight: 600; color: var(--re-text); letter-spacing: -0.005em;
}
.re-graph-cta-sub {
  font-size: .85rem; color: var(--re-muted); line-height: 1.4;
}
.re-graph-cta-arrow {
  flex: 0 0 auto;
  font-size: 1.3rem; color: var(--re-accent); font-weight: 600;
  transition: transform .18s;
}
.re-graph-cta:hover .re-graph-cta-arrow { transform: translateX(3px); }

/* ── Responsive ── */

@media (max-width: 1023px) {
  .re-clusters-grid { grid-template-columns: repeat(2, 1fr); }
  .re-chunk-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .re-graph-main { grid-template-columns: 1fr; }
  .re-graph-side { border-right: none; border-bottom: 1px solid var(--re-border); }
  .re-graph-main .re-graph-wrap { height: 60vh; border-left: none; }
}

@media (max-width: 767px) {
  .re { padding: 1rem .75rem 3rem; }
  .re-clusters-grid { grid-template-columns: 1fr; }
  .re-assistant-title { font-size: 1.25rem; }
  .re-chunk-title { font-size: 1.3rem; }
  .re-sources-list { grid-template-columns: 1fr; }
  .re-graph-wrap { height: 280px; }
  .re-graph-main .re-graph-wrap { height: 50vh; }
  .re-search-form { flex-direction: column; align-items: stretch; }
  .re-search-form > * { width: 100%; }
  .re-nav-link { padding: .35rem .55rem; font-size: .82rem; }
  .re-graph-cta { flex-wrap: wrap; padding: 1rem; gap: .8rem; }
  .re-graph-cta-icon { width: 44px; height: 44px; }
  .re-graph-cta-icon svg { width: 28px; height: 28px; }
  .re-graph-cta-title { font-size: .95rem; }
  .re-graph-cta-sub { font-size: .8rem; }
  .re-synthesis { padding: 1.1rem 1.15rem; }
  .re-synthesis-body { font-size: .95rem; }
}
