/* =========================================================
   LUVIMOBILE — Guide / Blog Template CSS
   Complément au fichier main.css Tailwind du site
   ========================================================= */

:root {
  --luvi-navy:    #020051;
  --luvi-rose:    #E7014E;
  --luvi-rose-d:  #bf0040;
  --luvi-rose-bg: #fff2f6;
  --luvi-white:   #ffffff;
  --luvi-gray-1:  #f4efe7;
  --luvi-gray-3:  #1a1a1c99;
  --luvi-gray-4:  #1a1a1c;
  --luvi-border:  #dfd1c5;
  --luvi-r:       18px;
  --luvi-r-sm:    10px;
  --luvi-font:    'Inter Tight', -apple-system, 'Helvetica Neue', sans-serif;
  --luvi-orange:  #FF6600;
}

.luvi-guide *,
.luvi-guide *::before,
.luvi-guide *::after { box-sizing: border-box; }

/* =========================================================
   HERO — pleine largeur même sous un conteneur 1200px
   ========================================================= */
.luvi-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 80px calc(50vw - 50%) 0;
  background: var(--luvi-white);
  position: relative;
  overflow: hidden;
}
.luvi-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--luvi-navy) 0%, var(--luvi-rose) 60%, transparent 100%);
}

.luvi-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .luvi-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .luvi-hero-visual { display: none; }
}

.luvi-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--luvi-rose);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.luvi-hero-tag span {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--luvi-rose);
  border-radius: 50%;
}

.luvi-hero h1 {
  font-family: var(--luvi-font);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--luvi-navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 20px;
  white-space: pre-line;
}
.luvi-hero h1 em { font-style: normal; color: var(--luvi-rose); }

.luvi-hero-sub {
  font-size: 19px;
  color: var(--luvi-gray-3);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 520px;
  font-weight: 400;
}

.luvi-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--luvi-gray-3);
  font-weight: 500;
}
.luvi-hero-meta i { color: var(--luvi-rose); margin-right: 5px; font-size: 12px; }

.luvi-hero-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--luvi-r) var(--luvi-r) 0 0;
  box-shadow: 0 20px 60px rgba(2,0,81,.15);
}
.luvi-hero-visual-cap {
  background: var(--luvi-navy);
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 0 0 var(--luvi-r) var(--luvi-r);
}
.luvi-hero-visual-cap i { color: var(--luvi-rose); font-size: 11px; }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.luvi-crumb { padding: 14px 0; border-bottom: 1px solid var(--luvi-border); }
.luvi-crumb ol {
  display: flex; gap: 5px; list-style: none;
  font-size: 13px; color: var(--luvi-gray-3);
  flex-wrap: wrap; align-items: center; margin: 0; padding: 0;
}
.luvi-crumb li + li::before { content: '/'; margin-right: 5px; opacity: .4; }
.luvi-crumb a { color: var(--luvi-gray-4); font-weight: 500; text-decoration: none; }
.luvi-crumb a:hover { color: var(--luvi-rose); }

/* =========================================================
   PAGE LAYOUT
   ========================================================= */
.luvi-page-wrap { padding: 64px 0 96px; }

.luvi-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1040px) {
  .luvi-grid { grid-template-columns: 1fr; }
  .luvi-sidebar { display: none; }
}

/* =========================================================
   SIDEBAR — sticky avec clearance header WordPress
   ========================================================= */
.luvi-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.luvi-sidebar::-webkit-scrollbar { display: none; }

/* ── TOC ── */
.luvi-toc-box {
  background: #fff;
  border: 1px solid var(--luvi-border);
  border-radius: var(--luvi-r-sm);
  padding: 18px 16px;
}
.luvi-toc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--luvi-gray-3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.luvi-toc-label::before {
  content: '';
  width: 14px; height: 2px;
  background: var(--luvi-rose);
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}
.luvi-toc-nav { list-style: none; padding: 0; margin: 0; }
.luvi-toc-nav li { border-top: 1px solid var(--luvi-border); }
.luvi-toc-nav li:last-child { border-bottom: 1px solid var(--luvi-border); }
.luvi-toc-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--luvi-gray-3);
  text-decoration: none;
  transition: color .15s, padding-left .15s;
}
.luvi-toc-nav a:hover { color: var(--luvi-rose); padding-left: 4px; }
.luvi-toc-nav a i { font-size: 9px; color: var(--luvi-rose); opacity: .5; width: 13px; flex-shrink: 0; }
.luvi-toc-nav .n { font-size: 9px; font-weight: 800; color: var(--luvi-rose); opacity: .6; min-width: 16px; }

/* =========================================================
   SIDEBAR CARD — PARTICULIERS (blanc + accent Orange réseau)
   ========================================================= */
.luvi-pub-part {
  border-radius: var(--luvi-r);
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--luvi-orange);
  box-shadow: 0 6px 28px rgba(255,102,0,.18);
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
  text-decoration: none;
  display: block;
}
.luvi-pub-part:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255,102,0,.28);
}

/* Barre animée orange en haut */
.luvi-pub-part::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--luvi-orange) 0%, #FF9900 50%, var(--luvi-orange) 100%);
  background-size: 200% 100%;
  animation: luvi-slide-bar 2s linear infinite;
}
@keyframes luvi-slide-bar {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Badge "OFFRE" pulsant */
.luvi-pub-badge {
  position: absolute;
  top: 16px; right: 14px;
  background: var(--luvi-rose);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  z-index: 5;
  animation: luvi-pulse-badge 2s ease-in-out infinite;
}
@keyframes luvi-pulse-badge {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(231,1,78,.5); }
  50%       { transform: scale(1.07); box-shadow: 0 0 0 8px rgba(231,1,78,0); }
}

.luvi-pub-part .luvi-pub-head {
  padding: 16px 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.luvi-pub-network-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--luvi-orange);
  animation: luvi-blink 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes luvi-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}
.luvi-pub-network-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--luvi-orange);
}

.luvi-pub-part .luvi-pub-body { padding: 12px 16px 20px; }

.luvi-pub-part .luvi-pub-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--luvi-gray-3); margin-bottom: 4px;
}
.luvi-pub-part .luvi-pub-title {
  font-family: var(--luvi-font);
  font-size: 18px; font-weight: 800;
  color: var(--luvi-navy); letter-spacing: -.03em;
  line-height: 1.15; margin: 0 0 4px;
}
.luvi-pub-part .luvi-pub-title em { font-style: normal; color: var(--luvi-orange); }

