/* BRAND V6 · langage partagé Horizon Nord : extrait de concepts/mix2 (2026-07).
   Référence d'usage : CONVENTIONS-V6.md (racine du dépôt). */

/* ============================================================================
   BRAND V6 · UN SEUL LANGAGE
   La même grammaire partout : typo courte, monde clair, agents = seule
   saturation, révélations au scroll. Toute page qui lie cette feuille hérite
   des jetons, du header, du footer, des boutons, des sections et des
   composants partagés. Voir CONVENTIONS-V6.md pour les règles d'usage.
============================================================================ */
:root {
  --bg: #FDFEFD; /* revue : blanc pur banni en surface */
  --bg2: #F5F7F6;
  --ink: #10160F;
  --tx: #49524C;
  --mute: #667069; /* revue : #838A85 faisait 3.3:1 sur blanc, sous le AA */
  --line: #E7EAEE;
  --acc: #2D6A4F;
  --acc-dark: #235540;
  --accl: #5FC08A;
  /* monday agents (Figma officiel) : couche accent des surfaces agents/monday */
  --md-purple: #9450FC; --md-cyan: #00BAFF; --md-green: #00BA5F;
  --md-grad: linear-gradient(96deg, #8D56F6 0%, #35CF9B 52%, #06F6F2 100%);
  --bernard: #6161FF;
  --diane: #0073EA;
  --nora: #FF158A;
  --sam: #C9891E;
  --pb: #8E3CEF;
  --pd: #00B0FC;
  --pn: #58E8C9;
  --ps: #FC8B00;
  --font-d: 'Poppins', system-ui, sans-serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --font-m: 'JetBrains Mono', ui-monospace, monospace;
  --e: cubic-bezier(.16, 1, .3, 1);
  /* échelle typographique : 7 crans, aucun autre font-size dans le fichier */
  --fs-micro: 11px;   /* mono uppercase uniquement : kickers, étiquettes, cartouches */
  --fs-small: 14px;   /* métadonnées, notes, tags, libellés d'interface */
  --fs-body: 16px;    /* paragraphes : plancher du texte de lecture */
  --fs-lead: clamp(16px, 1.5vw, 19px);
  --fs-h3: clamp(18px, 1.9vw, 24px);
  --fs-h2: clamp(32px, 4.6vw, 64px);
  --fs-display: clamp(36px, 5.5vw, 82px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0; background: var(--bg); color: var(--tx);
  font-family: var(--font-b); font-size: var(--fs-body); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; } /* revue : sans height:auto, les attributs HTML width/height (ajoutés pour le CLS) forcent la hauteur intrinsèque et zooment l'image dans les cartes */
a { color: inherit; }

.skip { position: fixed; left: 12px; top: -60px; z-index: 99; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 8px; font-size: var(--fs-small); text-decoration: none; transition: top .2s; }
.skip:focus-visible { top: 44px; }

.hd {
  position: fixed; top: 25px; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 56px);
  transition: background .3s, box-shadow .3s;
}
.hd.scrolled { background: rgba(255, 255, 255, .86); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-d); font-weight: 300; letter-spacing: .14em; font-size: var(--fs-small); color: var(--ink); text-decoration: none; }
.brand b { font-weight: 800; }
/* revue (ux-heuristics) : la nav était fs-small en --tx — facile à manquer.
   Encre foncée + poids 600 + indicateur « vous êtes ici » (aria-current, posé
   en JS par brand-v6.js) ; ≤900px : menu déroulant au lieu de disparaître. */
