/* ═══════════════════════════════════════════════════════════════════
   peeryx-v132-blog.css
   Refonte totale : blog listing + pages articles
   Design : publication technique B2B premium — lisible, sobre, pro
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Tokens communs ─────────────────────────────────────────────── */
:root {
  --bl-bg0:      #020811;
  --bl-bg1:      #050d1e;
  --bl-bg2:      #081426;
  --bl-card:     rgba(10,20,44,0.75);
  --bl-border:   rgba(255,255,255,0.07);
  --bl-border-h: rgba(255,255,255,0.13);
  --bl-blue:     #1848C4;
  --bl-blue-lt:  #2D64E0;
  --bl-teal:     #00C892;
  --bl-text:     #C8D8F0;
  --bl-muted:    #6A8BAA;
  --bl-white:    #F0F6FF;
  --bl-radius:   12px;
  --bl-font-h:   'Sora', system-ui, -apple-system, sans-serif;
  --bl-font-b:   'Hanken Grotesk', 'Inter', system-ui, sans-serif;
  --bl-font-c:   'JetBrains Mono', monospace;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG INDEX — HERO
   ═══════════════════════════════════════════════════════════════════ */

html body .px83-blog-index {
  background: var(--bl-bg0) !important;
}

/* Masquer les glows / grid-lines qui font "gaming" */
html body .blog-index-hero-v9 .hero-backdrop,
html body .blog-index-hero-v9 .glow,
html body .blog-index-hero-v9 .grid-lines {
  display: none !important;
}

html body .hero-blog,
html body .blog-index-hero-v9 {
  background: var(--bl-bg0) !important;
  padding: 80px 0 72px !important;
  position: relative !important;
  overflow: hidden !important;
}
html body .hero-blog::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(24,72,196,0.16), transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 30%, rgba(0,185,145,0.07), transparent 55%) !important;
  pointer-events: none !important;
}
html body .hero-blog::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px) !important;
  background-size: 80px 80px !important;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 10%, transparent 80%) !important;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 10%, transparent 80%) !important;
  pointer-events: none !important;
}

