/* =====================================================================
   JB SMT Informatique — socle commun des thèmes JBSMT26 (A, B, C)
   Remplace template.css d'Artisteer tout en gardant ses classes
   (art-post, art-block, art-hmenu, art-content-layout...) pour que
   les articles et modules existants s'affichent sans retouche.
   ===================================================================== */

@font-face { font-family: "Barlow"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/barlow-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/barlow-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/barlow-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/barlow-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/barlow-semi-condensed-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-semi-condensed-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/barlow-semi-condensed-latin-700-normal.woff2") format("woff2"); }

:root {
  /* Couleurs de marque (prélevées sur le logo et l'en-tête d'origine) */
  --jb-orange: #FF7A01;        /* cadre du logo */
  --jb-orange-cta: #DC6200;    /* boutons : lisible avec du texte blanc gras */
  --jb-orange-soft: #FD9D55;   /* fond de l'en-tête d'origine */
  --jb-orange-tint: #FFF1E4;
  --jb-blue: #2340C8;          /* bleu "Informatique" du logo */
  --jb-navy: #14224F;
  --jb-ink: #232833;
  --jb-muted: #5B6273;
  --jb-line: #E2E5EB;
  --jb-page: #F4F5F7;
  --jb-white: #FFFFFF;

  --jb-font: "Barlow", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --jb-font-display: "Barlow Semi Condensed", "Barlow", "Arial Narrow", Arial, sans-serif;

  --jb-wrap: 1160px;
  --jb-gutter: clamp(16px, 4vw, 32px);
  --jb-radius: 6px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 90px; }
body.jb {
  margin: 0; padding: 0; min-width: 0;
  font-family: var(--jb-font); font-size: 17px; line-height: 1.6; color: var(--jb-ink);
  background: var(--jb-page);
  -webkit-font-smoothing: antialiased;
}
body.jb img { max-width: 100%; height: auto; border: 0; }
body.jb a { color: var(--jb-blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
body.jb a:hover { color: var(--jb-navy); }
body.jb :focus-visible { outline: 3px solid var(--jb-orange); outline-offset: 2px; border-radius: 2px; }
.jb-wrap { width: 100%; max-width: var(--jb-wrap); margin: 0 auto; padding-left: var(--jb-gutter); padding-right: var(--jb-gutter); }
.jb-skip { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--jb-navy); color: #fff !important; padding: 10px 16px; }
.jb-skip:focus { left: 8px; top: 8px; }
.jb-sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.clearfix::after, .cleared { content: ""; display: table; clear: both; }

/* ---------- Titres ---------- */
body.jb h1, body.jb h2, body.jb h3, body.jb h4, body.jb h5, body.jb h6 {
  font-family: var(--jb-font-display); font-weight: 700; color: var(--jb-navy);
  line-height: 1.15; margin: 1.4em 0 .5em; letter-spacing: -.005em;
}
body.jb h1 { font-size: clamp(30px, 4vw, 40px); }
body.jb h2 { font-size: clamp(25px, 3vw, 31px); }
body.jb h3 { font-size: 23px; }
body.jb h4 { font-size: 19px; }
body.jb h5, body.jb h6 { font-size: 17px; }
body.jb h1 a, body.jb h2 a, body.jb h3 a { color: inherit; text-decoration: none; }
body.jb h1 a:hover, body.jb h2 a:hover, body.jb h3 a:hover { color: var(--jb-blue); }
body.jb p { margin: 0 0 1em; }

/* ---------- Boutons ---------- */
.jb-btn, body.jb .art-button, body.jb .button, body.jb .btn, body.jb button[type=submit], body.jb input[type=submit] {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--jb-font-display); font-weight: 700; font-size: 19px; line-height: 1.1;
  padding: 13px 22px; border-radius: var(--jb-radius); border: 2px solid transparent;
  background: var(--jb-orange-cta); color: #fff !important; text-decoration: none !important;
  cursor: pointer; transition: background-color .15s, border-color .15s, color .15s;
}
.jb-btn:hover, body.jb .art-button:hover, body.jb .button:hover, body.jb .btn:hover, body.jb button[type=submit]:hover, body.jb input[type=submit]:hover { background: #B85200; }
.jb-btn--ghost { background: transparent; color: var(--jb-navy) !important; border-color: var(--jb-navy); }
.jb-btn--ghost:hover { background: var(--jb-navy); color: #fff !important; }
.jb-btn--light { background: #fff; color: var(--jb-navy) !important; }
.jb-btn--light:hover { background: var(--jb-orange-tint); }
.jb-btn svg { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Menu horizontal (sortie Artisteer : ul.art-hmenu) ---------- */
.jb-nav ul.art-hmenu, .jb-nav ul.art-hmenu ul { list-style: none; margin: 0; padding: 0; }
.jb-nav ul.art-hmenu { display: flex; flex-wrap: wrap; align-items: stretch; }
.jb-nav ul.art-hmenu > li { position: relative; }
.jb-nav ul.art-hmenu a, .jb-nav ul.art-hmenu span.separator {
  display: block; font-family: var(--jb-font-display); font-weight: 600; font-size: 18px;
  text-decoration: none; white-space: nowrap;
}
.jb-nav ul.art-hmenu ul {
  position: absolute; left: 0; top: 100%; min-width: 230px; z-index: 50; display: none;
  background: #fff; border: 1px solid var(--jb-line); border-radius: 0 0 var(--jb-radius) var(--jb-radius);
  box-shadow: 0 12px 24px -12px rgba(20, 34, 79, .35); padding: 6px 0;
}
.jb-nav ul.art-hmenu li:hover > ul, .jb-nav ul.art-hmenu li:focus-within > ul { display: block; }
.jb-nav ul.art-hmenu ul a { color: var(--jb-ink) !important; padding: 9px 18px; font-weight: 500; font-size: 17px; background: none !important; }
.jb-nav ul.art-hmenu ul a:hover { color: var(--jb-blue) !important; background: var(--jb-page) !important; }
.jb-nav ul.art-hmenu ul ul { left: 100%; top: -7px; border-radius: var(--jb-radius); }
.jb-menu-toggle {
  display: none; align-items: center; gap: 10px; background: none; border: 0; cursor: pointer;
  font-family: var(--jb-font-display); font-weight: 700; font-size: 18px; color: inherit; padding: 12px 0;
}
.jb-menu-toggle .jb-burger, .jb-menu-toggle .jb-burger::before, .jb-menu-toggle .jb-burger::after {
  display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; position: relative; content: "";
}
.jb-menu-toggle .jb-burger::before { position: absolute; top: -7px; }
.jb-menu-toggle .jb-burger::after { position: absolute; top: 7px; }

/* ---------- Zone principale ---------- */
.jb-main { padding-top: 36px; padding-bottom: 56px; }
.jb-columns { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: start; }
.jb-columns--sidebar { grid-template-columns: minmax(0, 1fr) 320px; }
.jb-content > *:first-child { margin-top: 0; }

/* Mises en page Artisteer (positions top/bottom et contenu d'articles) */
.art-content-layout { display: table; width: 100%; table-layout: fixed; border-collapse: collapse; }
.art-content-layout-row { display: table-row; }
.art-layout-cell { display: table-cell; vertical-align: top; }
.jb-positions > .art-content-layout { border-collapse: separate; border-spacing: 24px 0; margin: 0 -24px 32px; width: calc(100% + 48px); }
.art-postcontent .art-content-layout { margin: 0 0 1em; }
.art-postcontent .art-layout-cell { padding: 0 12px; }
.art-postcontent .art-layout-cell:first-child { padding-left: 0; }
.art-postcontent .art-layout-cell:last-child { padding-right: 0; }

/* ---------- Articles (art-post) ---------- */
.art-post { margin: 0 0 28px; }
.art-post .art-postmetadataheader { margin: 0 0 14px; }
.art-post h2.art-postheader { margin: 0; font-size: clamp(25px, 3vw, 32px); }
.art-post h2.art-postheader:empty, .art-postheadericon:empty { display: none; }
.art-post .art-postmetadataheader:not(:has(h2 span:not(:empty))):not(:has(.art-metadata-icons:not(:empty))) { display: none; }
.art-metadata-icons { font-size: 14px; color: var(--jb-muted); margin-top: 6px; }
.art-metadata-icons:empty, .art-postmetadatafooter:empty, .art-postmetadatafooter:has(.art-metadata-icons:empty) { display: none; }
.art-metadata-icons a { color: var(--jb-muted); }
.art-metadata-icons img { vertical-align: middle; }
.art-postmetadatafooter { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--jb-line); }
.art-postcontent { overflow-wrap: break-word; }
.art-postcontent::after { content: ""; display: table; clear: both; }
.art-postcontent > *:last-child { margin-bottom: 0; }
.art-postcontent ul, .art-postcontent ol { margin: 0 0 1em; padding-left: 1.3em; }
.art-postcontent li { margin: .25em 0; }
.art-postcontent ul > li::marker { color: var(--jb-orange); }
.art-postcontent blockquote {
  margin: 1.2em 0; padding: 14px 20px; border-left: 4px solid var(--jb-orange);
  background: var(--jb-orange-tint); border-radius: 0 var(--jb-radius) var(--jb-radius) 0;
}
.art-postcontent hr { border: 0; border-top: 1px solid var(--jb-line); margin: 2em 0; }
.art-postcontent img[style*="float: left"], .art-postcontent img[align=left], .art-postcontent .img-intro-left, .art-postcontent .img-fulltext-left { margin: 4px 24px 12px 0; }
.art-postcontent img[style*="float: right"], .art-postcontent img[align=right], .art-postcontent .img-intro-right, .art-postcontent .img-fulltext-right { margin: 4px 0 12px 24px; }
.art-postcontent .img-intro-left, .art-postcontent .img-fulltext-left { float: left; }
.art-postcontent .img-intro-right, .art-postcontent .img-fulltext-right { float: right; }
p.readmore { margin: 18px 0 0; }
p.readmore .art-button { font-size: 17px; padding: 10px 18px; }

/* Tableaux (ex. page Tarifs) */
.art-postcontent table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: 16px; }
.art-postcontent th, .art-postcontent td { padding: 11px 14px; border-bottom: 1px solid var(--jb-line); text-align: left; vertical-align: top; }
.art-postcontent th, .art-postcontent thead td { font-family: var(--jb-font-display); font-weight: 700; font-size: 17px; color: var(--jb-navy); background: var(--jb-page); }
.art-postcontent tbody tr:hover td { background: #FAFBFC; }
.art-postcontent table[border="0"] td, .art-postcontent table.jb-plain td { border: 0; padding-left: 0; }

/* Harmonisation des vieux styles en ligne (option "Harmoniser le texte des articles") */
body.jb-normalize .art-postcontent [style*="font-size"],
body.jb-normalize .art-blockcontent [style*="font-size"] { font-size: inherit !important; line-height: inherit !important; }
body.jb-normalize .art-postcontent [style*="font-family"],
body.jb-normalize .art-blockcontent [style*="font-family"] { font-family: inherit !important; }
body.jb-normalize .art-postcontent font[size] { font-size: inherit; }

/* ---------- Blocs de modules (art-block) ---------- */
.art-block { background: #fff; border: 1px solid var(--jb-line); border-radius: var(--jb-radius); padding: 22px 24px; margin: 0 0 24px; }
.art-blockheader h3.t { margin: 0 0 12px; font-size: 21px; }
.art-blockcontent > *:last-child { margin-bottom: 0; }
.art-blockcontent ul { list-style: none; margin: 0; padding: 0; }
.art-blockcontent li { padding: 7px 0; border-bottom: 1px solid var(--jb-line); }
.art-blockcontent li:last-child { border-bottom: 0; }
.art-blockcontent li a { text-decoration: none; }

/* ---------- Fil d'Ariane, messages, pagination ---------- */
.jb-breadcrumb { font-size: 15px; color: var(--jb-muted); margin: 0 0 18px; }
.jb-breadcrumb a { color: var(--jb-muted); }
.jb-breadcrumb img { vertical-align: middle; }
#system-message-container:empty { display: none; }
#system-message { margin: 0 0 24px; padding: 0; }
#system-message dt { display: none; }
#system-message dd { margin: 0; }
#system-message dd ul, .alert { list-style: none; margin: 0 0 12px; padding: 14px 18px; border-radius: var(--jb-radius); background: #EAF0FF; border-left: 4px solid var(--jb-blue); color: var(--jb-navy); }
#system-message dd.error ul, .alert-error, .alert-danger { background: #FDECEC; border-left-color: #C62828; color: #7A1616; }
#system-message dd.notice ul, .alert-warning { background: var(--jb-orange-tint); border-left-color: var(--jb-orange); color: #6B3500; }
.art-pager, .pagination { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin: 24px 0; }
.art-pager a, .art-pager span, .pagination a, .pagination span {
  display: inline-block; min-width: 40px; padding: 8px 12px; text-align: center; border-radius: var(--jb-radius);
  border: 1px solid var(--jb-line); background: #fff; text-decoration: none; font-weight: 600; color: var(--jb-navy);
}
.art-pager .active, .pagination .active span { background: var(--jb-navy); border-color: var(--jb-navy); color: #fff; }
.pagination p.counter { flex-basis: 100%; margin: 0; color: var(--jb-muted); font-size: 15px; border: 0; padding: 0; background: none; text-align: left; }

/* ---------- Formulaires (contact, recherche, connexion) ---------- */
body.jb input[type=text], body.jb input[type=email], body.jb input[type=tel], body.jb input[type=password],
body.jb input[type=search], body.jb textarea, body.jb select, body.jb .inputbox {
  font: inherit; font-size: 17px; color: var(--jb-ink); background: #fff; width: 100%; max-width: 520px;
  padding: 10px 12px; border: 1px solid #C9CED8; border-radius: var(--jb-radius);
}
body.jb textarea { min-height: 160px; max-width: 100%; }
body.jb input:focus, body.jb textarea:focus, body.jb select:focus { border-color: var(--jb-blue); outline: 3px solid rgba(35, 64, 200, .18); outline-offset: 0; }
body.jb label { font-weight: 600; color: var(--jb-navy); }
body.jb fieldset { border: 0; padding: 0; margin: 0 0 1em; }
body.jb legend { font-family: var(--jb-font-display); font-weight: 700; font-size: 22px; color: var(--jb-navy); padding: 0; margin-bottom: 10px; }
body.jb .contact-form dt, body.jb .control-label { margin-top: 12px; }
body.jb .contact-form dd { margin-left: 0; }

/* ---------- Blocs de contenu réutilisables (à utiliser dans les articles) ---------- */
.jb-lead { font-size: 20px; line-height: 1.55; color: var(--jb-ink); max-width: 62ch; }
.jb-split { display: grid; grid-template-columns: minmax(180px, 280px) minmax(0, 1fr); gap: 28px; align-items: start; margin: 0 0 1.4em; }
.jb-split > figure { margin: 0; }
.jb-split img { border-radius: var(--jb-radius); border: 1px solid var(--jb-line); background: #fff; display: block; }
.jb-split > div > *:first-child { margin-top: 0; }
.jb-checks { list-style: none !important; padding: 0 !important; margin: 0 0 1.2em; }
.jb-checks li { position: relative; padding-left: 30px; margin: .45em 0; }
.jb-checks li::before {
  content: ""; position: absolute; left: 2px; top: .38em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--jb-orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.3l2.6 2.5L12 5.4' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.jb-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 0 0 1.4em; }
.jb-card { background: #fff; border: 1px solid var(--jb-line); border-radius: var(--jb-radius); padding: 18px 20px; }
.jb-card h3, .jb-card h4 { margin: 0 0 .35em !important; font-size: 21px !important; }
.jb-card p { margin: 0; color: var(--jb-muted); font-size: 16px; }
.jb-callout {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px;
  background: var(--jb-navy); color: #fff; border-radius: var(--jb-radius); padding: 20px 24px; margin: 1.4em 0;
}
.jb-callout p { margin: 0; font-size: 19px; }
.jb-callout strong { color: #fff; }
.jb-callout a.jb-btn { font-size: 21px; }
.jb-hours { font-weight: 600; color: var(--jb-navy); }

/* ---------- Bandeau marques ---------- */
.jb-brands { background: #fff; border-top: 1px solid var(--jb-line); }
.jb-brands .jb-wrap { display: flex; align-items: center; justify-content: center; gap: 28px; padding-top: 20px; padding-bottom: 20px; flex-wrap: wrap; }
.jb-brands p { margin: 0; font-family: var(--jb-font-display); font-weight: 600; font-size: 20px; color: var(--jb-navy); max-width: 28ch; }
.jb-brands img { width: 349px; }

/* ---------- Pied de page ---------- */
.jb-footer { background: var(--jb-navy); color: #C9D0E4; font-size: 16px; }
.jb-footer a { color: #fff !important; }
.jb-footer a:hover { color: var(--jb-orange-soft) !important; }
.jb-footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; padding-top: 44px; padding-bottom: 36px; }
.jb-footer h2 { font-size: 19px !important; color: #fff !important; margin: 0 0 12px !important; }
.jb-footer p { margin: 0 0 .5em; }
.jb-footer ul { list-style: none; margin: 0; padding: 0; }
.jb-footer li { margin: 0 0 .45em; }
.jb-footer .jb-footer-phone { font-family: var(--jb-font-display); font-weight: 700; font-size: 26px; text-decoration: none; }
.jb-social { display: flex; gap: 10px; margin-top: 14px; }
.jb-social a { display: inline-flex; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(255,255,255,.1); }
.jb-social a:hover { background: var(--jb-orange-cta); }
.jb-social svg { width: 19px; height: 19px; fill: #fff; }
.jb-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.jb-footer-bottom .jb-wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 16px; padding-bottom: 18px; font-size: 14px; color: #9DA7C4; }
.jb-footer-bottom a { color: #C9D0E4 !important; }
.jb-footer .art-nostyle h3 { color: #fff; font-size: 19px; margin: 0 0 12px; }

/* ---------- Responsive commun ---------- */
@media (max-width: 960px) {
  .jb-columns--sidebar { grid-template-columns: minmax(0, 1fr); }
  .jb-footer-grid { grid-template-columns: 1fr 1fr; }
  .jb-footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body.jb { font-size: 16.5px; }
  .art-content-layout, .art-content-layout-row, .art-layout-cell { display: block; width: auto !important; }
  .jb-positions > .art-content-layout { margin: 0 0 16px; width: auto; }
  .jb-positions .art-layout-cell { margin-bottom: 16px; }
  .art-postcontent .art-layout-cell { padding: 0 !important; margin-bottom: 1em; }
  .art-postcontent img[style*="float"] { float: none !important; display: block; margin: 0 0 14px !important; }
  .jb-split { grid-template-columns: 1fr; }
  .jb-split > figure { max-width: 300px; }
  .jb-footer-grid { grid-template-columns: 1fr; }
  .art-postcontent table { display: block; overflow-x: auto; }
  .jb-menu-toggle { display: inline-flex; }
  .jb-nav ul.art-hmenu { display: none; flex-direction: column; width: 100%; }
  .jb-nav.is-open ul.art-hmenu { display: flex; }
  .jb-nav ul.art-hmenu ul { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 16px; background: transparent; }
  .jb-nav ul.art-hmenu ul a { color: inherit !important; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
@media print {
  .jb-topbar, .jb-nav, .jb-hero, .jb-brands, .jb-footer, .jb-side { display: none !important; }
  body.jb { background: #fff; }
}

/* =====================================================================
   Version compacte (v2.6.1) : espacements et tailles resserrés
   ===================================================================== */
body.jb { line-height: 1.5; }
body.jb p { margin-bottom: .7em; }
body.jb h1, body.jb h2, body.jb h3, body.jb h4, body.jb h5, body.jb h6 { margin: 1em 0 .4em; }
body.jb h2 { font-size: clamp(22px, 2.4vw, 26px); }
body.jb h3 { font-size: 20px; }
.jb-main { padding-top: 20px; padding-bottom: 32px; }
.jb-columns { gap: 20px; }
.jb-columns--sidebar { grid-template-columns: minmax(0, 1fr) 290px; }
.jb-positions > .art-content-layout { border-spacing: 14px 0; margin: 0 -14px 16px; width: calc(100% + 28px); }
.art-post { margin-bottom: 16px; }
.art-post .art-postmetadataheader { margin-bottom: 8px; }
.art-post h2.art-postheader { font-size: clamp(22px, 2.4vw, 26px); }
.art-postmetadatafooter { margin-top: 10px; padding-top: 8px; }
.art-postcontent ul, .art-postcontent ol { margin-bottom: .7em; }
.art-postcontent li { margin: .1em 0; }
.art-postcontent th, .art-postcontent td { padding: 7px 10px; }
.art-postcontent blockquote { padding: 10px 14px; margin: .8em 0; }
.art-block { padding: 14px 16px; margin-bottom: 14px; }
.art-blockheader h3.t { margin-bottom: 8px; font-size: 19px; }
.art-blockcontent li { padding: 5px 0; }
.jb-btn, body.jb .art-button, body.jb .button, body.jb .btn, body.jb button[type=submit], body.jb input[type=submit] { font-size: 17px; padding: 10px 18px; }
.jb-lead { font-size: 18.5px; }
.jb-split { gap: 18px; margin-bottom: .9em; }
.jb-cards { gap: 12px; margin-bottom: .9em; }
.jb-card { padding: 12px 14px; }
.jb-card h3, .jb-card h4 { font-size: 19px !important; }
.jb-callout { padding: 14px 18px; margin: .9em 0; }
.jb-callout a.jb-btn { font-size: 19px; }
.jb-brands .jb-wrap { padding-top: 10px; padding-bottom: 10px; gap: 20px; }
.jb-brands p { font-size: 18px; }
.jb-brands img { width: 260px; }
.jb-footer { font-size: 15px; }
.jb-footer-grid { padding-top: 26px; padding-bottom: 18px; gap: 24px; }
.jb-footer h2 { margin-bottom: 8px !important; font-size: 18px !important; }
.jb-footer p { margin-bottom: .3em; }
.jb-footer .jb-footer-phone { font-size: 22px; }
.jb-social { margin-top: 8px; }
.jb-social a { width: 34px; height: 34px; }
.jb-social svg { width: 16px; height: 16px; }
.jb-footer-bottom .jb-wrap { padding-top: 10px; padding-bottom: 12px; }
@media (max-width: 760px) {
  .jb-main { padding-top: 14px; padding-bottom: 20px; }
}

/* v2.21 : encadré d'appel — texte et bouton côte à côte */
.jb-callout { flex-wrap: nowrap; }
.jb-callout p { flex: 1 1 auto; min-width: 0; font-size: 16.5px; line-height: 1.45; }
.jb-callout .jb-btn { flex: none; white-space: nowrap; }
@media (max-width: 680px) { .jb-callout { flex-wrap: wrap; } }