.hd-nav { display: flex; gap: 26px; }
.hd-nav a { font-family: var(--font-d); font-size: var(--fs-small); font-weight: 600; color: var(--ink); text-decoration: none; padding: 6px 2px; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.hd-nav a:hover { color: var(--acc); border-bottom-color: var(--acc); }
.hd-nav a[aria-current="page"] { color: var(--acc); border-bottom-color: var(--acc); }
.hd-burger { display: none; }
@media (max-width: 900px) {
  .hd-burger { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); cursor: pointer; }
  .hd-burger svg { width: 20px; height: 20px; }
  .hd-nav { position: absolute; top: 100%; left: 0; right: 0; display: flex; flex-direction: column; gap: 0; background: rgba(255, 255, 255, .97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); padding: 8px clamp(20px, 4vw, 56px) 14px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .22s var(--e), transform .22s var(--e); }
  .hd-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .hd-nav a { padding: 13px 4px; font-size: var(--fs-body); border-bottom: 1px solid var(--line); }
  .hd-nav a:last-child { border-bottom: none; }
}
.hd-right { display: flex; align-items: center; gap: 18px; }
.hd-en { font-family: var(--font-d); font-size: var(--fs-small); font-weight: 600; letter-spacing: .05em; color: var(--tx); text-decoration: none; display: inline-flex; align-items: center; min-height: 24px; padding: 2px 4px; }
.hd-en:hover { color: var(--ink); }
@media (max-width: 560px) {
  /* le header étroit laisse la place au menu burger ; la langue reste au footer */
  .hd-en { display: none; }
  .hd-cta { padding: 10px 16px; }
}
.hd-cta { font-family: var(--font-d); font-weight: 600; font-size: var(--fs-small); color: #fff; background: var(--acc); text-decoration: none; padding: 11px 22px; border-radius: 100px; transition: background .25s, transform .2s var(--e); }
.hd-cta:hover { background: var(--acc-dark); }
.hd-cta:active { transform: scale(.96); }

/* la signature de marque en conclusion de page (accueil ; réutilisable ailleurs) */
.sig { text-align: center; padding: clamp(30px, 5vw, 64px) 22px 0; }
.sig svg { display: block; margin: 0 auto 14px; }
.sig p { font-family: var(--font-d); font-weight: 300; font-size: var(--fs-h2); line-height: 1.15; letter-spacing: -.018em; color: var(--ink); margin: 0; }
.sig p strong { font-weight: 800; color: var(--acc); }

/* footer complet */
.ft { max-width: 1280px; margin: 0 auto; padding: 46px clamp(22px, 4.5vw, 64px) 60px; }
.ft-top { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.ft-cert { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-small); color: var(--tx); }
.ft-wm { height: 15px; width: auto; display: inline-block; vertical-align: -2px; }
.ft-cert b { color: var(--ink); font-weight: 600; }
.ft-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; }
.ft-nav a { font-size: var(--fs-small); color: var(--tx); text-decoration: none; }
.ft-nav a:hover { color: var(--ink); }
.ft-legal { margin-top: 20px; font-size: var(--fs-small); color: var(--mute); display: flex; gap: 16px; flex-wrap: wrap; }
.ft-legal a, .ft-legal button { color: inherit; text-decoration: none; background: none; border: none; font: inherit; cursor: pointer; padding: 0; }
/* revue : cibles tactiles au mobile — les liens/boutons du footer faisaient
   19-22px de haut; padding vertical pour viser ~36px sans changer le desktop. */
@media (max-width: 640px) { .ft-nav a, .ft-legal a, .ft-legal button { padding: 7px 0; } }

.btn-p {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-weight: 600; font-size: var(--fs-body); color: #fff;
  text-decoration: none; background: var(--acc); padding: 15px 30px; border-radius: 100px;
  transition: transform .2s var(--e), background .25s; box-shadow: 0 14px 32px -16px rgba(45, 106, 79, .55);
  position: relative;
}
.btn-p:hover { background: var(--acc-dark); }
.btn-p:active { transform: scale(.97); }
/* bouton secondaire : lien souligné discret (le conteneur .deckcta vient du
   film d'ouverture; sur une page statique, tout conteneur de CTA peut porter
   la classe : voir CONVENTIONS-V6.md) */
.deckcta .btn-s { font-family: var(--font-d); font-weight: 500; font-size: var(--fs-small); color: var(--tx); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 3px; }

/* ============================================================================
   LES SECTIONS : la même grammaire partout.
============================================================================ */
.sect { position: relative; padding: clamp(74px, 10vw, 130px) clamp(22px, 4.5vw, 64px); max-width: 1280px; margin: 0 auto; }
.sect-alt { max-width: none; background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sect-alt > .in { max-width: 1280px; margin: 0 auto; }
.stitle {
  font-family: var(--font-d); font-weight: 300;
  font-size: var(--fs-h2);
  line-height: 1.05; letter-spacing: -.018em; color: var(--ink); margin: 0;
}
.stitle strong { font-weight: 800; }
.slead { font-size: var(--fs-lead); color: var(--tx); max-width: 58ch; margin: 16px 0 0; }
.slead b { color: var(--ink); font-weight: 600; }

/* la texture d'atelier continue dans les sections alternees */
.sect-alt { position: relative; }
.sect-alt::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59, 95, 122, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 95, 122, .07) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent 90%);
  mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent 90%);
}
.sect-alt > * { position: relative; }