/* Shell : 2 colonnes — copy + featured card */
html body .blog-index-shell {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto auto !important;
  gap: 40px 56px !important;
  align-items: start !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Copy colonne gauche */
html body .blog-index-copy {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
html body .blog-index-copy .eyebrow {
  font-family: var(--bl-font-c) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--bl-teal) !important;
  background: rgba(0,185,145,0.08) !important;
  border: 1px solid rgba(0,185,145,0.20) !important;
  padding: 5px 12px !important;
  border-radius: 100px !important;
  display: inline-block !important;
  margin-bottom: 24px !important;
}
html body .blog-index-copy h1 {
  font-family: var(--bl-font-h) !important;
  font-size: clamp(30px, 3.8vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
  color: #FFFFFF !important;
  margin: 0 0 20px !important;
}
html body .blog-index-copy .hero-text {
  font-family: var(--bl-font-b) !important;
  font-size: 15.5px !important;
  color: var(--bl-muted) !important;
  line-height: 1.7 !important;
  margin: 0 0 32px !important;
  max-width: 520px !important;
}
html body .blog-index-copy .hero-actions {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}
html body .blog-index-copy .hero-actions .button-primary {
  font-family: var(--bl-font-h) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  background: var(--bl-blue) !important;
  color: #FFFFFF !important;
  border: none !important;
  padding: 13px 26px !important;
  border-radius: 9px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 22px rgba(24,72,196,0.38) !important;
  transition: background 0.16s, box-shadow 0.16s, transform 0.12s !important;
}
html body .blog-index-copy .hero-actions .button-primary:hover {
  background: var(--bl-blue-lt) !important;
  box-shadow: 0 6px 28px rgba(24,72,196,0.52) !important;
  transform: translateY(-1px) !important;
}
html body .blog-index-copy .hero-actions .button-ghost {
  font-family: var(--bl-font-h) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #BDC8DC !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  background: rgba(255,255,255,0.04) !important;
  padding: 12px 22px !important;
  border-radius: 9px !important;
  text-decoration: none !important;
  transition: color 0.14s, border-color 0.14s, background 0.14s !important;
}
html body .blog-index-copy .hero-actions .button-ghost:hover {
  color: #F0F6FF !important;
  border-color: rgba(255,255,255,0.22) !important;
  background: rgba(255,255,255,0.07) !important;
}

/* Featured article panel — colonne droite */
html body .blog-featured-panel-v80 {
  grid-column: 2 !important;
  grid-row: 1 / 3 !important;
  background: rgba(10,22,48,0.80) !important;
  border: 1px solid rgba(24,72,196,0.22) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.14s !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28) !important;
}
html body .blog-featured-panel-v80:hover {
  border-color: rgba(24,72,196,0.44) !important;
  box-shadow: 0 12px 56px rgba(24,72,196,0.18) !important;
  transform: translateY(-2px) !important;
}
html body .blog-featured-panel-v80 > .eyebrow {
  font-family: var(--bl-font-c) !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: var(--bl-teal) !important;
  padding: 14px 20px 0 !important;
  display: block !important;
}
html body .blog-featured-panel-v80 img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  background: rgba(6,14,32,0.90) !important;
  padding: 16px 20px !important;
}
html body .blog-featured-copy-v80 {
  padding: 20px 22px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  flex: 1 !important;
}
html body .blog-featured-copy-v80 .blog-meta-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
html body .blog-featured-copy-v80 .blog-meta-row .pill {
  font-family: var(--bl-font-c) !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--bl-teal) !important;
  background: rgba(0,185,145,0.09) !important;
  border: 1px solid rgba(0,185,145,0.20) !important;
  padding: 3px 10px !important;
  border-radius: 100px !important;
}
html body .blog-featured-copy-v80 .blog-date {
  font-family: var(--bl-font-b) !important;
  font-size: 12px !important;
  color: var(--bl-muted) !important;
}
html body .blog-featured-copy-v80 h2 {
  font-family: var(--bl-font-h) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #E4F0FF !important;
  margin: 0 !important;
  line-height: 1.30 !important;
  letter-spacing: -0.01em !important;
}
html body .blog-featured-copy-v80 p {
  font-family: var(--bl-font-b) !important;
  font-size: 13.5px !important;
  color: var(--bl-muted) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  flex: 1 !important;
}
html body .blog-featured-copy-v80 .text-link {
  font-family: var(--bl-font-b) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--bl-teal) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  transition: color 0.14s !important;
}
html body .blog-featured-panel-v80:hover .text-link { color: #00E0A8 !important; }

/* Insights grid — colonne gauche bas */
html body .blog-insights-grid {
  grid-column: 1 !important;
  grid-row: 2 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
html body .blog-insight-card {
  background: rgba(10,22,48,0.55) !important;
  border: 1px solid var(--bl-border) !important;
  border-radius: var(--bl-radius) !important;
  padding: 18px 16px !important;
  transition: border-color 0.16s !important;
}
html body .blog-insight-card:hover { border-color: var(--bl-border-h) !important; }
html body .blog-insight-card h2 {
  font-family: var(--bl-font-h) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #C0D4EE !important;
  margin: 0 0 6px !important;
  line-height: 1.3 !important;
}
html body .blog-insight-card p {
  font-family: var(--bl-font-b) !important;
  font-size: 11.5px !important;
  color: var(--bl-muted) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG ALL-ARTICLES SECTION
   ═══════════════════════════════════════════════════════════════════ */
html body .blog-all-section {
  background: var(--bl-bg1) !important;
  padding: 80px 0 96px !important;
  position: relative !important;
}
html body .blog-all-section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60% !important; height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent) !important;
}

/* Section heading */
html body .blog-all-heading .eyebrow {
  font-family: var(--bl-font-c) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--bl-teal) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 16px !important;
}
html body .blog-all-heading .eyebrow::before,
html body .blog-all-heading .eyebrow::after {
  content: '' !important;
  flex: 1 !important;
  max-width: 44px !important;
  height: 1px !important;
  background: rgba(0,185,145,0.35) !important;
}
html body .blog-all-heading h2 {
  font-family: var(--bl-font-h) !important;
  font-size: clamp(22px, 2.8vw, 34px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #FFFFFF !important;
  margin: 0 0 12px !important;
}
html body .blog-all-heading p {
  font-family: var(--bl-font-b) !important;
  font-size: 15px !important;
  color: var(--bl-muted) !important;
  line-height: 1.65 !important;
  margin: 0 0 12px !important;
}
html body .blog-count-pill {
  display: inline-flex !important;
  font-family: var(--bl-font-c) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  color: #8AAABF !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  margin-bottom: 36px !important;
}

/* Filter bar */
html body .blog-filter-bar-v80 {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-bottom: 36px !important;
  padding: 16px 20px !important;
  background: rgba(6,14,30,0.70) !important;
  border: 1px solid var(--bl-border) !important;
  border-radius: var(--bl-radius) !important;
}
html body .blog-search-v80 {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--bl-border) !important;
  border-radius: 8px !important;
  padding: 8px 14px !important;
  flex: 1 !important;
  min-width: 220px !important;
  color: var(--bl-muted) !important;
  font-size: 14px !important;
}
html body .blog-search-v80 input {
  background: none !important;
  border: none !important;
  outline: none !important;
  font-family: var(--bl-font-b) !important;
  font-size: 13.5px !important;
  color: var(--bl-text) !important;
  flex: 1 !important;
  min-width: 0 !important;
}
html body .blog-search-v80 input::placeholder { color: var(--bl-muted) !important; }

