:root{
  --navy:#101828; --navy-soft:#0F1B3D; --indigo:#4d54d1; --violet:#786ACD;
  --t2:#4A5878; --t3:#8A9BB5; --border:#E2E8F0; --bg-light:#F8FAFC; --white:#fff;
  --orange:#FF6A3D; --orange-light:#ff8e8b;
  --green:#1A9E6A; --green-bg:#DCFCE7; --teal:#0E9488;
  --grad:linear-gradient(135deg,#ff6b5a 0%,#ff96be 33%,#4d54d1 66%,#64e4dd 100%);
  --radius:24px;
  --gh-font-heading:'Poppins',sans-serif;
  --gh-font-body:'Poppins',sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--gh-font-body);color:var(--navy);background:var(--white);line-height:1.6;-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
:where(a:link,a:visited,a:hover,a:active,a:focus){color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* icônes système (design system Septeo/Brain V2 : Material Symbols Outlined, jamais d'emoji à l'écran) */
.material-symbols-outlined{font-variation-settings:'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24;font-size:24px;line-height:1;vertical-align:middle;font-weight:normal;font-style:normal;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr}
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.container-narrow{max-width:760px}
.grad{background:var(--grad);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}

/* buttons */
.ai-button{display:inline-flex;align-items:center;gap:9px;background-image:linear-gradient(0deg,#FF6A3D,#ff8e8b);color:#fff;border:2px solid transparent;border-radius:50px;padding:12px 26px;font-family:var(--gh-font-body);font-size:15px;font-weight:500;cursor:pointer;box-shadow:0 10px 30px rgba(255,142,139,.5);transition:opacity .3s,transform .3s}
.ai-button:hover{opacity:.92;transform:translateY(-1px);color:#fff}
.btn-ghost{display:inline-flex;align-items:center;gap:9px;background:transparent;color:var(--navy);border:1.5px solid rgba(15,27,61,.18);border-radius:50px;padding:11px 24px;font-family:var(--gh-font-body);font-size:15px;font-weight:500;cursor:pointer;transition:all .25s}
.btn-ghost:hover{background:rgba(15,27,61,.04);border-color:rgba(15,27,61,.32);color:var(--navy)}

/* header */
.site-header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.nav{display:flex;align-items:center;justify-content:space-between;height:70px}
.brand{display:flex;align-items:center;gap:11px}
.logo-mark{width:34px;height:34px;border-radius:9px;background:var(--grad);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:18px}
.brand-name{font-weight:600;font-size:20px;letter-spacing:-.01em}
.brand-sub{font-size:11px;color:var(--t3);font-weight:400;margin-top:-3px}
.nav-links{display:flex;align-items:center}
.nav-links ul{display:flex;gap:26px;align-items:center;list-style:none}
.nav-links a{font-size:15px;font-weight:400;color:var(--t2);transition:color .2s}
.nav-links a:hover{color:var(--navy)}
.nav-links li.nav-current a{color:var(--navy);font-weight:500}
.nav-cta{display:flex;gap:12px;align-items:center}
.nav-signin{font-size:14px;color:var(--t2)}
.nav-search{font-size:16px;line-height:1;opacity:.75;transition:opacity .2s}
.nav-search:hover{opacity:1}
.burger{display:none;font-size:24px;background:none;border:none;cursor:pointer;color:var(--navy)}

/* hero */
.hero{padding:64px 0 48px;background:var(--bg-light);border-bottom:1px solid var(--border)}
.member-hero{padding:48px 0}
.member-hero .art-grid{margin-top:8px}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:56px;align-items:center}
.eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:500;color:var(--indigo);background:rgba(77,84,209,.08);border:1px solid rgba(77,84,209,.18);padding:5px 13px;border-radius:50px;margin-bottom:20px}
.eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--green)}
.hero h1{font-size:clamp(32px,4.6vw,52px);font-weight:400;line-height:1.12;letter-spacing:-.015em;margin-bottom:18px}
.hero p.lead{font-size:18px;font-weight:300;color:var(--t2);max-width:520px;line-height:1.65;margin-bottom:26px}
.signup-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:30px 28px}
.signup-card h3{font-size:19px;font-weight:400;margin-bottom:6px}
.signup-card .sc-sub{font-size:14px;color:var(--t2);font-weight:300;margin-bottom:20px}
.field{margin-bottom:12px}
.field label{display:block;font-size:12.5px;color:var(--t2);margin-bottom:5px;font-weight:400}
.field input{width:100%;padding:11px 14px;border:1px solid var(--border);border-radius:11px;font-family:var(--gh-font-body);font-size:14.5px;color:var(--navy);background:var(--bg-light);transition:border-color .2s}
.field input:focus{outline:none;border-color:var(--indigo)}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.signup-card .ai-button{width:100%;justify-content:center;margin-top:8px}
.consent{font-size:11.5px;color:var(--t3);margin-top:12px;line-height:1.5}

/* member form feedback (native Ghost Portal forms) */
.form-message{display:none;font-size:13px;margin-top:10px;font-weight:400}
form[data-members-form].loading .loading-indicator{display:block;color:var(--t2)}
form[data-members-form].success .success-message{display:block;color:var(--green)}
form[data-members-form].error .error-message{display:block;color:var(--orange)}

/* section basics */
section.block{padding:100px 0}
.section-label{font-size:14px;font-weight:500;color:var(--navy-soft);margin-bottom:10px}
.section-title{font-size:clamp(24px,3vw,34px);font-weight:400;line-height:1.2;letter-spacing:-.01em;margin-bottom:8px}
.gline{width:56px;height:3px;background:var(--grad);border-radius:3px;margin:14px 0 34px}
.head-row{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:14px}
.link-more{font-size:14px;font-weight:500;color:var(--indigo)}
.archive-description{font-size:16px;color:var(--t2);font-weight:300;max-width:640px}

/* featured */
.featured{display:grid;grid-template-columns:1.3fr 1fr;gap:0;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:#fff}
.featured .fimg{background:linear-gradient(135deg,#E8E6FF 0%,#C5C9F0 55%,#64e4dd 130%);min-height:340px;position:relative;overflow:hidden}
.featured .fimg img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}
.featured .fimg .ftag{position:absolute;top:18px;left:18px;background:#fff;color:var(--navy);font-size:12px;font-weight:600;padding:6px 13px;border-radius:50px}
.featured .fbody{padding:34px 36px;display:flex;flex-direction:column;justify-content:center}
.tagrow{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.pill{font-size:11.5px;font-weight:500;color:var(--indigo);background:rgba(77,84,209,.07);border:1px solid rgba(77,84,209,.15);padding:3px 11px;border-radius:50px}
/* univers accent colors carried onto tag pills, so navigation stays visually consistent with the homepage grid */
.pill.u-desk{color:#e0563f;background:rgba(255,107,90,.09);border-color:rgba(255,107,90,.2)}
.pill.u-design{color:#1f9a90;background:rgba(100,228,221,.13);border-color:rgba(100,228,221,.3)}
.pill.u-decryptage{color:var(--indigo);background:rgba(77,84,209,.07);border-color:rgba(77,84,209,.15)}
.pill.u-code{color:#b45309;background:rgba(245,158,11,.11);border-color:rgba(245,158,11,.24)}
.pill.u-live{color:#d1417e;background:rgba(255,150,190,.13);border-color:rgba(255,150,190,.3)}
.pill.u-studio{color:#7c3aed;background:rgba(139,92,246,.11);border-color:rgba(139,92,246,.24)}
.featured h2{font-size:27px;font-weight:400;line-height:1.25;margin-bottom:12px;letter-spacing:-.01em}
.featured .excerpt{font-size:15px;color:var(--t2);font-weight:300;margin-bottom:20px}
.byline{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--t3)}
.avatar{width:30px;height:30px;border-radius:50%;background:linear-gradient(135deg,#ff96be,#4d54d1);color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:600;flex-shrink:0}

/* univers grid */
.univers-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.u-card{display:block;background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:26px 24px;transition:transform .3s,border-color .3s;position:relative;overflow:hidden}
.u-card:hover{transform:translateY(-4px);border-color:rgba(77,84,209,.3)}
.u-ico{width:50px;height:50px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:16px}
.u-ico .material-symbols-outlined,.tag-icon-badge .material-symbols-outlined{color:var(--navy)}
.i-coral{background:linear-gradient(135deg,#FFE8DD,#FFD4C5)}
.i-rose{background:linear-gradient(135deg,#FFE8F0,#FFCCE0)}
.i-indigo{background:linear-gradient(135deg,#E8E6FF,#C5C9F0)}
.i-cyan{background:linear-gradient(135deg,#D4F5F2,#B3F0EC)}
.i-amber{background:linear-gradient(135deg,#FEF3C7,#FDE68A)}
.i-violet{background:linear-gradient(135deg,#EDE9FE,#DDD6FE)}
.u-card h3{font-size:19px;font-weight:400;margin-bottom:7px}
.u-card p{font-size:13.5px;color:var(--t2);font-weight:300;line-height:1.6}
.u-tag{position:absolute;top:20px;right:20px;font-size:10.5px;font-weight:500;color:var(--teal);background:rgba(14,148,136,.08);border:1px solid rgba(14,148,136,.2);border-radius:50px;padding:2px 9px}

/* veille list */
.veille-topics{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:24px}
.veille-topics a{font-size:13px;font-weight:500;color:var(--indigo);background:rgba(77,84,209,.07);border:1px solid rgba(77,84,209,.15);padding:6px 14px;border-radius:50px;transition:background .2s}
.veille-topics a:hover{background:rgba(77,84,209,.14)}
.veille-byline{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--t2);font-weight:300;margin-bottom:24px}
.veille-byline strong{color:var(--navy);font-weight:500}
.veille-wrap{background:var(--bg-light);border-radius:var(--radius);padding:12px 8px;border:1px solid var(--border)}
.veille-item{display:flex;gap:16px;align-items:flex-start;padding:18px 20px;border-radius:14px;transition:background .2s}
.veille-item:hover{background:#fff}
.veille-item+.veille-item{border-top:1px solid var(--border)}
.v-source{flex-shrink:0;width:44px;height:44px;border-radius:11px;background:#fff;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;color:var(--indigo);text-align:center;text-transform:capitalize}
.v-body{flex:1}
.v-meta{display:flex;gap:10px;align-items:center;font-size:12px;color:var(--t3);margin-bottom:4px;flex-wrap:wrap}
.v-src-name{font-weight:500;color:var(--t2)}
.v-body h4{font-size:16px;font-weight:400;line-height:1.4;color:var(--navy)}
.v-note{font-size:13px;color:var(--t2);font-weight:300;margin-top:5px;border-left:2px solid var(--indigo);padding-left:11px}

/* articles grid */
.art-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.art-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:transform .3s}
.art-card:hover{transform:translateY(-4px)}
.art-img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover;object-position:center;background-size:cover;background-position:center}
.art-img-placeholder{background:linear-gradient(135deg,#E8E6FF,#B3F0EC)}
.art-body{padding:20px 22px 24px}
.art-body .tagrow{margin-bottom:10px}
.art-card h3{font-size:17.5px;font-weight:400;line-height:1.35;margin-bottom:12px}
.art-card .byline{font-size:12px}

/* agenda / live */
.agenda-band{background:var(--navy);color:#fff;border-radius:var(--radius);padding:48px 44px;position:relative;overflow:hidden}
.agenda-band::before{content:"";position:absolute;inset:-40% -10% auto auto;width:420px;height:420px;background:radial-gradient(circle,rgba(100,228,221,.25),transparent 62%);pointer-events:none}
.agenda-band .section-label{color:#8ea2c9}
.agenda-band .section-title{color:#fff}
.events{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:8px}
.event{display:block;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.13);border-radius:16px;padding:22px 20px;transition:background .2s;position:relative}
.event:hover{background:rgba(255,255,255,.11)}
.event .edate{display:inline-block;font-size:12px;font-weight:600;color:#64e4dd;margin-bottom:9px;letter-spacing:.02em}
.event h4{font-size:16px;font-weight:400;line-height:1.35;margin-bottom:8px}
.event .espk{font-size:12.5px;color:#aab8d4;font-weight:300}
.event .ereg{display:inline-block;margin-top:14px;font-size:13px;font-weight:500;color:#fff;border-bottom:1px solid rgba(255,255,255,.4);padding-bottom:1px}
/* editorial convention: tag a past webinar post "replay" once it has aired, to switch its agenda card from upcoming to replay */
.event-replay .ereg{border-bottom-color:transparent}
.badge-replay{position:absolute;top:18px;right:18px;font-size:10.5px;font-weight:600;color:#0F1B3D;background:#64e4dd;padding:3px 10px;border-radius:50px}

/* newsletter band */
.nl-band{background:var(--bg-light);border:1px solid var(--border);border-radius:var(--radius);padding:52px 44px;text-align:center}
.nl-band h2{font-size:clamp(24px,3vw,32px);font-weight:400;letter-spacing:-.01em;margin-bottom:12px}
.nl-band p{font-size:16px;color:var(--t2);font-weight:300;max-width:560px;margin:0 auto 26px}
.nl-form{display:flex;gap:10px;max-width:480px;margin:0 auto;flex-wrap:wrap;justify-content:center}
.nl-form input{flex:1;min-width:220px;padding:13px 16px;border:1px solid var(--border);border-radius:50px;font-family:var(--gh-font-body);font-size:14.5px;background:#fff}
.nl-form input:focus{outline:none;border-color:var(--indigo)}
.nl-form .form-message{width:100%;text-align:center}

/* feed Desk — rendu façon réseau social (tag-desk.hbs) */
.feed{display:flex;flex-direction:column;gap:16px;max-width:640px;margin:0 auto}
.feed-item{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:20px 22px;transition:border-color .2s}
.feed-item:hover{border-color:rgba(77,84,209,.3)}
.feed-head{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.feed-meta{display:flex;flex-direction:column;line-height:1.3}
.feed-author{font-size:13.5px;font-weight:600;color:var(--navy)}
.feed-time{font-size:12px;color:var(--t3)}
.feed-body-link{display:block;color:inherit}
.feed-title{font-size:17px;font-weight:600;line-height:1.35;margin-bottom:6px}
.feed-excerpt{font-size:14px;color:var(--t2);font-weight:300;line-height:1.55}
.feed-image{margin-top:12px;border-radius:14px;overflow:hidden}
.feed-image img{width:100%;display:block}
.feed-actions{display:flex;gap:18px;margin-top:16px;padding-top:14px;border-top:1px solid var(--border)}
.feed-action{font-size:13px;font-weight:500;color:var(--t2);display:inline-flex;align-items:center;gap:6px;transition:color .2s}
.feed-action:hover{color:var(--indigo)}

/* archive / author header */
.archive-header .section-title{text-transform:capitalize}
.tag-icon{font-size:32px;margin-bottom:12px}
.tag-icon:empty{display:none}
.tag-icon-badge{width:56px;height:56px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:28px;margin-bottom:16px}
.tag-icon-badge .material-symbols-outlined{font-size:28px}
.tag-icon-badge:empty{display:none}
.tag-hero{background-size:cover;background-position:center}
.tag-hero.has-image{border-radius:0;color:#fff}
.tag-hero.has-image .breadcrumb,
.tag-hero.has-image .section-label{color:#c7d0e0}
.tag-hero.has-image .breadcrumb a{color:#c7d0e0}
.tag-hero.has-image .section-title,
.tag-hero.has-image .archive-description{color:#fff}
.tag-hero.has-image .tag-icon-badge .material-symbols-outlined{color:#fff}
.author-profile{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.author-avatar-lg{width:84px;height:84px;border-radius:50%;background:linear-gradient(135deg,#ff96be,#4d54d1);background-size:cover;background-position:center;flex-shrink:0}
.author-links{display:flex;gap:10px;margin-top:16px;flex-wrap:wrap}
.author-count{font-size:13px;color:var(--t3);margin-top:6px}

/* author card (end of article) */
.author-card{display:flex;gap:20px;align-items:flex-start;background:var(--bg-light);border:1px solid var(--border);border-radius:var(--radius);padding:24px}
.author-card-avatar{width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,#ff96be,#4d54d1);background-size:cover;background-position:center;flex-shrink:0}
.author-card-body h3{font-size:17px;font-weight:400;margin-bottom:6px}
.author-card-body p{font-size:14px;color:var(--t2);font-weight:300;margin-bottom:10px}
.author-card-links{display:flex;gap:16px;flex-wrap:wrap}

/* single post */
.breadcrumb{font-size:13px;color:var(--t3);margin-bottom:14px}
.breadcrumb a{color:var(--t3);transition:color .2s}
.breadcrumb a:hover{color:var(--indigo)}
.share-linkedin{display:inline-block;margin-bottom:20px}
.post-full-header{padding:56px 0 32px}
.post-full-title{font-size:clamp(28px,4vw,44px);font-weight:400;line-height:1.18;letter-spacing:-.01em;margin:16px 0}
.post-full-excerpt{font-size:18px;color:var(--t2);font-weight:300;margin-bottom:18px}
.post-full-byline{margin-top:22px}
.post-full-byline a{font-weight:500;color:var(--navy)}
.post-full-image{margin-bottom:8px}
.post-full-image img{border-radius:var(--radius);width:100%}
.post-full-content{padding:40px 0 60px}

/* auto table of contents (long articles only, injected by main.js) */
.toc{display:none;background:var(--bg-light);border:1px solid var(--border);border-radius:14px;padding:18px 22px;margin-bottom:36px}
.toc.is-visible{display:block}
.toc-title{font-size:12.5px;font-weight:600;color:var(--navy-soft);margin-bottom:10px;text-transform:uppercase;letter-spacing:.04em}
.toc ul{list-style:none;padding:0;margin:0}
.toc li{margin-bottom:7px;font-size:14.5px}
.toc li:last-child{margin-bottom:0}
.toc li.toc-sub{padding-left:18px;font-size:13.5px}
.toc a{color:var(--indigo)}
.toc a:hover{text-decoration:underline}

/* Koenig content styles */
.post-content{font-size:18px;font-weight:300;color:var(--navy)}
.post-content > * + *{margin-top:1.4em}
.post-content h1,.post-content h2,.post-content h3,.post-content h4{font-weight:400;line-height:1.3;letter-spacing:-.01em;margin-top:1.8em}
.post-content h1{font-size:30px}
.post-content h2{font-size:26px}
.post-content h3{font-size:21px}
.post-content h4{font-size:18px}
.post-content p{line-height:1.7}
.post-content a{color:var(--indigo);text-decoration:underline;text-underline-offset:2px}
.post-content ul,.post-content ol{padding-left:1.4em}
.post-content li + li{margin-top:.5em}
.post-content strong{font-weight:600}
.post-content img{border-radius:14px}
.post-content figcaption{font-size:14px;color:var(--t3);text-align:center;margin-top:10px}
.post-content blockquote{border-left:3px solid var(--indigo);padding-left:20px;font-style:italic;color:var(--t2);font-size:20px}
.post-content hr{border:none;border-top:1px solid var(--border);margin:2.4em 0}
.post-content code{background:var(--bg-light);border:1px solid var(--border);border-radius:5px;padding:2px 6px;font-size:.9em}
.post-content pre{background:var(--navy);color:#e2e8f0;border-radius:14px;padding:20px 22px;overflow-x:auto}
.post-content pre code{background:none;border:none;color:inherit;padding:0}
.post-content table{width:100%;border-collapse:collapse;font-size:15px}
.post-content th,.post-content td{border:1px solid var(--border);padding:10px 14px;text-align:left}
.post-content .kg-callout-card{display:flex;gap:12px;align-items:flex-start;background:var(--bg-light);border:1px solid var(--border);border-radius:14px;padding:18px 20px}
.post-content .kg-bookmark-card,.post-content .kg-embed-card{border:1px solid var(--border);border-radius:14px;overflow:hidden}
.post-content .kg-bookmark-container{display:flex;text-decoration:none;color:inherit}
.post-content .kg-bookmark-content{padding:18px 20px;flex:1}
.post-content .kg-bookmark-title{font-weight:600;margin-bottom:6px}
.post-content .kg-bookmark-description{font-size:14px;color:var(--t2);margin-bottom:10px}
.post-content .kg-bookmark-metadata{display:flex;align-items:center;gap:8px;font-size:12.5px;color:var(--t3)}
.post-content .kg-bookmark-icon{width:18px;height:18px;border-radius:4px}
.post-content .kg-bookmark-thumbnail{flex-shrink:0;width:180px}
.post-content .kg-bookmark-thumbnail img{height:100%;object-fit:cover;border-radius:0}
.post-content figure.kg-width-wide{margin-left:calc(50% - 46vw);margin-right:calc(50% - 46vw);max-width:92vw}
.post-content figure.kg-width-full{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw}
.post-content figure.kg-width-full img{border-radius:0}

/* kg-gallery-card : galerie d'images (grille de vignettes carrées, style Koenig) */
.post-content .kg-gallery-card{margin:1.75em 0}
.post-content .kg-gallery-container{display:flex;flex-direction:column;gap:8px}
.post-content .kg-gallery-row{display:flex;gap:8px}
.post-content .kg-gallery-image{flex:1;min-width:0;border-radius:10px;overflow:hidden}
.post-content .kg-gallery-image img{width:100%;height:100%;object-fit:cover;border-radius:10px}

/* kg-button-card : bouton d'appel à l'action inséré dans l'article */
.post-content .kg-button-card{text-align:center;margin:1.75em 0}
.post-content .kg-btn{display:inline-flex;align-items:center;gap:9px;background-image:linear-gradient(0deg,#FF6A3D,#ff8e8b);color:#fff!important;border-radius:50px;padding:12px 26px;font-size:15px;font-weight:500;text-decoration:none!important}

/* kg-toggle-card : accordéon question/réponse (FAQ) */
.post-content .kg-toggle-card{border:1px solid var(--border);border-radius:14px;padding:18px 20px;margin:1.25em 0}
.post-content .kg-toggle-heading{display:flex;justify-content:space-between;align-items:center;gap:12px;cursor:pointer}
.post-content .kg-toggle-heading-text{font-weight:600}
.post-content .kg-toggle-content{color:var(--t2);margin-top:10px}

/* kg-file-card : fichier téléchargeable */
.post-content .kg-file-card{display:flex;align-items:center;justify-content:space-between;gap:16px;border:1px solid var(--border);border-radius:14px;padding:16px 20px;margin:1.25em 0;text-decoration:none!important;color:inherit}
.post-content .kg-file-card-title{font-weight:600}
.post-content .kg-file-card-metadata{font-size:12.5px;color:var(--t3)}
.post-content .kg-file-card-icon{flex-shrink:0}

/* kg-audio-card / kg-video-card : lecteurs natifs, peu de style requis au-delà de l'habillage */
.post-content .kg-audio-card,.post-content .kg-video-card{border:1px solid var(--border);border-radius:14px;padding:16px 20px;margin:1.25em 0}
.post-content .kg-video-card video{border-radius:10px;width:100%}

/* footer — repris de la structure Dendreo (grand titre+CTA, colonnes, barre du bas), fond clair */
footer{background:var(--bg-light);padding:64px 0 32px;margin-top:8px;border-top:1px solid var(--border);border-radius:32px 32px 0 0}
.fv-hero{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;padding-bottom:36px}
.fv-hero-h{font-size:30px;font-weight:400;letter-spacing:-.01em;line-height:1.25}
.fv-form{display:flex;align-items:center;gap:6px;background:#fff;border:1px solid var(--border);border-radius:50px;padding:5px 5px 5px 20px;min-width:340px}
.fv-form input{flex:1;min-width:0;border:none;outline:none;background:transparent;font-family:var(--gh-font-body);font-size:14.5px;color:var(--navy);padding:8px 0}
.fv-arrow{flex-shrink:0;width:38px;height:38px;border-radius:50%;border:none;background-image:linear-gradient(0deg,#FF6A3D,#ff8e8b);color:#fff;font-size:16px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:transform .2s}
.fv-arrow:hover{transform:translateX(2px)}
.fv-form .form-message{width:100%;font-size:12.5px;color:var(--t2);margin-top:6px}
.fv-sep{border-top:1px solid var(--border);margin-bottom:36px}
.fv-cols{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-bottom:40px}
.fv-col-h{font-size:13px;font-weight:600;color:var(--navy);margin-bottom:14px;letter-spacing:.02em}
.fv-link{display:block;font-size:13.5px;color:var(--t2);font-weight:300;margin-bottom:9px;transition:color .2s}
.fv-link:hover{color:var(--indigo)}
.fv-bottom{border-top:1px solid var(--border);padding-top:24px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px}
.fv-copy{font-size:12.5px;color:var(--t3);font-weight:300;flex:1;min-width:220px}
.fv-social{display:flex;gap:10px}
.fv-soc{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;border:1px solid var(--border);font-size:11px;font-weight:600;color:var(--t2);transition:all .2s}
.fv-soc:hover{border-color:var(--indigo);color:var(--indigo)}

/* pagination (Ghost {{pagination}} helper markup) */
.pagination{display:flex;justify-content:center;gap:16px;margin-top:44px;font-size:14px;color:var(--t2)}
.pagination a{font-weight:500;color:var(--indigo)}

@media(max-width:991px){
  .hero-grid{grid-template-columns:1fr;gap:34px}
  .featured{grid-template-columns:1fr}
  .featured .fimg{min-height:220px}
  .univers-grid,.art-grid,.events{grid-template-columns:1fr 1fr}
  .fv-cols{grid-template-columns:1fr 1fr;gap:28px}
  section.block{padding:72px 0}
}
@media(max-width:767px){
  .nav-links,.nav-signin{display:none}
  .burger{display:block}
  .univers-grid,.art-grid,.events{grid-template-columns:1fr}
  .fv-cols{grid-template-columns:1fr}
  .row2{grid-template-columns:1fr}
  section.block{padding:48px 0}
  .agenda-band,.nl-band{padding:36px 24px}
  .post-content figure.kg-width-wide,.post-content figure.kg-width-full{margin-left:0;margin-right:0;max-width:100%}
  .fv-hero{padding-bottom:28px}
  .fv-hero-h{font-size:24px}
}

/* Desk feed (tag-desk.hbs) — feed 3 colonnes façon réseau social */
.card{background:#fff;border:1px solid var(--border);border-radius:var(--radius)}
.avatar.sm{width:32px;height:32px;font-size:11px}
.page-head{padding:30px 0 6px}
.desk-badge{font-size:11px;font-weight:600;color:var(--indigo);background:rgba(77,84,209,.08);border:1px solid rgba(77,84,209,.18);padding:3px 10px;border-radius:50px}
.desk-sub{font-size:14px;color:var(--t2);font-weight:300;margin-top:4px}

.feed-layout{display:grid;grid-template-columns:220px minmax(0,1fr) 300px;gap:24px;padding:18px 0 60px;align-items:start}
.desk-rail{position:sticky;top:82px}

.desk-side-nav{padding:10px}
.desk-side-nav a{display:flex;align-items:center;gap:11px;padding:10px 12px;border-radius:10px;font-size:14.5px;color:var(--t2);transition:background .15s}
.desk-side-nav a:hover{background:var(--bg-light)}
.desk-side-nav a.active{background:rgba(77,84,209,.08);color:var(--navy);font-weight:500}
.desk-side-nav .ic{width:26px;height:26px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:14px;background:var(--bg-light)}
.desk-side-nav .ic .material-symbols-outlined{font-size:16px}
.desk-side-title{font-size:11px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:var(--t3);padding:14px 12px 6px}

.desk-ticker{display:flex;align-items:center;gap:12px;background:#fff;border:1px solid var(--border);border-radius:12px;padding:9px 14px;margin-bottom:14px;overflow:hidden}
.desk-ticker-label{flex-shrink:0;display:inline-flex;align-items:center;gap:4px;font-size:12px;font-weight:600;color:var(--red,#E0294B)}
.desk-ticker-label .material-symbols-outlined{font-size:16px}
.desk-ticker-track{flex:1;overflow:hidden;white-space:nowrap;position:relative;mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent)}
.desk-ticker-track span{display:inline-block;padding-left:100%;font-size:13px;color:var(--t2);font-weight:300;animation:desk-tick 26s linear infinite}
@keyframes desk-tick{from{transform:translateX(0)}to{transform:translateX(-100%)}}

.desk-tabs{display:flex;gap:8px;overflow-x:auto;padding:4px 0 16px;scrollbar-width:none}
.desk-tabs::-webkit-scrollbar{display:none}
.desk-tab{white-space:nowrap;font-size:13.5px;font-weight:500;color:var(--t2);background:#fff;border:1px solid var(--border);padding:7px 15px;border-radius:50px;transition:all .15s}
.desk-tab:hover{border-color:var(--indigo)}
.desk-tab.active{background:var(--navy);color:#fff;border-color:var(--navy)}

.desk-post{padding:18px 20px 16px}
.desk-post-top{display:flex;align-items:flex-start;gap:12px;margin-bottom:12px}
.desk-pt-meta{flex:1;min-width:0}
.desk-pt-name{font-size:14.5px;font-weight:600;line-height:1.2}
.desk-pt-univers{font-size:11px;font-weight:600;color:var(--indigo)}
.desk-pt-role{font-size:12.5px;color:var(--t3);font-weight:300}
.desk-pt-time{font-size:12px;color:var(--t3)}
.desk-post-body{display:block;color:inherit}
.desk-post h3{font-size:19px;font-weight:400;line-height:1.3;letter-spacing:-.01em;margin-bottom:7px}
.desk-post h3:hover{color:var(--indigo)}
.desk-excerpt{font-size:14.5px;color:var(--t2);font-weight:300;margin-bottom:12px}
.desk-more{color:var(--indigo);font-weight:500}
.desk-thumb{border-radius:12px;overflow:hidden;margin-bottom:4px;aspect-ratio:16/8;background-size:cover;background-position:center}
.desk-thumb img{width:100%;height:100%;object-fit:cover}
.desk-thumb-placeholder.i-coral{background:linear-gradient(135deg,#ff9472,#ff6b5a)}
.desk-thumb-placeholder.i-cyan{background:linear-gradient(135deg,#5ee0d6,#4d54d1)}
.desk-thumb-placeholder.i-indigo{background:linear-gradient(135deg,#E8E6FF,#C5C9F0 60%,#64e4dd)}
.desk-thumb-placeholder.i-amber{background:linear-gradient(135deg,#FEF3C7,#FDE68A)}
.desk-thumb-placeholder.i-rose{background:linear-gradient(135deg,#FFE8F0,#FFCCE0)}
.desk-thumb-placeholder.i-violet{background:linear-gradient(135deg,#EDE9FE,#DDD6FE)}
.desk-actions{display:flex;gap:18px;margin-top:14px;padding-top:14px;border-top:1px solid var(--border)}
.desk-action{font-size:13px;font-weight:500;color:var(--t2);display:inline-flex;align-items:center;gap:6px;transition:color .2s}
.desk-action:hover{color:var(--indigo)}
.desk-action .material-symbols-outlined{font-size:16px}
button.desk-action{background:none;border:none;padding:0;font-family:var(--gh-font-body);cursor:pointer}
.desk-comments-panel{margin-top:14px}
.desk-comments-panel:not([hidden]){padding-top:2px}

.desk-rail-card{padding:16px 18px;margin-bottom:16px}
.desk-rail-card h4{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:600;letter-spacing:.02em;margin-bottom:10px}
.desk-rail-card h4 .material-symbols-outlined{font-size:16px;color:var(--indigo)}
.desk-hot{display:flex;align-items:center;padding:8px 6px;border-radius:10px;transition:background .15s}
.desk-hot:hover{background:var(--bg-light)}
.desk-hot-title{display:block;font-size:13.5px;font-weight:600;line-height:1.2}
.desk-hot-sub{display:block;font-size:11.5px;color:var(--t3);font-weight:300}
.desk-who{display:flex;align-items:center;gap:10px;padding:8px 6px;border-radius:10px;transition:background .15s}
.desk-who:hover{background:var(--bg-light)}
.desk-wn{flex:1;min-width:0}
.desk-wnn{display:block;font-size:13.5px;font-weight:600;line-height:1.2}
.desk-wr{display:block;font-size:11.5px;color:var(--t3);font-weight:300}
.desk-mini-webinar{display:block;background:var(--navy);color:#fff;border-radius:16px;padding:18px}
.desk-mw-date{font-size:11.5px;font-weight:600;color:#64e4dd}
.desk-mini-webinar h4{color:#fff;font-size:15px;font-weight:400;margin:6px 0 12px;line-height:1.35}

/* pages de veille thématique (page-veille-*.hbs) */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:36px;margin-bottom:44px}
@media(max-width:767px){.why-grid{grid-template-columns:1fr;gap:28px}}
.hub-facts{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:40px}
.hub-fact{background:var(--bg-light);border:1px solid var(--border);border-radius:var(--radius);padding:20px 18px;text-align:center}
.hub-fact-n{font-size:26px;font-weight:400;color:var(--navy);letter-spacing:-.01em;margin-bottom:6px}
.hub-fact-l{font-size:13px;color:var(--t2);font-weight:300;line-height:1.4}
.faq{display:flex;flex-direction:column;gap:10px}
.faq-item{background:#fff;border:1px solid var(--border);border-radius:14px;padding:4px 20px}
.faq-item summary{list-style:none;padding:16px 24px 16px 0;font-size:15.5px;font-weight:500;color:var(--navy);cursor:pointer;position:relative}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";position:absolute;right:0;top:14px;font-size:20px;font-weight:300;color:var(--indigo);transition:transform .2s}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item p{color:var(--t2);font-weight:300;line-height:1.65;font-size:14.5px;padding-bottom:18px;margin-top:-6px}

@media(max-width:767px){
  .hub-facts{grid-template-columns:1fr}
}

@media(max-width:991px){
  .feed-layout{grid-template-columns:minmax(0,1fr) 300px}
  .desk-rail-left{display:none}
}
@media(max-width:767px){
  .feed-layout{grid-template-columns:1fr}
  .desk-rail-right{display:none}
}