/* ============================================================================
   MINI-HERO (.mhero) : hero statique des sous-pages, même grammaire que
   l'accueil : kicker mono + .stitle + .slead sur la texture .sect-alt.
   Aucun nouveau jeton : seul le padding-top dégage le header fixe.
============================================================================ */
.mhero { padding-top: clamp(130px, 16vw, 190px); }
.mhero .mono {
  display: block; margin-bottom: 16px;
  font-family: var(--font-m); font-size: var(--fs-micro); letter-spacing: .2em;
  text-transform: uppercase; color: var(--mute); font-weight: 600;
}
@media (max-width: 560px) {
  .mhero { padding-top: 116px; }
  .mhero .mono { letter-spacing: .16em; }
}
/* mini-hero avec visuel : texte à gauche, photo à droite (revue : photos
   générées 2026-07 pour l'ancrage visuel des sous-pages) */
.mhero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4.5vw, 64px); align-items: center; }
.mhero-split .mhero-img { border-radius: 16px; overflow: hidden; box-shadow: 0 26px 52px -26px rgba(16, 22, 15, .4); }
.mhero-split .mhero-img img { width: 100%; aspect-ratio: 8/5; object-fit: cover; }
@media (max-width: 860px) { .mhero-split { grid-template-columns: 1fr; } }

/* les agents se posent comme des feuilles (l'energie du film) */
html.js .agent[data-io] { transform: translateY(30px) rotate(-1deg); }
html.js .agent[data-io]:nth-child(even) { transform: translateY(30px) rotate(1deg); }
html.js .agent[data-io].in { transform: none; }

/* revelations au scroll, meme grammaire que le film */
html.js [data-io] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--e), transform .9s var(--e); transition-delay: calc(var(--d, 0) * 1ms); }
html.js [data-io].in { opacity: 1; transform: none; }

/* la plateforme sous le système : une carte écosystème contenue et légendée.
   (Revue refactoring-ui : le bandeau flottait sans contenant, le libellé et les
   chips se concurrençaient au même poids, et les produits étaient anonymes.
   Kicker désamorcé, énoncé de propriété, chaque produit a un rôle.) */