html body .blog-topic-chips-v80 {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}
html body .blog-topic-chip-v80 {
  font-family: var(--bl-font-b) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: var(--bl-muted) !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--bl-border) !important;
  border-radius: 100px !important;
  padding: 7px 16px !important;
  cursor: pointer !important;
  transition: color 0.14s, border-color 0.14s, background 0.14s !important;
}
html body .blog-topic-chip-v80:hover {
  color: #D8E8FF !important;
  border-color: rgba(255,255,255,0.16) !important;
  background: rgba(255,255,255,0.07) !important;
}
html body .blog-topic-chip-v80.active {
  color: #FFFFFF !important;
  background: var(--bl-blue) !important;
  border-color: var(--bl-blue) !important;
  box-shadow: 0 2px 12px rgba(24,72,196,0.38) !important;
}
html body .blog-reset-btn-v80 {
  font-family: var(--bl-font-b) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #E08888 !important;
  background: rgba(220,80,80,0.07) !important;
  border: 1px solid rgba(220,80,80,0.18) !important;
  border-radius: 100px !important;
  padding: 6px 14px !important;
  cursor: pointer !important;
  transition: background 0.14s, color 0.14s !important;
}
html body .blog-reset-btn-v80:hover {
  background: rgba(220,80,80,0.14) !important;
  color: #F0A0A0 !important;
}

/* ── Article cards grid ── */
html body .blog-cards-wrap {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}
@media (max-width: 1199px) {
  html body .blog-cards-wrap { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 767px) {
  html body .blog-cards-wrap { grid-template-columns: 1fr !important; }
}

/* Individual article card */
html body .blog-cards-wrap [data-article-card],
html body .blog-cards-wrap .glass-card.blog-home-card,
html body .blog-cards-wrap .glass-card {
  background: rgba(10,20,44,0.72) !important;
  border: 1px solid var(--bl-border) !important;
  border-radius: var(--bl-radius) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.14s !important;
  box-shadow: none !important;
}
html body .blog-cards-wrap [data-article-card]:hover,
html body .blog-cards-wrap .glass-card.blog-home-card:hover,
html body .blog-cards-wrap .glass-card:hover {
  border-color: rgba(24,72,196,0.32) !important;
  box-shadow: 0 6px 28px rgba(0,0,0,0.24) !important;
  transform: translateY(-2px) !important;
}

/* Card image container — hide glowing SVG, show decent background */
html body .blog-cards-wrap .blog-home-visual,
html body .blog-cards-wrap .blog-home-visual-image,
html body .blog-cards-wrap [data-article-card] figure,
html body .blog-cards-wrap [data-article-card] img,
html body .blog-cards-wrap .glass-card img {
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  background: rgba(8,18,40,0.92) !important;
  padding: 12px 16px !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
html body .blog-cards-wrap svg { max-height: 130px !important; }

/* Card body */
html body .blog-cards-wrap .blog-home-body,
html body .blog-cards-wrap [data-article-card] .card-body {
  padding: 18px 20px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  flex: 1 !important;
}

/* Card meta row (topic + time) */
html body .blog-cards-wrap .blog-meta-row,
html body .blog-cards-wrap [data-article-card] .card-meta {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
html body .blog-cards-wrap .pill,
html body .blog-cards-wrap [data-article-card] .card-topic {
  font-family: var(--bl-font-c) !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--bl-teal) !important;
  background: rgba(0,185,145,0.08) !important;
  border: 1px solid rgba(0,185,145,0.18) !important;
  padding: 3px 9px !important;
  border-radius: 100px !important;
}
html body .blog-cards-wrap .blog-date,
html body .blog-cards-wrap [data-article-card] .card-time {
  font-family: var(--bl-font-b) !important;
  font-size: 11.5px !important;
  color: var(--bl-muted) !important;
}

/* Card title */
html body .blog-cards-wrap h3,
html body .blog-cards-wrap [data-article-card] h3 {
  font-family: var(--bl-font-h) !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: #D8E8FF !important;
  line-height: 1.32 !important;
  margin: 0 !important;
  letter-spacing: -0.01em !important;
}

/* Card excerpt */
html body .blog-cards-wrap p,
html body .blog-cards-wrap [data-article-card] p {
  font-family: var(--bl-font-b) !important;
  font-size: 13px !important;
  color: var(--bl-muted) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  flex: 1 !important;
}

/* Card CTA link */
html body .blog-cards-wrap .text-link,
html body .blog-cards-wrap [data-article-card] .card-cta {
  font-family: var(--bl-font-b) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: var(--bl-teal) !important;
  margin-top: auto !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  transition: color 0.14s !important;
}

/* Load more */
html body .blog-load-more-wrap {
  text-align: center !important;
  padding-top: 40px !important;
}
html body .blog-load-more-btn {
  font-family: var(--bl-font-h) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--bl-text) !important;
  border: 1px solid var(--bl-border) !important;
  background: rgba(255,255,255,0.04) !important;
  padding: 12px 32px !important;
  border-radius: 9px !important;
  cursor: pointer !important;
  transition: color 0.14s, border-color 0.14s, background 0.14s !important;
}
html body .blog-load-more-btn:hover {
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.07) !important;
}

