@charset "UTF-8";
/* ==========================================================================
   Outils gratuits (TOOLS-BRIEF.md) — composants partagés (ToolHero,
   questionnaire, résultats). Porté depuis
   chridubois-refonte/design-prototypes/css/tools.css. Chargé EN PLUS de
   refonte.css, uniquement sur les pages /outils/* (via yield :extra_head
   dans layouts/refonte.html.erb) — les tokens (--good, --warn, --danger,
   --radius-*, etc.) sont déjà définis par refonte.css, chargé avant.
   ========================================================================== */
/* ---------- tool hero ---------- */
/* line 11, app/assets/stylesheets/tools.scss */
.tool-hero {
  padding: 44px 0 0;
}

/* line 12, app/assets/stylesheets/tools.scss */
.tool-hero h1 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 16px;
  max-width: 36ch;
  text-wrap: balance;
}

/* line 13, app/assets/stylesheets/tools.scss */
.tool-hero .lede {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 62ch;
  margin-bottom: 18px;
}

/* line 14, app/assets/stylesheets/tools.scss */
.tool-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono",monospace;
  font-size: 12.5px;
  color: var(--ink-muted);
}

/* line 15, app/assets/stylesheets/tools.scss */
.tool-meta-row .dot {
  opacity: .5;
}

/* ---------- disclaimer ---------- */
/* line 18, app/assets/stylesheets/tools.scss */
.tool-disclaimer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius-s);
  padding: 12px 16px;
  margin-top: 20px;
  max-width: 62ch;
}

/* line 22, app/assets/stylesheets/tools.scss */
.tool-disclaimer svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

/* ---------- questionnaire shell ---------- */
/* line 25, app/assets/stylesheets/tools.scss */
.tool-app {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* line 29, app/assets/stylesheets/tools.scss */
.tool-progress-wrap {
  padding: 20px 32px 0;
}

/* line 30, app/assets/stylesheets/tools.scss */
.tool-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono",monospace;
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

/* line 34, app/assets/stylesheets/tools.scss */
.tool-progress-track {
  height: 5px;
  border-radius: 999px;
  background: var(--surface-2);
  overflow: hidden;
}

/* line 35, app/assets/stylesheets/tools.scss */
.tool-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width .25s ease;
  width: 0%;
}

/* line 37, app/assets/stylesheets/tools.scss */
.tool-step {
  padding: 36px 32px 32px;
}

/* line 38, app/assets/stylesheets/tools.scss */
.tool-question {
  margin-bottom: 28px;
}

/* line 39, app/assets/stylesheets/tools.scss */
.tool-question:last-child {
  margin-bottom: 0;
}

/* line 40, app/assets/stylesheets/tools.scss */
.tool-question h2 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
  text-wrap: balance;
}

/* line 41, app/assets/stylesheets/tools.scss */
.tool-question .q-hint {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

/* line 43, app/assets/stylesheets/tools.scss */
.choice-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* line 44, app/assets/stylesheets/tools.scss */
.choice-list.single-col {
  grid-template-columns: 1fr;
}

@media (max-width: 640px) {
  /* line 45, app/assets/stylesheets/tools.scss */
  .choice-list {
    grid-template-columns: 1fr;
  }
}

/* line 47, app/assets/stylesheets/tools.scss */
.choice-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color .15s ease,background .15s ease;
  background: var(--bg);
}

/* line 52, app/assets/stylesheets/tools.scss */
.choice-card:hover {
  border-color: var(--ink);
}

/* line 53, app/assets/stylesheets/tools.scss */
.choice-card input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

/* line 54, app/assets/stylesheets/tools.scss */
.choice-card .mark {
  flex: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--line);
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s ease,background .15s ease;
}

/* line 58, app/assets/stylesheets/tools.scss */
.choice-card.radio .mark {
  border-radius: 50%;
}

/* line 59, app/assets/stylesheets/tools.scss */
.choice-card.checkbox .mark {
  border-radius: 5px;
}

/* line 60, app/assets/stylesheets/tools.scss */
.choice-card .mark svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity .1s ease;
}

/* line 61, app/assets/stylesheets/tools.scss */
.choice-card .mark .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity .1s ease;
}

/* line 62, app/assets/stylesheets/tools.scss */
.choice-card input:checked ~ .mark {
  border-color: var(--accent);
  background: var(--accent);
}

/* line 63, app/assets/stylesheets/tools.scss */
.choice-card.radio input:checked ~ .mark {
  background: var(--bg);
}

/* line 64, app/assets/stylesheets/tools.scss */
.choice-card.radio input:checked ~ .mark .dot {
  opacity: 1;
}