.luvi-pub-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin: 10px 0 14px;
  line-height: 1;
}
.luvi-pub-price .from   { font-size: 11px; font-weight: 600; color: #aaa; margin-bottom: 6px; margin-right: 2px; }
.luvi-pub-price .currency { font-size: 18px; font-weight: 800; color: var(--luvi-orange); margin-bottom: 7px; }
.luvi-pub-price .amount {
  font-family: var(--luvi-font);
  font-size: 40px; font-weight: 900;
  color: var(--luvi-orange); letter-spacing: -0.04em; line-height: 1;
}
.luvi-pub-price .period { font-size: 12px; font-weight: 500; color: var(--luvi-gray-3); margin-bottom: 5px; margin-left: 2px; }

.luvi-pub-features { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 6px; }
.luvi-pub-features li { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--luvi-gray-4); font-weight: 500; }
.luvi-pub-features li i { color: var(--luvi-orange); font-size: 11px; flex-shrink: 0; }

.luvi-pub-cta-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: var(--luvi-orange);
  color: #fff;
  font-family: var(--luvi-font);
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  text-align: center;
}
.luvi-pub-cta-orange:hover { background: #e55a00; transform: scale(1.02); text-decoration: none; color: #fff; }

.luvi-pub-mention { text-align: center; font-size: 10px; color: var(--luvi-gray-3); margin-top: 9px; }

/* =========================================================
   SIDEBAR CARD — ENTREPRISES (navy + rose)
   ========================================================= */
.luvi-pub-pro {
  border-radius: var(--luvi-r);
  overflow: hidden;
  background: var(--luvi-navy);
  border: 1.5px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 28px rgba(2,0,81,.28);
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
  display: block;
  text-decoration: none;
}
.luvi-pub-pro:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(2,0,81,.38);
}

/* Halo rose animé */
.luvi-pub-pro::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(231,1,78,.28) 0%, transparent 70%);
  animation: luvi-halo 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes luvi-halo {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%       { transform: scale(1.5); opacity: 1; }
}

.luvi-pub-pro .luvi-pub-head {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative; z-index: 1;
}
.luvi-pub-pro-ico {
  width: 36px; height: 36px;
  background: var(--luvi-rose);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff; flex-shrink: 0;
}
.luvi-pub-pro .luvi-pub-head .eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--luvi-rose);
  display: block; margin-bottom: 2px;
}
.luvi-pub-pro .luvi-pub-head strong {
  font-size: 14px; font-weight: 700;
  color: #fff; letter-spacing: -.02em; display: block;
}

.luvi-pub-pro .luvi-pub-body { padding: 16px; position: relative; z-index: 1; }

.luvi-pub-pro .luvi-pub-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  margin-bottom: 14px;
}

.luvi-pub-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.luvi-pub-badge-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 50px; white-space: nowrap;
}
.luvi-pub-badge-pill.hl { background: var(--luvi-rose); border-color: var(--luvi-rose); color: #fff; }

.luvi-pub-cta-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: transparent;
  color: #fff;
  font-family: var(--luvi-font);
  font-weight: 700; font-size: 13.5px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--luvi-rose);
  text-decoration: none;
  transition: background .2s, transform .15s;
  text-align: center;
  position: relative; z-index: 1;
}
.luvi-pub-cta-pro:hover { background: var(--luvi-rose); transform: scale(1.02); text-decoration: none; color: #fff; }

/* =========================================================
   BOUTONS GÉNÉRIQUES
   ========================================================= */
.luvi-btn-rose {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--luvi-rose); color: #fff;
  font-family: var(--luvi-font); font-weight: 600; font-size: 13.5px;
  padding: 11px 18px; border-radius: 50px;
  text-decoration: none; transition: background .2s; letter-spacing: -.01em;
}
.luvi-btn-rose:hover { background: var(--luvi-rose-d); text-decoration: none; color: #fff; }

.luvi-btn-rose-ol {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--luvi-rose); color: var(--luvi-rose);
  font-family: var(--luvi-font); font-weight: 600; font-size: 14px;
  padding: 11px 22px; border-radius: 50px; text-decoration: none;
  white-space: nowrap; letter-spacing: -.01em;
  transition: background .2s, color .2s; flex-shrink: 0;
}
.luvi-btn-rose-ol:hover { background: var(--luvi-rose); color: #fff; text-decoration: none; }

/* =========================================================
   ARTICLE
   ========================================================= */
.luvi-article { min-width: 0; }
.luvi-s { margin-bottom: 64px; }

.luvi-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--luvi-rose);
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.luvi-eyebrow i { font-size: 10px; }

.luvi-s h2 {
  font-family: var(--luvi-font);
  font-size: clamp(22px, 2.8vw, 30px); font-weight: 700;
  color: var(--luvi-navy); letter-spacing: -0.03em; line-height: 1.15;
  margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid var(--luvi-border);
}
.luvi-s h3 {
  font-family: var(--luvi-font); font-size: 19px; font-weight: 600;
  color: var(--luvi-gray-4); letter-spacing: -0.02em; margin: 32px 0 10px;
}
.luvi-lead {
  font-size: 17px; font-weight: 500; color: var(--luvi-gray-4);
  border-left: 3px solid var(--luvi-rose); padding-left: 18px;
  margin-bottom: 24px; line-height: 1.65;
}
.luvi-article p { margin-bottom: 1.1em; color: var(--luvi-gray-3); font-size: 17px; line-height: 1.65; }
.luvi-article p:last-child { margin-bottom: 0; }
.luvi-article strong { color: var(--luvi-gray-4); font-weight: 600; }

/* =========================================================
   IMAGES
   ========================================================= */
.luvi-img-block { border-radius: var(--luvi-r); overflow: hidden; margin: 28px 0; box-shadow: 0 4px 32px rgba(2,0,81,.1); }
.luvi-img-block img { width: 100%; max-height: 320px; object-fit: cover; }
.luvi-img-cap { background: var(--luvi-gray-1); padding: 10px 16px; font-size: 12px; color: var(--luvi-gray-3); display: flex; align-items: center; gap: 6px; border-top: 1px solid var(--luvi-border); }
.luvi-img-cap i { color: var(--luvi-rose); font-size: 11px; }