/* Empty state */
html body .blog-empty-state-v80 {
  font-family: var(--bl-font-b) !important;
  font-size: 14px !important;
  color: var(--bl-muted) !important;
  text-align: center !important;
  padding: 48px 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   ARTICLE PAGE
   ═══════════════════════════════════════════════════════════════════ */

html body .px83-article {
  background: var(--bl-bg0) !important;
}

html body .section-blog-article {
  background: var(--bl-bg0) !important;
  padding: 40px 0 96px !important;
}

/* Back link */
html body .article-back,
html body .article-back-clean {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: var(--bl-font-b) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--bl-muted) !important;
  text-decoration: none !important;
  margin-bottom: 32px !important;
  padding: 7px 14px !important;
  border-radius: 7px !important;
  border: 1px solid var(--bl-border) !important;
  background: rgba(255,255,255,0.03) !important;
  transition: color 0.14s, border-color 0.14s, background 0.14s !important;
}
html body .article-back:hover,
html body .article-back-clean:hover {
  color: var(--bl-text) !important;
  border-color: var(--bl-border-h) !important;
  background: rgba(255,255,255,0.06) !important;
}

/* Article header card */
html body .article-header-card {
  background: rgba(8,18,44,0.80) !important;
  border: 1px solid rgba(24,72,196,0.20) !important;
  border-radius: 16px !important;
  padding: 40px 48px !important;
  margin-bottom: 36px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.24) !important;
}
html body .article-header-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(24,72,196,0.10), transparent) !important;
  pointer-events: none !important;
}
/* Ligne d'accent en haut */
html body .article-header-card::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--bl-teal), var(--bl-blue)) !important;
}

html body .article-meta-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  position: relative !important;
}
html body .article-meta-row .pill {
  font-family: var(--bl-font-c) !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--bl-teal) !important;
  background: rgba(0,185,145,0.09) !important;
  border: 1px solid rgba(0,185,145,0.22) !important;
  padding: 4px 11px !important;
  border-radius: 100px !important;
}
html body .article-meta-row .blog-date {
  font-family: var(--bl-font-b) !important;
  font-size: 12.5px !important;
  color: var(--bl-muted) !important;
}
html body .article-header-card h1 {
  font-family: var(--bl-font-h) !important;
  font-size: clamp(24px, 2.8vw, 38px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.022em !important;
  color: #FFFFFF !important;
  margin: 0 0 16px !important;
  position: relative !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background: none !important;
}
html body .article-header-lead {
  font-family: var(--bl-font-b) !important;
  font-size: 16px !important;
  color: #8AAABF !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  position: relative !important;
}

/* ── 2-column grid ── */
html body .article-clean-grid {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

/* ── SIDEBAR ── */
html body .article-sidebar,
html body .article-sidebar-clean {
  background: rgba(8,18,44,0.75) !important;
  border: 1px solid rgba(24,72,196,0.18) !important;
  border-radius: 14px !important;
  padding: 24px !important;
  position: sticky !important;
  top: 90px !important;
  max-height: calc(100vh - 110px) !important;
  overflow-y: auto !important;
  scrollbar-width: thin !important;
}
html body .article-sidebar h2 {
  font-family: var(--bl-font-h) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: var(--bl-muted) !important;
  margin: 0 0 16px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--bl-border) !important;
}
html body .article-toc {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin-bottom: 28px !important;
}
html body .article-toc a {
  font-family: var(--bl-font-b) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--bl-muted) !important;
  text-decoration: none !important;
  padding: 8px 12px !important;
  border-radius: 7px !important;
  border-left: 2px solid transparent !important;
  transition: color 0.14s, background 0.14s, border-color 0.14s !important;
  line-height: 1.4 !important;
  display: block !important;
}
html body .article-toc a:hover {
  color: var(--bl-text) !important;
  background: rgba(255,255,255,0.04) !important;
  border-left-color: rgba(0,185,145,0.45) !important;
}
html body .article-toc a.active {
  color: #C0D8F0 !important;
  background: rgba(24,72,196,0.10) !important;
  border-left-color: var(--bl-teal) !important;
}