.ecosect { padding-top: 40px; padding-bottom: 8px; }
.eco {
  border: 1px solid var(--line); border-radius: 18px; background: #FDFEFD;
  padding: clamp(20px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 24px;
}
.eco-h { display: flex; align-items: flex-start; gap: 12px; }
.eco-mark { height: 22px; margin-top: 3px; }
.eco-k { display: block; font-family: var(--font-m); font-size: var(--fs-micro); letter-spacing: .16em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.eco-t { margin: 0; font-family: var(--font-d); font-weight: 600; font-size: var(--fs-h3); color: var(--ink); }
.eco-sub { margin: 8px 0 0; font-size: var(--fs-lead); color: var(--tx); }
.eco-t strong { color: var(--ink); font-weight: 700; }
/* le mot-symbole monday.com inline dans l'énoncé : le logo officiel à la
   taille du texte, aligné sur la ligne de base (remplace le astérisque flottant) */
.eco-wm { height: 1.1em; width: auto; display: inline-block; vertical-align: -0.2em; }
.eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.chip {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 12px;
  background: #FDFEFD; border: 1px solid var(--line);
  transition: transform .25s var(--e), box-shadow .25s var(--e);
}
.chip:hover { transform: translateY(-3px); box-shadow: 0 10px 22px -12px rgba(16, 22, 15, .35); }
.chip img { height: 22px; width: 22px; object-fit: contain; flex: none; }
.chip-t { font-size: var(--fs-small); font-weight: 600; color: var(--ink); line-height: 1.3; }
.chip-t em { display: block; font-style: normal; font-weight: 400; color: var(--mute); margin-top: 2px; }
@media (max-width: 960px) { .eco-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .eco-grid { grid-template-columns: 1fr; } }

/* les agents : cartes-rôle façon monday agents (le RÔLE en titre, pas le nom) */
.crew { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 38px; }
.agc { position: relative; aspect-ratio: 5/6.6; border-radius: 18px; overflow: hidden; background: var(--c, #888);
  display: flex; flex-direction: column; transition: transform .3s var(--e), box-shadow .3s var(--e); }
.agc:hover { transform: translateY(-6px); box-shadow: 0 26px 52px -22px var(--c, rgba(16,22,15,.45)); }
.agc-ch { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 104%; z-index: 1;
  transition: transform .45s var(--e); }
.agc:hover .agc-ch { transform: translateX(-50%) translateY(-4px) scale(1.03); }
.agc-h { position: relative; z-index: 2; display: flex; align-items: flex-start; gap: 8px; padding: 15px 15px 0; }
.agc-ico { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.agc-tt { display: flex; flex-direction: column; }
.agc-role { font-family: var(--font-d); font-weight: 600; font-size: var(--fs-body); color: #fff; letter-spacing: -.01em; line-height: 1.2; text-shadow: 0 1px 5px rgba(0,0,0,.22); }
.agc-do { font-family: var(--font-b); font-size: var(--fs-small); color: rgba(255,255,255,.92); margin-top: 2px; text-shadow: 0 1px 4px rgba(0,0,0,.22); }
.agc-f { position: relative; z-index: 2; margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding: 14px 15px; }
.agc-nm { font-family: var(--font-m); font-size: var(--fs-small); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(16, 22, 15, .58); border: 1px solid rgba(255, 255, 255, .42); padding: 6px 13px; border-radius: 100px; backdrop-filter: blur(4px); }
.agc-plus { width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-b); font-size: 20px; line-height: 1; border: none; cursor: pointer; text-decoration: none; transition: transform .3s var(--e), background .25s; position: relative; z-index: 4; }
.agc.open .agc-plus { transform: rotate(45deg); background: rgba(16, 22, 15, .85); }
/* le résumé de l'agent : tiroir qui coulisse au bas de la carte quand on
   ouvre le + (accueil #agents) */
.agc-more { position: absolute; left: 0; right: 0; bottom: 56px; z-index: 3; background: var(--c, #888); padding: 13px 15px; font-size: var(--fs-small); color: #fff; line-height: 1.55; transform: translateY(calc(100% + 56px)); transition: transform .38s var(--e); }
.agc-more p { margin: 0; color: #fff; }
.agc-more .lim { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, .28); }
.agc-more .lim b { color: #fff; }
.agc.open .agc-more { transform: none; }
/* la 5e carte : « vos agents sur mesure » = l'équivalent honnête de « create your own » */
.agc-own { background: var(--bg2); border: 1px dashed #cdd4d0; }
.agc-own .agc-role { color: var(--ink); text-shadow: none; }
.agc-own .agc-do { color: var(--mute); text-shadow: none; }
.agc-own-body { flex: 1; display: grid; place-items: center; z-index: 2; }
.agc-own .agc-plus { width: 54px; height: 54px; background: #fff; color: var(--acc); border: 1px solid var(--line); font-size: 30px; }
.agc-own .agc-nm { color: var(--mute); background: none; letter-spacing: .03em; text-transform: none; font-family: var(--font-b); font-weight: 500; padding: 0; }
@media (max-width: 960px) { .crew { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .crew { grid-template-columns: 1fr; } }

/* CTA final : panneau clair, le point d'orgue (meme langage que le reste) */
.ctaf { background: var(--bg2); border: 1px solid var(--line); border-radius: 22px; padding: clamp(46px, 6vw, 80px) clamp(24px, 5vw, 70px); text-align: center; position: relative; overflow: hidden; }
.ctaf::before { content: ""; position: absolute; width: 46vw; height: 46vw; right: -14vw; top: -20vw; background: radial-gradient(closest-side, rgba(95, 192, 138, .1), transparent 70%); }
.ctaf h2 { position: relative; font-family: var(--font-d); font-weight: 300; font-size: var(--fs-h2); color: var(--ink); margin: 0; line-height: 1.1; }
.ctaf h2 strong { font-weight: 800; color: var(--acc); }
.ctaf p { position: relative; font-size: var(--fs-body); color: var(--tx); margin: 16px auto 0; max-width: 52ch; }
.ctaf .btn-p { margin-top: 26px; }
.ctaf .halte { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-m); font-size: var(--fs-micro, 11px); letter-spacing: .2em; text-transform: uppercase; color: var(--acc); font-weight: 700; margin: 0 0 16px; position: relative; }
.cta-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(26px, 4vw, 60px); margin-top: 30px; text-align: left; align-items: start; }
.whatnext-lead { font-size: var(--fs-body, 16px); color: var(--tx); margin: 0 0 18px; }
.wn { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); font-size: var(--fs-small, 14px); color: var(--tx); line-height: 1.55; }
.wn b { color: var(--ink); font-weight: 600; display: block; }
.wn-check { flex: none; width: 8px; height: 15px; margin-top: 3px; border-right: 2.5px solid var(--acc); border-bottom: 2.5px solid var(--acc); transform: rotate(45deg); }
.seal { display: flex; align-items: center; gap: 8px; margin: 20px 0 0; font-size: var(--fs-small, 14px); color: var(--mute); }
.cform { margin: 0; max-width: none; }
.cform .ck span { font-family: var(--font-b); font-size: var(--fs-small, 14px); letter-spacing: 0; text-transform: none; color: var(--tx); font-weight: 400; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } .ctaf { text-align: left; } .ctaf h2 { text-align: left; } .ctaf .halte { margin-left: 0; } }
.cform { position: relative; max-width: 560px; margin: 28px auto 0; text-align: left; display: flex; flex-direction: column; gap: 13px; }
.cform .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.cform label { display: flex; flex-direction: column; gap: 6px; }
.cform label span { font-family: var(--font-m); font-size: var(--fs-micro); letter-spacing: .12em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.cform input[type=text], .cform input[type=email], .cform textarea {
  padding: 13px 15px; border-radius: 10px;
  border: 1px solid var(--line);
  background: #FDFEFD;
  color: var(--ink); font-family: var(--font-b); font-size: var(--fs-body);
}
.cform input::placeholder, .cform textarea::placeholder { color: var(--mute); }
.cform input:focus-visible, .cform textarea:focus-visible { outline: 2px solid var(--acc); outline-offset: 1px; }
.cform .ck { flex-direction: row; align-items: flex-start; gap: 9px; font-size: var(--fs-small); color: var(--tx); }
.cform .ck input { margin-top: 2px; }
.cform .btn-p { margin-top: 4px; }
.cform .micro-note { font-size: var(--fs-small); color: var(--mute); text-align: center; margin: 8px 0 0; }
@media (max-width: 560px) { .cform .row2 { grid-template-columns: 1fr; } }

/* essai monday */
.try { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; background: #FDFEFD; border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px; }
.try-h { font-family: var(--font-d); font-weight: 300; font-size: var(--fs-h3); color: var(--ink); margin: 0; }
.try-h strong { font-weight: 700; }
.try p { font-size: var(--fs-body); color: var(--tx); margin: 7px 0 0; max-width: 46ch; }
.try-btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 100px; border: 1px solid var(--line); background: #FDFEFD; font-family: var(--font-d); font-weight: 600; font-size: var(--fs-small); color: var(--ink); text-decoration: none; white-space: nowrap; transition: transform .2s var(--e), box-shadow .25s; }
.try-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(16, 22, 15, .35); }
.try-note { font-size: var(--fs-small); color: var(--mute); margin: 14px 0 0; }

/* FAQ : ouvertes, indexables */
.fgrid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
/* la colonne titre + CTA accompagne la lecture des réponses (sticky tant que
   la grille est à l'écran) ; désactivée en colonne unique */
.fgrid > div:first-child { position: sticky; top: clamp(88px, 11vh, 116px); }
@media (max-width: 960px) { .fgrid > div:first-child { position: static; } .fgrid { grid-template-columns: 1fr; } }
.fitem { padding: 20px 0; border-top: 1px solid var(--line); }
.fitem:first-child { border-top: none; padding-top: 0; }
.fitem h3 { font-family: var(--font-d); font-weight: 600; font-size: var(--fs-h3); color: var(--ink); margin: 0 0 7px; line-height: 1.35; }
.fitem p { font-size: var(--fs-body); color: var(--tx); line-height: 1.65; margin: 0; }