/* line 65, app/assets/stylesheets/tools.scss */
.choice-card.checkbox input:checked ~ .mark svg {
  opacity: 1;
}

/* line 66, app/assets/stylesheets/tools.scss */
.choice-card input:checked ~ .label {
  color: var(--ink);
  font-weight: 600;
}

/* line 67, app/assets/stylesheets/tools.scss */
.choice-card input:focus-visible ~ .mark {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* line 68, app/assets/stylesheets/tools.scss */
.choice-card .label {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.4;
  padding-top: 1px;
}

/* line 70, app/assets/stylesheets/tools.scss */
.tool-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

/* line 74, app/assets/stylesheets/tools.scss */
.tool-nav .spacer {
  flex: 1;
}

/* line 75, app/assets/stylesheets/tools.scss */
.tool-restart {
  font-family: "JetBrains Mono",monospace;
  font-size: 12.5px;
  color: var(--ink-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* line 76, app/assets/stylesheets/tools.scss */
.tool-restart:hover {
  color: var(--ink);
}

/* ---------- result ---------- */
/* line 79, app/assets/stylesheets/tools.scss */
.tool-result {
  display: none;
  padding: 40px 32px;
}

/* line 80, app/assets/stylesheets/tools.scss */
.tool-result.visible {
  display: block;
}

/* line 81, app/assets/stylesheets/tools.scss */
.tool-app.done .tool-step, .tool-app.done .tool-nav, .tool-app.done .tool-progress-wrap {
  display: none;
}

/* line 83, app/assets/stylesheets/tools.scss */
.result-signal {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* line 84, app/assets/stylesheets/tools.scss */
.score-badge {
  font-family: "JetBrains Mono",monospace;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid;
}

/* line 88, app/assets/stylesheets/tools.scss */
.score-badge.level-low {
  color: var(--good);
  border-color: var(--good);
  background: var(--good-soft);
}

/* line 89, app/assets/stylesheets/tools.scss */
.score-badge.level-mid {
  color: var(--warn);
  border-color: var(--warn);
  background: var(--warn-soft);
}

/* line 90, app/assets/stylesheets/tools.scss */
.score-badge.level-high {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* line 91, app/assets/stylesheets/tools.scss */
.score-badge.level-danger {
  color: var(--danger);
  border-color: var(--danger);
  background: var(--danger-soft);
}

/* line 92, app/assets/stylesheets/tools.scss */
.score-sub {
  font-family: "JetBrains Mono",monospace;
  font-size: 13px;
  color: var(--ink-muted);
}

/* line 94, app/assets/stylesheets/tools.scss */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

/* line 95, app/assets/stylesheets/tools.scss */
.category-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 16px 18px;
}

/* line 96, app/assets/stylesheets/tools.scss */
.category-card .cat-name {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* line 97, app/assets/stylesheets/tools.scss */
.category-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono",monospace;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  border-radius: 999px;
  padding: 5px 11px;
}

/* line 101, app/assets/stylesheets/tools.scss */
.category-status.ok {
  color: var(--good);
  background: var(--good-soft);
}

/* line 102, app/assets/stylesheets/tools.scss */
.category-status.warn {
  color: var(--warn);
  background: var(--warn-soft);
}

/* line 103, app/assets/stylesheets/tools.scss */
.category-status.priority {
  color: var(--danger);
  background: var(--danger-soft);
}

/* line 104, app/assets/stylesheets/tools.scss */
.category-status.na {
  color: var(--ink-muted);
  background: var(--surface-2);
}

/* line 106, app/assets/stylesheets/tools.scss */
.reco-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0;
}

/* line 107, app/assets/stylesheets/tools.scss */
.reco-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

/* line 108, app/assets/stylesheets/tools.scss */
.reco-item:last-child {
  border-bottom: none;
}

/* line 109, app/assets/stylesheets/tools.scss */
.reco-item svg {
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 2px;
}

/* line 110, app/assets/stylesheets/tools.scss */
.reco-item.positive svg {
  color: var(--good);
}

/* line 111, app/assets/stylesheets/tools.scss */
.reco-item.warning svg {
  color: var(--warn);
}

/* line 112, app/assets/stylesheets/tools.scss */
.reco-item.priority svg {
  color: var(--danger);
}

/* line 114, app/assets/stylesheets/tools.scss */
.result-block {
  margin: 32px 0;
}

/* line 115, app/assets/stylesheets/tools.scss */
.result-block h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* line 117, app/assets/stylesheets/tools.scss */
.tool-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* line 119, app/assets/stylesheets/tools.scss */
.email-capture {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* line 122, app/assets/stylesheets/tools.scss */
.email-capture form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 440px;
  margin-top: 12px;
}

/* line 123, app/assets/stylesheets/tools.scss */
.email-capture input {
  flex: 1;
  min-width: 200px;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
}

/* line 124, app/assets/stylesheets/tools.scss */
.email-capture .confirm {
  display: none;
  color: var(--good);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 10px;
}

/* line 125, app/assets/stylesheets/tools.scss */
.email-capture.sent form {
  display: none;
}

/* line 126, app/assets/stylesheets/tools.scss */
.email-capture.sent .confirm {
  display: block;
}

/* ---------- code output ---------- */
/* line 129, app/assets/stylesheets/tools.scss */
.code-output {
  margin-top: 14px;
}

/* ---------- generator (tool 2) ---------- */
/* line 132, app/assets/stylesheets/tools.scss */
.gen-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  font-family: "JetBrains Mono",monospace;
  font-size: 12px;
  color: var(--ink-muted);
}

/* line 133, app/assets/stylesheets/tools.scss */
.gen-steps span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* line 134, app/assets/stylesheets/tools.scss */
.gen-steps span.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
  font-weight: 600;
}

/* line 135, app/assets/stylesheets/tools.scss */
.gen-steps span.done {
  color: var(--good);
  border-color: var(--good);
}

/* line 137, app/assets/stylesheets/tools.scss */
.plan-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}