/* Sidebar CTA */
html body .article-side-cta {
  background: rgba(6,14,36,0.80) !important;
  border: 1px solid rgba(24,72,196,0.22) !important;
  border-radius: 10px !important;
  padding: 18px 16px !important;
}
html body .article-side-cta strong {
  font-family: var(--bl-font-h) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #D0E4FF !important;
  display: block !important;
  margin-bottom: 8px !important;
}
html body .article-side-cta p {
  font-family: var(--bl-font-b) !important;
  font-size: 12px !important;
  color: var(--bl-muted) !important;
  line-height: 1.55 !important;
  margin: 0 0 14px !important;
}
html body .article-side-cta .button-primary,
html body .article-side-cta a.button-primary {
  font-family: var(--bl-font-h) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  background: var(--bl-blue) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  border: none !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
  box-shadow: 0 3px 14px rgba(24,72,196,0.32) !important;
  transition: background 0.16s, box-shadow 0.16s !important;
}
html body .article-side-cta .button-primary:hover,
html body .article-side-cta a.button-primary:hover {
  background: var(--bl-blue-lt) !important;
  box-shadow: 0 4px 20px rgba(24,72,196,0.48) !important;
}

/* ── ARTICLE PROSE ── */
html body .article-prose,
html body .article-prose-clean {
  background: rgba(8,16,38,0.78) !important;
  border: 1px solid var(--bl-border) !important;
  border-radius: 16px !important;
  padding: 40px 48px !important;
  min-width: 0 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18) !important;
}