.luvi-tuto-block { border-radius: var(--luvi-r); overflow: hidden; margin: 0 0 36px; border: 1px solid var(--luvi-border); box-shadow: 0 2px 20px rgba(2,0,81,.07); }
.luvi-tuto-label { background: var(--luvi-navy); color: rgba(255,255,255,.75); font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 9px 16px; display: flex; align-items: center; gap: 7px; }
.luvi-tuto-label i { color: var(--luvi-rose); }
.luvi-tuto-block img { width: 100%; max-height: 360px; object-fit: cover; }
.luvi-tuto-cap { padding: 9px 16px; font-size: 12px; color: var(--luvi-gray-3); display: flex; align-items: center; gap: 6px; border-top: 1px solid var(--luvi-border); background: var(--luvi-gray-1); }
.luvi-tuto-cap i { color: var(--luvi-rose); font-size: 11px; }

/* =========================================================
   OS CARDS
   ========================================================= */
.luvi-os-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
@media (max-width: 580px) { .luvi-os-grid { grid-template-columns: 1fr; } }

.luvi-os-card { border: 1px solid var(--luvi-border); border-radius: var(--luvi-r-sm); padding: 20px; background: var(--luvi-white); transition: box-shadow .2s; }
.luvi-os-card:hover { box-shadow: 0 4px 20px rgba(2,0,81,.08); }
.luvi-os-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--luvi-border); }
.luvi-os-ico { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.luvi-os-ico.android { background: #ecfdf5; color: #059669; }
.luvi-os-ico.ios { background: var(--luvi-gray-1); color: var(--luvi-navy); }
.luvi-os-name { font-size: 14px; font-weight: 600; color: var(--luvi-gray-4); letter-spacing: -.01em; }
.luvi-os-path { font-size: 11.5px; color: var(--luvi-gray-3); margin-top: 1px; }

/* =========================================================
   STEPS
   ========================================================= */
.luvi-steps { list-style: none; counter-reset: luvi-step; padding: 0; margin: 0; }
.luvi-steps li { counter-increment: luvi-step; display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.luvi-steps li::before {
  content: counter(luvi-step);
  min-width: 26px; height: 26px;
  background: var(--luvi-navy); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.luvi-steps li p { margin: 0; font-size: 16px; }

/* =========================================================
   NOTICES
   ========================================================= */
.luvi-notice { display: flex; gap: 12px; align-items: flex-start; border-radius: var(--luvi-r-sm); padding: 14px 16px; margin: 20px 0; }
.luvi-n-warn { background: #fffbeb; border: 1px solid #fde68a; }
.luvi-n-ok   { background: #ecfdf5; border: 1px solid #a7f3d0; }
.luvi-n-info { background: #eff6ff; border: 1px solid #bfdbfe; }
.luvi-n-rose { background: var(--luvi-rose-bg); border: 1px solid #fca5a5; }
.luvi-notice > i { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.luvi-n-warn > i { color: #d97706; }
.luvi-n-ok   > i { color: #059669; }
.luvi-n-info > i { color: #2563eb; }
.luvi-n-rose > i { color: var(--luvi-rose); }
.luvi-notice .nt { flex: 1; }
.luvi-notice .nt strong { font-size: 13.5px; font-weight: 700; color: var(--luvi-gray-4); display: block; margin-bottom: 2px; }
.luvi-notice .nt p { margin: 0; font-size: 13.5px; }

/* =========================================================
   METHOD BOX
   ========================================================= */
.luvi-method { border-radius: var(--luvi-r-sm); overflow: hidden; margin: 20px 0; border: 1px solid var(--luvi-border); }
.luvi-method-head { background: var(--luvi-rose); color: #fff; padding: 12px 18px; font-size: 17px; font-weight: 600; letter-spacing: -.01em; display: flex; align-items: center; gap: 8px; }
.luvi-method-head i { color: var(--luvi-navy); }
.luvi-method-body { padding: 20px; background: var(--luvi-white); }

/* =========================================================
   TABLE
   ========================================================= */
.luvi-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--luvi-r-sm); border: 1px solid var(--luvi-border); }
.luvi-table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.luvi-table-wrap th { background: var(--luvi-navy); color: #fff; padding: 12px 16px; font-weight: 600; text-align: left; font-size: 13px; }
.luvi-table-wrap td { padding: 11px 16px; border-bottom: 1px solid var(--luvi-border); vertical-align: middle; color: var(--luvi-gray-3); }
.luvi-table-wrap tr:last-child td { border-bottom: none; }
.luvi-table-wrap tr:nth-child(even) td { background: var(--luvi-gray-1); }
.luvi-badge-ok    { background: #ecfdf5; color: #065f46; padding: 2px 9px; border-radius: 50px; font-size: 11.5px; font-weight: 700; }
.luvi-badge-no    { background: #fef2f2; color: #991b1b; padding: 2px 9px; border-radius: 50px; font-size: 11.5px; font-weight: 700; }
.luvi-badge-maybe { background: #fffbeb; color: #92400e; padding: 2px 9px; border-radius: 50px; font-size: 11.5px; font-weight: 700; }

/* =========================================================
   STATS / COLS
   ========================================================= */
.luvi-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
@media (max-width: 540px) { .luvi-cols { grid-template-columns: 1fr; } }
.luvi-col-c { border: 1px solid var(--luvi-border); border-radius: var(--luvi-r-sm); padding: 20px 14px; text-align: center; }
.luvi-col-c .big { font-family: var(--luvi-font); font-size: 34px; font-weight: 700; color: var(--luvi-rose); letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.luvi-col-c .lbl { font-size: 13.5px; font-weight: 600; color: var(--luvi-gray-4); margin-bottom: 3px; }
.luvi-col-c .sub { font-size: 12px; color: var(--luvi-gray-3); }

/* =========================================================
   CHECKLIST
   ========================================================= */
.luvi-chk { list-style: none; margin: 14px 0; padding: 0; }
.luvi-chk li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--luvi-border); font-size: 15px; color: var(--luvi-gray-3); }
.luvi-chk li:last-child { border-bottom: none; }
.luvi-chk li i { color: #059669; font-size: 13px; flex-shrink: 0; margin-top: 4px; }

/* =========================================================
   PROMO IN-ARTICLE
   ========================================================= */
.luvi-promo {
  background: var(--luvi-navy); border-radius: var(--luvi-r);
  padding: 32px; margin: 48px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.luvi-promo-text .tag { font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--luvi-rose); margin-bottom: 8px; display: block; }
.luvi-promo-text h3 { font-family: var(--luvi-font); font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1.2; margin: 0 0 6px; }
.luvi-promo-text p { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.luvi-faq { margin: 18px 0; }
.luvi-faq details { border-top: 1px solid var(--luvi-border); }
.luvi-faq details:last-child { border-bottom: 1px solid var(--luvi-border); }
.luvi-faq details[open] { border-top-color: var(--luvi-rose); }
.luvi-faq summary {
  padding: 16px 0; cursor: pointer; font-weight: 600; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  list-style: none; user-select: none; color: var(--luvi-gray-4);
}
.luvi-faq summary::-webkit-details-marker { display: none; }
.luvi-faq .sq { display: flex; align-items: center; gap: 9px; }
.luvi-faq .sq i { color: var(--luvi-rose); font-size: 12px; width: 16px; flex-shrink: 0; }
.luvi-faq .plus { color: var(--luvi-rose); font-size: 22px; font-weight: 300; line-height: 1; flex-shrink: 0; transition: transform .2s; }
.luvi-faq details[open] .plus { transform: rotate(45deg); }
.luvi-faq details[open] summary { color: var(--luvi-rose); }
.luvi-faq-ans { padding: 0 0 18px; font-size: 15px; color: var(--luvi-gray-3); line-height: 1.65; }
.luvi-faq-ans p { margin-bottom: 8px; font-size: 15px; }
.luvi-faq-ans p:last-child { margin-bottom: 0; }

/* CODE INLINE */
.luvi-article code {
  background: var(--luvi-gray-1); border: 1px solid var(--luvi-border);
  border-radius: 5px; padding: 1px 6px; font-size: 13px; color: var(--luvi-navy);
  font-family: 'SF Mono', 'Menlo', monospace;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.luvi-cta { background: var(--luvi-navy); border-radius: var(--luvi-r); padding: 56px 48px; text-align: center; margin-top: 64px; position: relative; overflow: hidden; }
.luvi-cta::after { content: ''; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(231,1,78,.15) 0%, transparent 70%); pointer-events: none; }
.luvi-cta h2 { font-family: var(--luvi-font); font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 12px; }
.luvi-cta h2 span { color: var(--luvi-rose); }
.luvi-cta p { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; }
.luvi-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.luvi-btn-primary { display: inline-flex; align-items: center; gap: 7px; background: var(--luvi-rose); color: #fff; font-family: var(--luvi-font); font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 50px; letter-spacing: -.01em; text-decoration: none; transition: background .2s; }
.luvi-btn-primary:hover { background: var(--luvi-rose-d); text-decoration: none; color: #fff; }

.luvi-btn-ghost { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: rgba(255,255,255,.75); font-family: var(--luvi-font); font-weight: 500; font-size: 15px; padding: 14px 28px; border-radius: 50px; border: 1px solid rgba(255,255,255,.25); letter-spacing: -.01em; text-decoration: none; transition: border-color .2s, color .2s; }
.luvi-btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; text-decoration: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .luvi-hero { padding-top: 52px; }
  .luvi-hero h1 { font-size: 30px; }
  .luvi-page-wrap { padding: 44px 0 72px; }
  .luvi-cta { padding: 40px 24px; }
  .luvi-promo { padding: 24px; }
}


/* ========================= Luvimobile Guide V2 =========================== */

/* ============================================================
   Luvimobile Guide — Article/Blog System v3
   Child Theme CSS — NexSas + Tailwind WordPress
   Optimisé SEO · EEAT · GEO · Réutilisable via PHP
   ============================================================ */

/* ── Variables locales (fallback si thème non chargé) ── */
:root {
  --lm-primary: var(--color-primary-500, #864ffe);
  --lm-primary-light: var(--color-primary-400, #a585ff);
  --lm-primary-50: var(--color-primary-50, #f4f2fe);
  --lm-primary-200: var(--color-primary-200, #dcd4ff);
  --lm-primary-600: var(--color-primary-600, #7c31f6);
  --lm-yellow: var(--color-ns-yellow, #f9eb57);
  --lm-green: var(--color-ns-green, #c6f56f);
  --lm-dark: var(--color-background-5, #13171e);
  --lm-bg1: var(--color-background-1, #fcfcfd);
  --lm-bg2: var(--color-background-2, #f9fafb);
  --lm-bg3: var(--color-background-3, #f4f5f8);
  --lm-stroke1: var(--color-stroke-1, #dfe4eb);
  --lm-stroke5: var(--color-stroke-5, #1b232f);
  --lm-text: var(--color-secondary, #1a1a1c);
  --lm-gray4: var(--color-gray-400, #9ca3af);
  --lm-gray6: var(--color-gray-600, #4b5563);
  --lm-gray7: var(--color-gray-700, #374151);
  --lm-font: var(--font-inter-tight, "Inter Tight", sans-serif);
  --lm-mono: var(--font-mono, "JetBrains Mono", "Courier New", monospace);
  --lm-radius: 1rem;
  --lm-radius-sm: 0.625rem;
  --lm-radius-lg: 1.25rem;
  --lm-shadow: 0 4px 24px rgba(0,0,0,0.07);
  --lm-shadow-md: 0 8px 40px rgba(134,79,254,0.12);
  --lm-toc-width: 260px;
}

/* ============================================================
   BARRE DE PROGRESSION LECTURE
   ============================================================ */
.ns-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lm-primary), var(--lm-yellow));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============================================================
   WRAPPER GLOBAL
   ============================================================ */
.ns-tutorial-wrap {
  font-family: var(--lm-font);
  color: var(--lm-text);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ns-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--lm-dark);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.ns-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(134,79,254,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(131,231,238,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.ns-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(134,79,254,0.15);
  border: 1px solid rgba(134,79,254,0.35);
  color: var(--lm-primary-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.ns-hero-title {
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-accent, #fcfcfc);
  max-width: 900px;
  margin: 0 auto 1.25rem;
  letter-spacing: -0.025em;
}

.ns-hero-desc {
  font-size: 1.125rem;
  color: rgba(252,252,252,0.55);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.ns-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: rgba(252,252,252,0.4);
  flex-wrap: wrap;
}
.ns-hero-meta span { display: flex; align-items: center; gap: 0.35rem; }
.ns-hero-meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(252,252,252,0.25);
}

/* Hero gradient texte */
.hero-text-gradient {
  background: linear-gradient(135deg, var(--lm-primary) 0%, var(--lm-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Breadcrumb SEO ── */
.ns-breadcrumb {
  background: var(--lm-bg2);
  border-bottom: 1px solid var(--lm-stroke1);
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
  color: var(--lm-gray4);
}
.ns-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  align-items: center;
}
.ns-breadcrumb li { display: flex; align-items: center; gap: 0.35rem; }
.ns-breadcrumb li + li::before { content: "›"; color: var(--lm-gray4); }
.ns-breadcrumb a {
  color: var(--lm-gray6);
  text-decoration: none;
  transition: color 0.2s;
}
.ns-breadcrumb a:hover { color: var(--lm-primary); }
.ns-breadcrumb [aria-current="page"] { color: var(--lm-text); font-weight: 500; }

/* ============================================================
   LAYOUT PRINCIPAL — SIDEBAR STICKY + ARTICLE
   ============================================================ */
.ns-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .ns-layout {
    grid-template-columns: var(--lm-toc-width) 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
  }
}

/* ============================================================
   SIDEBAR — STICKY (TOC + PUBS)
   ============================================================ */
.ns-toc-sidebar {
  position: sticky;
  top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── TOC ── */
.ns-toc {
  background: var(--lm-bg2);
  border: 1px solid var(--lm-stroke1);
  border-radius: var(--lm-radius);
  padding: 1.25rem 1.5rem;
}
.ns-toc-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lm-gray4);
  margin-bottom: 0.875rem;
}
.ns-toc ol {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: toc-counter;
}
.ns-toc ol li { counter-increment: toc-counter; margin-bottom: 0.05rem; }
.ns-toc ol li a {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--lm-gray6);
  text-decoration: none;
  padding: 0.35rem 0.45rem;
  border-radius: var(--lm-radius-sm);
  transition: all 0.18s;
  line-height: 1.4;
}
.ns-toc ol li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--lm-primary-light);
  min-width: 1.3rem;
  margin-top: 0.05rem;
}
.ns-toc ol li a:hover,
.ns-toc ol li a.active {
  background: var(--lm-primary-50);
  color: var(--lm-primary-600);
}
.ns-toc ol li a.active::before { color: var(--lm-primary); }
.ns-toc-divider {
  height: 1px;
  background: var(--lm-stroke1);
  margin: 0.875rem 0;
}
.ns-toc-reading-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--lm-gray4);
}

/* ── PUB LUVIMOBILE ── */
.ns-ad-card {
  border-radius: var(--lm-radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ns-ad-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lm-shadow-md);
}
.ns-ad-card--luvimobile {
  background: linear-gradient(145deg, #0f1217 0%, #1a1040 100%);
  border: 1px solid rgba(134,79,254,0.3);
  padding: 1.25rem;
}
.ns-ad-card--pro {
  background: linear-gradient(145deg, #13170f 0%, #1a2810 100%);
  border: 1px solid rgba(198,245,111,0.35);
  padding: 1.25rem;
}
.ns-ad-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.ns-ad-card--luvimobile .ns-ad-badge {
  background: rgba(134,79,254,0.2);
  border: 1px solid rgba(134,79,254,0.4);
  color: var(--lm-primary-light);
}
.ns-ad-card--pro .ns-ad-badge {
  background: rgba(198,245,111,0.15);
  border: 1px solid rgba(198,245,111,0.4);
  color: var(--lm-green);
}
.ns-ad-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.ns-ad-card--luvimobile .ns-ad-title { color: #fcfcfc; }
.ns-ad-card--pro .ns-ad-title { color: #fcfcfc; }
.ns-ad-desc {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0.875rem;
}
.ns-ad-card--luvimobile .ns-ad-desc { color: rgba(252,252,252,0.5); }
.ns-ad-card--pro .ns-ad-desc { color: rgba(252,252,252,0.5); }
.ns-ad-price {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ns-ad-card--luvimobile .ns-ad-price { color: var(--lm-yellow); }
.ns-ad-card--pro .ns-ad-price { color: var(--lm-green); }
.ns-ad-price-sub {
  font-size: 0.68rem;
  color: rgba(252,252,252,0.4);
  margin-bottom: 0.875rem;
}
.ns-ad-cta {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ns-ad-cta:hover { opacity: 0.85; }
.ns-ad-card--luvimobile .ns-ad-cta {
  background: linear-gradient(90deg, var(--lm-primary), #c084fc);
  color: #fff;
}
.ns-ad-card--pro .ns-ad-cta {
  background: var(--lm-green);
  color: #0f1c02;
}
.ns-ad-label {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── TOC Mobile ── */
.ns-toc-mobile {
  display: block;
  background: var(--lm-bg2);
  border: 1px solid var(--lm-stroke1);
  border-radius: var(--lm-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}
.ns-toc-mobile details summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--lm-text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ns-toc-mobile details summary::after { content: "▾"; font-size: 1rem; color: var(--lm-gray4); }
.ns-toc-mobile details[open] summary::after { content: "▴"; }
.ns-toc-mobile details .toc-list { margin-top: 1rem; padding-left: 1.1rem; }
.ns-toc-mobile details .toc-list li { padding: 0.3rem 0; font-size: 0.83rem; color: var(--lm-gray6); }
.ns-toc-mobile details .toc-list a { color: var(--lm-primary); text-decoration: none; }
@media (min-width: 1024px) {
  .ns-toc-mobile { display: none !important; }
  .ns-toc-sidebar { display: flex; }
}
@media (max-width: 1023px) {
  .ns-toc-sidebar { display: none; }
  .ns-toc-mobile { display: block; }
}

/* ============================================================
   ARTICLE — TYPOGRAPHIE & CONTENU
   ============================================================ */
.ns-article {
  min-width: 0;
}
.ns-article h2 {
  font-size: clamp(1.45rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--lm-text);
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  scroll-margin-top: 5rem;
}
.ns-article h2:first-child { margin-top: 0; padding-top: 0; }
.ns-article h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lm-text);
  margin: 1.75rem 0 0.6rem;
  scroll-margin-top: 5rem;
}
.ns-article h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lm-gray7);
  margin: 1.25rem 0 0.4rem;
}
.ns-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--lm-gray7);
  margin-bottom: 1.1rem;
}
.ns-article ul, .ns-article ol {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.ns-article li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lm-gray7);
  margin-bottom: 0.4rem;
}
.ns-article a {
  color: var(--lm-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ns-article strong { color: var(--lm-text); }

/* Inline code */
.ns-article code:not(pre code) {
  font-family: var(--lm-mono);
  font-size: 0.8em;
  background: var(--lm-primary-50);
  color: var(--lm-primary-600);
  padding: 0.15em 0.45em;
  border-radius: 0.3rem;
  border: 1px solid var(--lm-primary-200);
}

/* Séparateur section */
.ns-section-line {
  height: 1px;
  background: var(--lm-stroke1);
  margin: 2.5rem 0 0;
}

/* ============================================================
   IMAGES — PAYSAGE / PORTRAIT (SANS ZOOM)
   ============================================================ */
/* Image paysage 16/9 */
.ns-img-landscape {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--lm-radius);
  overflow: hidden;
  margin: 1.75rem 0;
  background: var(--lm-bg3);
  border: 1px solid var(--lm-stroke1);
  position: relative;
}
.ns-img-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Image portrait 3/4 */
.ns-img-portrait {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  border-radius: var(--lm-radius);
  overflow: hidden;
  margin: 1.75rem 0;
  background: var(--lm-bg3);
  border: 1px solid var(--lm-stroke1);
}
.ns-img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Image carrée */
.ns-img-square {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  border-radius: var(--lm-radius);
  overflow: hidden;
  margin: 1.75rem 0;
  background: var(--lm-bg3);
  border: 1px solid var(--lm-stroke1);
}
.ns-img-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Légende image */
.ns-img-caption {
  font-size: 0.78rem;
  color: var(--lm-gray4);
  text-align: center;
  margin-top: -1.2rem;
  margin-bottom: 1.75rem;
  font-style: italic;
  line-height: 1.5;
}

/* Grille 2 images */
.ns-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.ns-img-grid .ns-img-landscape { margin: 0; }

/* Image flottante gauche/droite */
.ns-img-float-right {
  float: right;
  width: min(45%, 320px);
  margin: 0 0 1.5rem 2rem;
  border-radius: var(--lm-radius);
  overflow: hidden;
  border: 1px solid var(--lm-stroke1);
}
.ns-img-float-left {
  float: left;
  width: min(45%, 320px);
  margin: 0 2rem 1.5rem 0;
  border-radius: var(--lm-radius);
  overflow: hidden;
  border: 1px solid var(--lm-stroke1);
}
.ns-img-float-right img,
.ns-img-float-left img {
  width: 100%;
  height: auto;
  display: block;
}
.ns-clearfix::after { content: ""; display: table; clear: both; }

/* ============================================================
   RÉSUMÉ CARD
   ============================================================ */
.ns-summary-card {
  background: linear-gradient(135deg, var(--lm-dark) 0%, #1a1f2e 100%);
  border: 1px solid var(--lm-stroke5);
  border-radius: var(--lm-radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.ns-summary-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134,79,254,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ns-summary-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent, #fcfcfc);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ns-summary-card ul { padding: 0; list-style: none; margin: 0; }
.ns-summary-card li {
  font-size: 0.875rem;
  color: rgba(252,252,252,0.65);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.ns-summary-card li:last-child { border-bottom: none; }
.ns-summary-card li::before {
  content: "✓";
  color: var(--lm-green);
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ============================================================
   CALLOUTS
   ============================================================ */
.ns-callout {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--lm-radius-sm);
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.65;
}
.ns-callout-icon { font-size: 1.1rem; margin-top: 0.05rem; flex-shrink: 0; }
.ns-callout p { margin: 0; font-size: inherit; color: inherit; }
.ns-callout strong { color: inherit; font-weight: 700; }
.ns-callout.info {
  background: var(--color-blue-50, #eff6ff);
  border: 1px solid var(--color-blue-100, #dbeafe);
  color: var(--color-blue-700, #1d4ed8);
}
.ns-callout.tip {
  background: #f0fdf4;
  border: 1px solid rgba(198,245,111,0.55);
  color: #166534;
}
.ns-callout.warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.ns-callout.danger {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
}
.ns-callout.purple {
  background: var(--lm-primary-50);
  border: 1px solid var(--lm-primary-200);
  color: var(--lm-primary-600);
}

/* ============================================================
   STEPS
   ============================================================ */
.ns-steps { display: flex; flex-direction: column; gap: 0.875rem; margin: 1.5rem 0; }
.ns-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--lm-bg2);
  border: 1px solid var(--lm-stroke1);
  border-radius: var(--lm-radius-sm);
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ns-step:hover {
  border-color: var(--lm-primary-200);
  box-shadow: 0 2px 12px rgba(134,79,254,0.07);
}
.ns-step-num {
  min-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--lm-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ns-step-body strong {
  display: block;
  font-weight: 600;
  font-size: 0.93rem;
  margin-bottom: 0.2rem;
  color: var(--lm-text);
}
.ns-step-body p { font-size: 0.875rem; color: var(--lm-gray6); margin: 0; line-height: 1.6; }

/* ============================================================
   CODE BLOCKS
   ============================================================ */
.ns-code-block {
  position: relative;
  background: var(--lm-dark);
  border: 1px solid var(--lm-stroke5);
  border-radius: var(--lm-radius-sm);
  overflow: hidden;
  margin: 1.5rem 0;
}
.ns-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1rem;
  background: var(--color-background-6, #0f1217);
  border-bottom: 1px solid var(--lm-stroke5);
}
.ns-code-lang {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lm-primary-light);
}
.ns-code-dots { display: flex; gap: 0.35rem; }
.ns-code-dots span { width: 10px; height: 10px; border-radius: 50%; }
.ns-code-dots span:nth-child(1) { background: #ff5f57; }
.ns-code-dots span:nth-child(2) { background: #febc2e; }
.ns-code-dots span:nth-child(3) { background: #28c840; }
.ns-code-block pre {
  margin: 0;
  padding: 1.25rem;
  overflow-x: auto;
  font-family: var(--lm-mono);
  font-size: 0.82rem;
  line-height: 1.75;
  color: #c9d1d9;
}
.ns-code-block pre .kw  { color: #ff79c6; }
.ns-code-block pre .fn  { color: #50fa7b; }
.ns-code-block pre .str { color: #f1fa8c; }
.ns-code-block pre .cm  { color: #6272a4; }
.ns-code-block pre .num { color: #bd93f9; }
.ns-code-block pre .prop { color: #8be9fd; }

/* ============================================================
   TABLEAUX ÉLÉGANTS
   ============================================================ */
.ns-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: var(--lm-radius);
  border: 1px solid var(--lm-stroke1);
  box-shadow: var(--lm-shadow);
}
.ns-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 480px;
}
.ns-table thead {
  background: var(--lm-dark);
  color: #fcfcfc;
}
.ns-table thead th {
  padding: 0.875rem 1.1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ns-table thead th:first-child { border-radius: var(--lm-radius) 0 0 0; }
.ns-table thead th:last-child { border-radius: 0 var(--lm-radius) 0 0; }
.ns-table tbody tr {
  border-bottom: 1px solid var(--lm-stroke1);
  transition: background 0.15s;
}
.ns-table tbody tr:last-child { border-bottom: none; }
.ns-table tbody tr:hover { background: var(--lm-primary-50); }
.ns-table tbody td {
  padding: 0.875rem 1.1rem;
  color: var(--lm-gray7);
  line-height: 1.5;
}
.ns-table tbody td strong { color: var(--lm-text); }
/* Variante striped */
.ns-table--striped tbody tr:nth-child(even) { background: var(--lm-bg2); }
.ns-table--striped tbody tr:nth-child(even):hover { background: var(--lm-primary-50); }
/* Variante comparaison (highlight colonne) */
.ns-table td.ns-table-highlight {
  background: var(--lm-primary-50);
  color: var(--lm-primary-600);
  font-weight: 600;
  border-left: 2px solid var(--lm-primary);
  border-right: 2px solid var(--lm-primary);
}
.ns-table thead th.ns-table-highlight {
  background: var(--lm-primary);
  color: #fff;
  border-left: 2px solid var(--lm-primary);
  border-right: 2px solid var(--lm-primary);
}

/* ============================================================
   CARDS
   ============================================================ */
/* Card de base */
.ns-card {
  background: var(--lm-bg1);
  border: 1px solid var(--lm-stroke1);
  border-radius: var(--lm-radius);
  padding: 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ns-card:hover {
  box-shadow: var(--lm-shadow-md);
  transform: translateY(-2px);
}

/* Card avec accent violet */
.ns-card--primary {
  border-top: 3px solid var(--lm-primary);
}

/* Card dark */
.ns-card--dark {
  background: var(--lm-dark);
  border-color: var(--lm-stroke5);
  color: rgba(252,252,252,0.75);
}
.ns-card--dark h3, .ns-card--dark h4 { color: #fcfcfc; }

/* Card avec icône */
.ns-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--lm-primary-50);
  border: 1px solid var(--lm-primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.ns-card-icon--yellow { background: #fefce8; border-color: #fef08a; }
.ns-card-icon--green { background: #f0fdf4; border-color: rgba(198,245,111,0.5); }

/* Card titre & desc */
.ns-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lm-text);
  margin-bottom: 0.4rem;
}
.ns-card-desc {
  font-size: 0.875rem;
  color: var(--lm-gray6);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Grille de cards */
.ns-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.ns-cards-grid--2 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.ns-cards-grid--3 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ============================================================
   BOUTONS
   ============================================================ */
/* Note : btn-primary, btn-secondary viennent du thème.
   On définit ici seulement les variantes spécifiques au guide. */
.ns-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.ns-btn--primary {
  background: var(--lm-primary);
  color: #fff;
}
.ns-btn--primary:hover { background: var(--lm-primary-600); box-shadow: 0 4px 16px rgba(134,79,254,0.35); }
.ns-btn--outline {
  background: transparent;
  color: var(--lm-primary);
  border: 1.5px solid var(--lm-primary);
}
.ns-btn--outline:hover { background: var(--lm-primary-50); }
.ns-btn--ghost {
  background: transparent;
  color: var(--lm-gray6);
  border: 1px solid var(--lm-stroke1);
}
.ns-btn--ghost:hover { background: var(--lm-bg3); color: var(--lm-text); }
.ns-btn--green {
  background: var(--lm-green);
  color: #0f1c02;
  font-weight: 700;
}
.ns-btn--green:hover { opacity: 0.88; }
.ns-btn--yellow {
  background: var(--lm-yellow);
  color: #1a1200;
  font-weight: 700;
}
.ns-btn--sm { font-size: 0.78rem; padding: 0.4rem 0.9rem; border-radius: 0.5rem; }
.ns-btn--lg { font-size: 1rem; padding: 0.875rem 1.75rem; border-radius: 0.75rem; }
.ns-btn--full { width: 100%; justify-content: center; }

/* Groupe de boutons */
.ns-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1rem 0;
}

/* ============================================================
   BADGES / LABELS
   ============================================================ */
/* Note : utiliser les classes Tailwind quand possible.
   Ces variantes s'appuient sur les tokens du thème. */
.ns-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.ns-badge--primary { background: var(--lm-primary-50); color: var(--lm-primary-600); border: 1px solid var(--lm-primary-200); }
.ns-badge--green { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.ns-badge--yellow { background: #fefce8; color: #854d0e; border: 1px solid #fef08a; }
.ns-badge--red { background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }
.ns-badge--gray { background: var(--lm-bg3); color: var(--lm-gray6); border: 1px solid var(--lm-stroke1); }
.ns-badge--dark { background: var(--lm-dark); color: rgba(252,252,252,0.7); border: 1px solid var(--lm-stroke5); }
.ns-badge--new { background: var(--lm-primary); color: #fff; }
.ns-badge--dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================================
   BANNERS / BANDEAUX
   ============================================================ */
/* Bandeau horizontal (annonce, promo, alerte) */
.ns-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--lm-radius);
  margin: 1.75rem 0;
  flex-wrap: wrap;
}
.ns-banner-content {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex: 1;
  min-width: 0;
}
.ns-banner-icon { font-size: 1.5rem; flex-shrink: 0; }
.ns-banner-text { min-width: 0; }
.ns-banner-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.ns-banner-desc {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.4;
}
/* Variantes banner */
.ns-banner--promo {
  background: linear-gradient(135deg, #1a1040 0%, #0f1217 100%);
  border: 1px solid rgba(134,79,254,0.35);
  color: #fcfcfc;
}
.ns-banner--info {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
}
.ns-banner--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.ns-banner--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.ns-banner--dark {
  background: var(--lm-dark);
  border: 1px solid var(--lm-stroke5);
  color: rgba(252,252,252,0.85);
}

/* Banner CTA large (hero dans article) */
.ns-banner-cta {
  background: linear-gradient(135deg, #1a1040 0%, #0d1520 100%);
  border: 1px solid rgba(134,79,254,0.3);
  border-radius: var(--lm-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 2.5rem 0;
}
.ns-banner-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(134,79,254,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.ns-banner-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fcfcfc;
  margin-bottom: 0.6rem;
  position: relative;
}
.ns-banner-cta p {
  font-size: 0.9rem;
  color: rgba(252,252,252,0.55);
  margin-bottom: 1.5rem;
  position: relative;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.ns-banner-cta .ns-btn-group {
  justify-content: center;
  position: relative;
}

/* ============================================================
   AUTEUR CARD (EEAT)
   ============================================================ */
.ns-author-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--lm-bg2);
  border: 1px solid var(--lm-stroke1);
  border-radius: var(--lm-radius-lg);
  padding: 1.5rem;
  margin: 2.5rem 0;
}
.ns-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lm-primary-200);
  flex-shrink: 0;
}
.ns-author-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.ns-author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lm-text);
  margin-bottom: 0.15rem;
}
.ns-author-title {
  font-size: 0.78rem;
  color: var(--lm-primary);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.ns-author-bio {
  font-size: 0.85rem;
  color: var(--lm-gray6);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   CITATION / BLOCKQUOTE
   ============================================================ */
.ns-quote {
  position: relative;
  border-left: 4px solid var(--lm-primary);
  padding: 1.25rem 1.5rem 1.25rem 2rem;
  margin: 2rem 0;
  background: var(--lm-primary-50);
  border-radius: 0 var(--lm-radius-sm) var(--lm-radius-sm) 0;
}
.ns-quote::before {
  content: """;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--lm-primary);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}
.ns-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--lm-text);
  line-height: 1.7;
  margin: 0 0 0.6rem;
}
.ns-quote-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lm-primary);
}

/* ============================================================
   FAQ / ACCORDÉON
   ============================================================ */
.ns-faq { margin: 1.75rem 0; }
.ns-faq-item {
  border: 1px solid var(--lm-stroke1);
  border-radius: var(--lm-radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.ns-faq-item:hover { border-color: var(--lm-primary-200); }
.ns-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lm-text);
  background: var(--lm-bg2);
  list-style: none;
  transition: background 0.2s;
  user-select: none;
}
.ns-faq-q:hover { background: var(--lm-primary-50); }
.ns-faq-item details[open] > .ns-faq-q { background: var(--lm-primary-50); color: var(--lm-primary-600); }
.ns-faq-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--lm-primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.ns-faq-item details[open] > .ns-faq-q::after { content: "−"; }
.ns-faq-a {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--lm-gray6);
  line-height: 1.7;
  background: var(--lm-bg1);
  border-top: 1px solid var(--lm-stroke1);
}
.ns-faq-a p { margin: 0; }

/* ============================================================
   RELATED ARTICLES (SEO)
   ============================================================ */
.ns-related {
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--lm-stroke1);
}
.ns-related-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lm-gray4);
  margin-bottom: 1rem;
}
.ns-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.ns-related-item {
  display: block;
  text-decoration: none;
  background: var(--lm-bg2);
  border: 1px solid var(--lm-stroke1);
  border-radius: var(--lm-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ns-related-item:hover {
  border-color: var(--lm-primary-200);
  box-shadow: 0 4px 16px rgba(134,79,254,0.08);
  transform: translateY(-2px);
}
.ns-related-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--lm-bg3);
  overflow: hidden;
}
.ns-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.ns-related-item:hover .ns-related-thumb img { opacity: 0.9; }
.ns-related-content { padding: 0.875rem 1rem; }
.ns-related-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lm-primary);
  margin-bottom: 0.3rem;
}
.ns-related-h {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lm-text);
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.ns-related-meta {
  font-size: 0.7rem;
  color: var(--lm-gray4);
}

/* ============================================================
   TAGS
   ============================================================ */
.ns-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lm-stroke1);
}
.ns-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lm-gray6);
  background: var(--lm-bg3);
  border: 1px solid var(--lm-stroke1);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
}
.ns-tag:hover {
  background: var(--lm-primary-50);
  border-color: var(--lm-primary-200);
  color: var(--lm-primary-600);
}

/* ============================================================
   SHARE / PARTAGE SOCIAL
   ============================================================ */
.ns-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: var(--lm-bg2);
  border: 1px solid var(--lm-stroke1);
  border-radius: var(--lm-radius-sm);
  margin: 1.75rem 0;
}
.ns-share-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lm-gray6);
}
.ns-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ns-share-btn:hover { opacity: 0.82; }
.ns-share-btn--x { background: #000; color: #fff; }
.ns-share-btn--fb { background: #1877f2; color: #fff; }
.ns-share-btn--li { background: #0a66c2; color: #fff; }
.ns-share-btn--copy { background: var(--lm-bg3); color: var(--lm-gray6); border: 1px solid var(--lm-stroke1); }

/* ============================================================
   NOTATION / RATING (EEAT — Schema.org)
   ============================================================ */
.ns-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.ns-rating-stars { color: #f59e0b; letter-spacing: 0.05em; }
.ns-rating-count { color: var(--lm-gray4); }
.ns-rating-score { font-weight: 700; color: var(--lm-text); }

/* ============================================================
   HERO TEXT GRADIENT COLORS
   ============================================================ */
.hero-text-color-1 { /* gradient primary → yellow, défini dans .hero-text-gradient */ }
.hero-text-color-2 {
  background: linear-gradient(135deg, var(--lm-green) 0%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   UTILITAIRES DIVERS
   ============================================================ */
/* Divider avec texte */
.ns-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--lm-gray4);
  font-size: 0.78rem;
  font-weight: 500;
}
.ns-divider::before, .ns-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--lm-stroke1);
}

/* Highlight de texte */
.ns-highlight { background: rgba(249,235,87,0.4); border-radius: 0.2em; padding: 0.05em 0.2em; }
.ns-highlight--purple { background: rgba(134,79,254,0.15); color: var(--lm-primary-600); }
.ns-highlight--green { background: rgba(198,245,111,0.25); color: #166534; }

/* Stat pill */
.ns-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.75rem 1.25rem;
  background: var(--lm-bg2);
  border: 1px solid var(--lm-stroke1);
  border-radius: var(--lm-radius-sm);
  text-align: center;
}
.ns-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lm-primary);
  line-height: 1;
}
.ns-stat-label {
  font-size: 0.72rem;
  color: var(--lm-gray4);
  font-weight: 500;
}
.ns-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

/* Score/Note comparatif */
.ns-score-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem 0;
}
.ns-score-label { font-size: 0.82rem; color: var(--lm-gray6); min-width: 80px; }
.ns-score-track {
  flex: 1;
  height: 6px;
  background: var(--lm-stroke1);
  border-radius: 999px;
  overflow: hidden;
}
.ns-score-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lm-primary), var(--lm-primary-light));
  transition: width 1s ease;
}
.ns-score-val { font-size: 0.8rem; font-weight: 700; color: var(--lm-text); min-width: 2rem; text-align: right; }

/* ============================================================
   RESPONSIVE FINAL
   ============================================================ */
@media (max-width: 640px) {
  .ns-author-card { flex-direction: column; }
  .ns-img-float-right, .ns-img-float-left { float: none; width: 100%; margin: 1.25rem 0; }
  .ns-banner { flex-direction: column; }
  .ns-img-grid { grid-template-columns: 1fr; }
  .ns-table thead th:not(:first-child):not(:last-child) { display: none; }
}