/* line 138, app/assets/stylesheets/tools.scss */
table.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 760px;
}

/* line 139, app/assets/stylesheets/tools.scss */
table.plan-table th {
  text-align: left;
  font-family: "JetBrains Mono",monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-muted);
  background: var(--surface-2);
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

/* line 143, app/assets/stylesheets/tools.scss */
table.plan-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

/* line 144, app/assets/stylesheets/tools.scss */
table.plan-table tr:last-child td {
  border-bottom: none;
}

/* line 145, app/assets/stylesheets/tools.scss */
table.plan-table tr.disabled td {
  opacity: .4;
}

/* line 146, app/assets/stylesheets/tools.scss */
table.plan-table tr.expandable {
  cursor: pointer;
}

/* line 147, app/assets/stylesheets/tools.scss */
table.plan-table tr.expandable:hover {
  background: var(--surface-2);
}

/* line 148, app/assets/stylesheets/tools.scss */
table.plan-table code.inline {
  white-space: nowrap;
}

/* line 149, app/assets/stylesheets/tools.scss */
.plan-priority {
  font-family: "JetBrains Mono",monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}

/* line 150, app/assets/stylesheets/tools.scss */
.plan-priority.high {
  color: var(--danger);
  background: var(--danger-soft);
}

/* line 151, app/assets/stylesheets/tools.scss */
.plan-priority.medium {
  color: var(--warn);
  background: var(--warn-soft);
}

/* line 152, app/assets/stylesheets/tools.scss */
.plan-priority.low {
  color: var(--ink-muted);
  background: var(--surface-2);
}

/* line 154, app/assets/stylesheets/tools.scss */
.event-detail {
  display: none;
  background: var(--surface-2);
}

/* line 155, app/assets/stylesheets/tools.scss */
.event-detail.open {
  display: table-row;
}

/* line 156, app/assets/stylesheets/tools.scss */
.event-detail td {
  padding: 22px 24px;
}

/* line 157, app/assets/stylesheets/tools.scss */
.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 18px;
}

@media (max-width: 760px) {
  /* line 158, app/assets/stylesheets/tools.scss */
  .event-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* line 159, app/assets/stylesheets/tools.scss */
.event-detail-grid h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-muted);
  font-family: "JetBrains Mono",monospace;
  margin-bottom: 8px;
}

/* line 160, app/assets/stylesheets/tools.scss */
.event-detail-grid ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 161, app/assets/stylesheets/tools.scss */
.event-detail-grid li {
  font-size: 13.5px;
}

/* line 163, app/assets/stylesheets/tools.scss */
.export-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

/* line 164, app/assets/stylesheets/tools.scss */
.export-actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-s);
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color .15s ease;
}

/* line 169, app/assets/stylesheets/tools.scss */
.export-actions button:hover {
  border-color: var(--ink);
}

/* line 170, app/assets/stylesheets/tools.scss */
.export-actions button.copied {
  border-color: var(--good);
  color: var(--good);
}

/* line 172, app/assets/stylesheets/tools.scss */
.add-event-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  margin-top: 18px;
  align-items: end;
}

@media (max-width: 760px) {
  /* line 173, app/assets/stylesheets/tools.scss */
  .add-event-form {
    grid-template-columns: 1fr;
  }
}