/* Hero figure */
html body .article-figure-top {
  margin: 0 -48px 36px !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  overflow: hidden !important;
  background: rgba(6,14,32,0.90) !important;
  padding: 20px 24px !important;
}
html body .article-hero-image {
  width: 100% !important;
  height: auto !important;
  max-height: 280px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Summary cards grid */
html body .article-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
  gap: 14px !important;
  margin: 0 0 32px !important;
}
html body .article-summary-card {
  background: rgba(6,14,36,0.70) !important;
  border: 1px solid rgba(24,72,196,0.18) !important;
  border-radius: 10px !important;
  padding: 16px 18px !important;
  border-top: 2px solid rgba(0,185,145,0.38) !important;
}
html body .article-summary-card strong {
  font-family: var(--bl-font-h) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #C8DCF8 !important;
  display: block !important;
  margin-bottom: 6px !important;
}
html body .article-summary-card p {
  font-family: var(--bl-font-b) !important;
  font-size: 12.5px !important;
  color: var(--bl-muted) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* Intro paragraphs */
html body .article-prose p,
html body .article-prose-clean p {
  font-family: var(--bl-font-b) !important;
  font-size: 16px !important;
  color: #BDD0E8 !important;
  line-height: 1.80 !important;
  margin: 0 0 20px !important;
  letter-spacing: 0.002em !important;
}

/* Article sections */
html body .article-block {
  margin-bottom: 40px !important;
  padding-top: 8px !important;
  border-top: 1px solid var(--bl-border) !important;
}
html body .article-block:first-of-type { border-top: none !important; }

html body .article-block h2 {
  font-family: var(--bl-font-h) !important;
  font-size: clamp(18px, 2.2vw, 24px) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.016em !important;
  margin: 0 0 18px !important;
  line-height: 1.25 !important;
  padding-top: 28px !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background: none !important;
}
html body .article-block h3 {
  font-family: var(--bl-font-h) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #D8EAFF !important;
  margin: 0 0 12px !important;
  line-height: 1.3 !important;
  -webkit-text-fill-color: #D8EAFF !important;
  background: none !important;
}

/* Checklist */
html body .article-check-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
html body .article-check-list li {
  font-family: var(--bl-font-b) !important;
  font-size: 15px !important;
  color: #A8C0DC !important;
  line-height: 1.6 !important;
  padding: 10px 16px !important;
  background: rgba(6,14,36,0.55) !important;
  border: 1px solid var(--bl-border) !important;
  border-left: 3px solid rgba(0,185,145,0.38) !important;
  border-radius: 8px !important;
  position: relative !important;
}
html body .article-check-list li::before {
  content: '✓' !important;
  color: var(--bl-teal) !important;
  font-weight: 700 !important;
  margin-right: 10px !important;
}

/* Info card grid */
html body .article-card-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 14px !important;
  margin: 0 0 28px !important;
}
html body .article-info-card {
  background: rgba(8,18,44,0.70) !important;
  border: 1px solid var(--bl-border) !important;
  border-radius: 10px !important;
  padding: 18px 16px !important;
  transition: border-color 0.16s !important;
}
html body .article-info-card:hover { border-color: var(--bl-border-h) !important; }
html body .article-info-card h3 {
  font-family: var(--bl-font-h) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #C8DCF8 !important;
  margin: 0 0 8px !important;
  -webkit-text-fill-color: #C8DCF8 !important;
  background: none !important;
}
html body .article-info-card p {
  font-family: var(--bl-font-b) !important;
  font-size: 13px !important;
  color: var(--bl-muted) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Comparison / regular tables */
html body .article-compare-table-wrap,
html body .article-table-wrap {
  overflow-x: auto !important;
  margin: 0 0 28px !important;
  border-radius: 10px !important;
  border: 1px solid var(--bl-border) !important;
}
html body .article-compare-table,
html body .article-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-family: var(--bl-font-b) !important;
  font-size: 13.5px !important;
}
html body .article-compare-table thead th,
html body .article-table thead th {
  background: rgba(24,72,196,0.12) !important;
  color: #C0D8F0 !important;
  font-family: var(--bl-font-h) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 12px 16px !important;
  text-align: left !important;
  border-bottom: 1px solid rgba(24,72,196,0.20) !important;
}
html body .article-compare-table tbody tr,
html body .article-table tbody tr {
  border-bottom: 1px solid var(--bl-border) !important;
}
html body .article-compare-table tbody tr:last-child,
html body .article-table tbody tr:last-child { border-bottom: none !important; }
html body .article-compare-table tbody tr:nth-child(even),
html body .article-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.018) !important;
}
html body .article-compare-table tbody td,
html body .article-table tbody td {
  padding: 12px 16px !important;
  color: #A8C0DC !important;
  vertical-align: top !important;
}

/* In-article figure */
html body .article-figure-inline {
  margin: 0 0 28px !important;
  background: rgba(6,14,32,0.80) !important;
  border: 1px solid var(--bl-border) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  padding: 16px 20px !important;
  text-align: center !important;
}
html body .article-figure-inline img {
  max-width: 100% !important;
  max-height: 260px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}
html body .article-figure-inline figcaption {
  font-family: var(--bl-font-b) !important;
  font-size: 12px !important;
  color: var(--bl-muted) !important;
  text-align: center !important;
  margin-top: 10px !important;
}

/* Offer focus card */
html body .article-offer-focus {
  background: rgba(8,18,44,0.80) !important;
  border: 1px solid rgba(24,72,196,0.24) !important;
  border-radius: 12px !important;
  padding: 28px 30px !important;
  margin: 0 0 32px !important;
  position: relative !important;
  overflow: hidden !important;
}
html body .article-offer-focus::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--bl-teal), var(--bl-blue)) !important;
}
html body .article-offer-focus > .eyebrow {
  font-family: var(--bl-font-c) !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: var(--bl-teal) !important;
  display: block !important;
  margin-bottom: 12px !important;
}
html body .article-offer-focus h2 {
  font-family: var(--bl-font-h) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin: 0 0 10px !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background: none !important;
}
html body .article-offer-focus p {
  font-family: var(--bl-font-b) !important;
  font-size: 14px !important;
  color: var(--bl-muted) !important;
  margin: 0 0 20px !important;
}
html body .article-offer-focus .hero-actions {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}
html body .article-offer-focus .button-primary {
  font-family: var(--bl-font-h) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  background: var(--bl-blue) !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  border: none !important;
  padding: 11px 22px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 3px 16px rgba(24,72,196,0.36) !important;
}
html body .article-offer-focus .button-ghost {
  font-family: var(--bl-font-h) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #BDC8DC !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  background: rgba(255,255,255,0.04) !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
}

