/* ═══════════════════════════════════════════════════════════════════
 * Intl Mode — masquage conditionnel Québec / International
 *
 * Activé par body.intl (posé par public/js/intl-mode.js quand
 * window.IS_INTL=true via middleware hostname-intl.js).
 *
 * Règles :
 *  - body.intl .qc-only      → caché sur global.adestto.ai
 *  - body:not(.intl) .intl-only → caché sur adestto.ai (par défaut)
 *
 * Usage dans le HTML :
 *   <div class="qc-only">Contenu AMF/CIRO/Montréal/Québec</div>
 *   <div class="intl-only">Contenu MiFID/FCA/global</div>
 *
 * Les balises non-taguées s'affichent sur les 2 domaines (neutres).
 * ═══════════════════════════════════════════════════════════════════ */

body.intl .qc-only {
  display: none !important;
}

body:not(.intl) .intl-only {
  display: none !important;
}