/* line 174, app/assets/stylesheets/tools.scss */
.add-event-form label {
  display: block;
  font-family: "JetBrains Mono",monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

/* line 175, app/assets/stylesheets/tools.scss */
.add-event-form input {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  background: var(--bg);
  color: var(--ink);
}

/* line 177, app/assets/stylesheets/tools.scss */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  flex: none;
}

/* line 178, app/assets/stylesheets/tools.scss */
.toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

/* line 179, app/assets/stylesheets/tools.scss */
.toggle-switch .track {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 999px;
  transition: background .15s ease;
}

/* line 180, app/assets/stylesheets/tools.scss */
.toggle-switch .thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .15s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* line 181, app/assets/stylesheets/tools.scss */
.toggle-switch input:checked ~ .track {
  background: var(--accent);
}

/* line 182, app/assets/stylesheets/tools.scss */
.toggle-switch input:checked ~ .thumb {
  transform: translateX(16px);
}

/* line 183, app/assets/stylesheets/tools.scss */
.toggle-switch input:focus-visible ~ .track {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- sr-only live region ---------- */
/* line 186, app/assets/stylesheets/tools.scss */
.tool-live-region {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 760px) {
  /* line 189, app/assets/stylesheets/tools.scss */
  .tool-progress-wrap {
    padding: 16px 20px 0;
  }
  /* line 190, app/assets/stylesheets/tools.scss */
  .tool-step {
    padding: 26px 20px 24px;
  }
  /* line 191, app/assets/stylesheets/tools.scss */
  .tool-nav {
    padding: 16px 20px;
  }
  /* line 192, app/assets/stylesheets/tools.scss */
  .tool-result {
    padding: 28px 20px;
  }
}

/* Précédent/Recommencer/Suivant en une seule ligne nowrap débordait de
   .tool-nav (masqué par overflow:hidden sur .tool-app, donc "Suivant"
   se retrouvait coupé en "Suiv" sans scrollbar visible pour l'alerter —
   repéré sur /outils/diagnostic-server-side, retour du 2026-09-14).
   "Recommencer" (le moins prioritaire des 3) passe sur sa propre ligne,
   centré, sous Précédent/Suivant qui gardent l'alignement space-between. */
@media (max-width: 480px) {
  /* line 202, app/assets/stylesheets/tools.scss */
  .tool-nav {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  /* line 203, app/assets/stylesheets/tools.scss */
  .tool-nav .spacer {
    display: none;
  }
  /* line 204, app/assets/stylesheets/tools.scss */
  .tool-nav .btn-secondary {
    order: 1;
  }
  /* line 205, app/assets/stylesheets/tools.scss */
  .tool-nav .btn {
    order: 2;
  }
  /* line 206, app/assets/stylesheets/tools.scss */
  .tool-nav .tool-restart {
    order: 3;
    flex: 0 0 100%;
    text-align: center;
  }
}

/* ---------- listing page (/outils) ---------- */
/* line 210, app/assets/stylesheets/tools.scss */
.outils-hero {
  padding: 48px 0;
}

/* line 211, app/assets/stylesheets/tools.scss */
.outils-hero h1 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 18px;
  max-width: 36ch;
  text-wrap: balance;
}

/* line 212, app/assets/stylesheets/tools.scss */
.outils-hero .lede {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 60ch;
}

/* line 214, app/assets/stylesheets/tools.scss */
.tool-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease,transform .15s ease;
  background: var(--bg);
}

/* line 218, app/assets/stylesheets/tools.scss */
.tool-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* line 219, app/assets/stylesheets/tools.scss */
.tool-card .type {
  font-family: "JetBrains Mono",monospace;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* line 220, app/assets/stylesheets/tools.scss */
.tool-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

/* line 221, app/assets/stylesheets/tools.scss */
.tool-card p {
  font-size: 14.5px;
  color: var(--ink-muted);
}

/* line 222, app/assets/stylesheets/tools.scss */
.tool-card .cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent);
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 224, app/assets/stylesheets/tools.scss */
.tool-card.soon {
  cursor: default;
  opacity: .6;
}

/* line 225, app/assets/stylesheets/tools.scss */
.tool-card.soon:hover {
  border-color: var(--line);
  transform: none;
}

/* line 226, app/assets/stylesheets/tools.scss */
.tool-card.soon .type {
  color: var(--ink-muted);
}

/* line 227, app/assets/stylesheets/tools.scss */
.tool-card.soon .cta {
  color: var(--ink-muted);
}

/* tool-page-wrap : colonne resserrée pour la lisibilité du questionnaire,
   utilisée par-dessus .wrap sur les pages /outils/diagnostic-*. */
/* line 231, app/assets/stylesheets/tools.scss */
.tool-page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}