/* Links in article */
html body .article-block a,
html body .article-prose a:not(.button-primary):not(.button-ghost) {
  color: #5090F0 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(80,144,240,0.35) !important;
  transition: color 0.14s, border-color 0.14s !important;
}
html body .article-block a:hover { color: #78B0FF !important; border-color: rgba(120,176,255,0.55) !important; }

/* Section links list */
html body .article-block .section-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 16px 0 24px !important;
}
html body .article-block .section-links a {
  font-family: var(--bl-font-b) !important;
  font-size: 14px !important;
  color: #5090F0 !important;
  padding: 9px 14px !important;
  background: rgba(24,72,196,0.07) !important;
  border: 1px solid rgba(24,72,196,0.18) !important;
  border-radius: 7px !important;
  border-bottom: 1px solid rgba(24,72,196,0.18) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: background 0.14s, border-color 0.14s !important;
}
html body .article-block .section-links a:hover {
  background: rgba(24,72,196,0.12) !important;
  border-color: rgba(24,72,196,0.30) !important;
  color: #78B0FF !important;
}
html body .article-block .section-links a::before {
  content: '→' !important;
  font-size: 13px !important;
  opacity: 0.7 !important;
}

/* ─── TOC active highlight (JS-driven, fallback) ─── */
html body .article-toc a[aria-current="true"],
html body .article-toc a.is-active {
  color: #C0D8F0 !important;
  background: rgba(24,72,196,0.10) !important;
  border-left-color: var(--bl-teal) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  html body .blog-index-shell {
    grid-template-columns: 1fr !important;
  }
  html body .blog-featured-panel-v80 {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  html body .blog-insights-grid {
    grid-column: 1 !important;
    grid-row: 3 !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 1023px) {
  html body .article-clean-grid {
    grid-template-columns: 1fr !important;
  }
  html body .article-sidebar {
    position: relative !important;
    top: auto !important;
    max-height: none !important;
  }
  html body .article-prose,
  html body .article-prose-clean { padding: 28px 24px !important; }
  html body .article-figure-top { margin: 0 -24px 28px !important; }
  html body .article-header-card { padding: 28px 28px !important; }
}
@media (max-width: 767px) {
  html body .blog-insights-grid { grid-template-columns: 1fr !important; }
  html body .hero-blog { padding: 52px 0 48px !important; }
  html body .article-header-card { padding: 22px 20px !important; }
  html body .article-prose,
  html body .article-prose-clean { padding: 20px 18px !important; }
  html body .article-figure-top { margin: 0 -18px 22px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   SPÉCIFICITÉ HAUTE — override v95-bundle glass-card dark text
   v95-bundle: .section .glass-card:not(...)×7 h2 = (0,9,1)=91 pts !important
   Notre sélecteur ci-dessous = (0,9,7)=97 pts !important → on gagne
   ═══════════════════════════════════════════════════════════════════ */

/* Alias pratique : l'article prose est identifié par ces 6 éléments/classes */
/* Structure HTML : main.px83-article > section.section.section-blog-article.article-page-clean > .article-clean-grid > article.glass-card.article-prose.article-prose-clean > section.article-block > h2 */

html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean section.article-block h2,
html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean section.article-block h3,
html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean section.article-block h4 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean section.article-block p,
html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean section.article-block li {
  color: #B8CEDE !important;
  -webkit-text-fill-color: #B8CEDE !important;
}

html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean section.article-block li span {
  color: #B8CEDE !important;
  -webkit-text-fill-color: #B8CEDE !important;
}

html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean section.article-block strong {
  color: #D4E4F4 !important;
  -webkit-text-fill-color: #D4E4F4 !important;
}

/* Article offer-focus inside prose — needs (0,10,8)=108 pts to beat glass-card :not()×7 rule */
html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean section.article-offer-focus.glass-card h2,
html body .article-prose .article-offer-focus h2,
html body .article-prose-clean .article-offer-focus h2 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background: none !important;
  -webkit-background-clip: unset !important;
}
/* High-spec for offer-focus p — glass-card :not()×7 p rule at spec 91 */
html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean section.article-offer-focus.glass-card p,
html body .article-prose .article-offer-focus p,
html body .article-prose-clean .article-offer-focus p {
  color: #A8BCD4 !important;
  -webkit-text-fill-color: #A8BCD4 !important;
}
/* Eyebrow override — v95-bundle .article-prose .article-offer-focus .eyebrow = spec (0,3,0)=30 → need 31+ */
html body .article-prose-clean .article-offer-focus .eyebrow,
html body .article-prose .article-offer-focus .eyebrow {
  color: var(--bl-teal) !important;
  -webkit-text-fill-color: var(--bl-teal) !important;
  background: rgba(0,185,145,0.08) !important;
  border: 1px solid rgba(0,185,145,0.22) !important;
  border-radius: 100px !important;
  padding: 4px 12px !important;
  box-shadow: none !important;
  font-size: 9.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
}

/* Article bottom CTA (glass-card inside prose) */
html body .article-prose .article-bottom-cta h2,
html body .article-prose-clean .article-bottom-cta h2 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background: none !important;
}
html body .article-prose .article-bottom-cta p,
html body .article-prose-clean .article-bottom-cta p {
  color: #A8BCD4 !important;
  -webkit-text-fill-color: #A8BCD4 !important;
}

/* Blog card body text — v95-bundle & v117 set #4C6480 (too dark) */
html body .blog-home-card-copy p,
html body .glass-card.blog-home-card .blog-home-card-copy p {
  color: #7A9EB8 !important;
  -webkit-text-fill-color: #7A9EB8 !important;
}
html body .blog-home-card-copy h3,
html body .glass-card.blog-home-card .blog-home-card-copy h3 {
  color: #D8ECFF !important;
  -webkit-text-fill-color: #D8ECFF !important;
}
html body .blog-date { color: #6A8BAA !important; -webkit-text-fill-color: #6A8BAA !important; }

/* Article prose body text (v95-bundle .article-prose .article-block p spec 21 → override 23) */
html body .article-prose .article-block p,
html body .article-prose-clean .article-block p {
  color: #B8CEDE !important;
  -webkit-text-fill-color: #B8CEDE !important;
}
html body .article-prose .article-block li,
html body .article-prose-clean .article-block li {
  color: #B8CEDE !important;
  -webkit-text-fill-color: #B8CEDE !important;
}

/* Article summary cards text — glass-card :not()×7 strong rule spec 91 → override with (0,10,6) */
html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean .glass-card.article-summary-card strong,
html body .article-prose .article-summary-card strong,
html body .article-prose-clean .article-summary-card strong {
  color: #C8DCF8 !important;
  -webkit-text-fill-color: #C8DCF8 !important;
}
html body main.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid article.glass-card.article-prose.article-prose-clean .glass-card.article-summary-card p,
html body .article-prose .article-summary-card p,
html body .article-prose-clean .article-summary-card p {
  color: #7A9EB8 !important;
  -webkit-text-fill-color: #7A9EB8 !important;
}

/* Article info cards text */
html body .article-prose .article-info-card h3,
html body .article-prose-clean .article-info-card h3 {
  color: #C8DCF8 !important;
  -webkit-text-fill-color: #C8DCF8 !important;
}
html body .article-prose .article-info-card p,
html body .article-prose-clean .article-info-card p {
  color: #7A9EB8 !important;
  -webkit-text-fill-color: #7A9EB8 !important;
}

/* Sidebar h2 — glass-card :not()×7 rule spec 91 → override with 96 pts */
html body main.px83-page.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid aside.glass-card.article-sidebar.article-sidebar-clean h2 {
  color: var(--bl-muted) !important;
  -webkit-text-fill-color: var(--bl-muted) !important;
  background: none !important;
}

/* Sidebar h2 strong text */
html body main.px83-page.px83-article section.section.section-blog-article.article-page-clean .article-clean-grid aside.glass-card.article-sidebar.article-sidebar-clean strong {
  color: #C0D8F0 !important;
  -webkit-text-fill-color: #C0D8F0 !important;
}

/* TOC links — override glowing cyan from v95-bundle main a:not()×6 = (0,6,2)=62pts
   Our selector: (0,8,7)=... b-component 8>6 → we win */
html body main.px83-page.px83-article section.section-blog-article .article-clean-grid aside.glass-card.article-sidebar.article-sidebar-clean nav.article-toc a {
  color: var(--bl-muted) !important;
  -webkit-text-fill-color: var(--bl-muted) !important;
  text-decoration: none !important;
  border-bottom: none !important;
}
html body main.px83-page.px83-article section.section-blog-article .article-clean-grid aside.glass-card.article-sidebar.article-sidebar-clean nav.article-toc a:hover {
  color: var(--bl-text) !important;
  -webkit-text-fill-color: var(--bl-text) !important;
}
