/*
 Theme Name:   GeneratePress Child — Switchr
 Theme URI:    https://switchr.lu
 Description:  Child theme de GeneratePress avec le design system Switchr
 Author:       Switchr
 Author URI:   https://switchr.lu
 Template:     generatepress
 Version:      2.0.0
 Text Domain:  generatepress-child
*/


/* ==========================================================================
   1. DESIGN TOKENS (variables CSS globales)
   ========================================================================== */

:root {
  /* — Brand — */
  --sw-brand:           #6340FB;
  --sw-brand-light:     #F0EDFF;
  --sw-brand-dim:       #E8E3FF;
  --sw-brand-dark:      #4A2FCC;
  --sw-brand-glow:      rgba(99, 64, 251, 0.07);

  /* — Text — */
  --sw-text:            #1a1a2e;
  --sw-text-secondary:  #4a4a6a;
  --sw-text-muted:      #7a7a9a;

  /* — Backgrounds & borders — */
  --sw-bg:              #fafbfd;
  --sw-white:           #ffffff;
  --sw-border:          #e2e6ef;
  --sw-border-s:        #d0d4df;

  /* — Semantic — */
  --sw-success:         #059669;
  --sw-success-light:   #ecfdf5;
  --sw-amber:           #d97706;
  --sw-amber-light:     #fffbeb;
  --sw-info:            #2563eb;
  --sw-info-light:      #eff6ff;
  --sw-danger:          #ef4444;

  /* — Shapes — */
  --sw-radius:          12px;
  --sw-radius-lg:       16px;

  /* — Shadows — */
  --sw-shadow-sm:       0 1px 3px rgba(0, 0, 0, 0.06);
  --sw-shadow-md:       0 4px 16px rgba(0, 0, 0, 0.08);
  --sw-shadow-lg:       0 8px 32px rgba(0, 0, 0, 0.12);

  /* — Motion — */
  --sw-tr:              0.2s cubic-bezier(0.4, 0, 0.2, 1);

  /* — Sponsor (multi-sponsors) — */
  --sw-sponsor:           var(--sw-brand);
  --sw-sponsor-dark:      var(--sw-brand-dark);
  --sw-sponsor-light:     var(--sw-brand-light);
  --sw-sponsor-dim:       var(--sw-brand-dim);
  --sw-sponsor-glow:      rgba(99, 64, 251, 0.07);
  --sw-sponsor-shadow:    rgba(99, 64, 251, 0.25);
}

/* Sponsor overrides */
.sw-sponsor-lalux {
  --sw-sponsor:           #6340FB;
  --sw-sponsor-dark:      #4A2FCC;
  --sw-sponsor-light:     #F0EDFF;
  --sw-sponsor-dim:       #E8E3FF;
  --sw-sponsor-glow:      rgba(99, 64, 251, 0.07);
  --sw-sponsor-shadow:    rgba(99, 64, 251, 0.25);
}
.sw-sponsor-tango {
  --sw-sponsor:           #E4002B;
  --sw-sponsor-dark:      #B80023;
  --sw-sponsor-light:     #FFF0F3;
  --sw-sponsor-dim:       #FFE0E6;
  --sw-sponsor-glow:      rgba(228, 0, 43, 0.07);
  --sw-sponsor-shadow:    rgba(228, 0, 43, 0.25);
}
.sw-sponsor-post {
  --sw-sponsor:           #FFCC00;
  --sw-sponsor-dark:      #D4A900;
  --sw-sponsor-light:     #FFFBE6;
  --sw-sponsor-dim:       #FFF7CC;
  --sw-sponsor-glow:      rgba(255, 204, 0, 0.07);
  --sw-sponsor-shadow:    rgba(255, 204, 0, 0.25);
}


/* ==========================================================================
   2. PAGE LAYOUT
   ========================================================================== */

.sw-pillar-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px 80px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--sw-text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  box-sizing: border-box;
}

.sw-pillar-page *,
.sw-pillar-page *::before,
.sw-pillar-page *::after {
  box-sizing: border-box;
}

.sw-pillar-page p {
  margin-bottom: 16px;
  color: var(--sw-text);
}

.sw-pillar-page a {
  color: var(--sw-brand);
  text-decoration: none;
}
.sw-pillar-page a:hover { text-decoration: underline; }

/* GenerateBlocks resets */
.sw-pillar-page .gb-container { padding: 0; margin: 0; }
.sw-pillar-page .gb-headline  { margin: 0; padding: 0; }


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

.sw-pillar-page h1,
.sw-hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1.2;
  color: var(--sw-text);
  margin: 0 0 20px;
  font-weight: 600;
  text-transform: none;
}

.sw-pillar-page h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.3;
  color: var(--sw-text);
  margin: 56px 0 16px;
  font-weight: 600;
  text-transform: none;
}
.sw-pillar-page h2:first-of-type { margin-top: 0; }

.sw-pillar-page h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--sw-text);
  margin: 32px 0 12px;
}

.sw-pillar-page h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--sw-text);
  margin: 0 0 6px;
}

.sw-intro {
  font-size: 17px;
  color: var(--sw-text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.sw-intro strong { color: var(--sw-text); }


/* ==========================================================================
   4. BREADCRUMB
   ========================================================================== */

.sw-breadcrumb {
  font-size: 14px;
  color: var(--sw-text-secondary);
  margin-bottom: 24px;
}
.sw-breadcrumb a {
  color: var(--sw-brand);
  text-decoration: none;
}
.sw-breadcrumb a:hover { text-decoration: underline; }
.sw-breadcrumb .sep {
  margin: 0 6px;
  color: var(--sw-text-muted);
}


/* ==========================================================================
   5. HERO
   ========================================================================== */

.sw-hero { margin-bottom: 0; }

.sw-update-badge {
  display: inline-block;
  background: var(--sw-success-light);
  color: var(--sw-success);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}


/* ==========================================================================
   6. PARTENAIRE HERO (.pb) — v2
   ========================================================================== */

.pb {
  background: var(--sw-white);
  border: 1px solid rgba(99, 64, 251, 0.13);
  border-radius: 16px;
  overflow: hidden;
  margin: 32px 0;
  max-width: 100%;
  width: 100%;
  transition: box-shadow 0.2s ease;
  box-shadow: 0 4px 20px var(--sw-sponsor-glow);
}

.pb-strip {
  height: 3px;
  background: linear-gradient(90deg, var(--sw-sponsor-dark) 0%, var(--sw-sponsor) 40%, var(--sw-sponsor-dim) 100%);
  flex-shrink: 0;
}

.pb-body {
  padding: 24px 28px;
}

.pb-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pb-logo {
  height: 24px;
  width: auto;
  max-width: 80px;
}

.pb-brand-info {
  display: flex;
  flex-direction: column;
}

.pb-brand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--sw-text);
  line-height: 1.2;
}

.pb-brand-sub {
  font-size: 12px;
  color: var(--sw-text-muted);
  line-height: 1.3;
}

.pb-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sw-success);
  background: var(--sw-success-light);
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 4px 10px;
  flex-shrink: 0;
}
.pb-live-dot {
  width: 5px;
  height: 5px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pb-blink 2s ease-in-out infinite;
}
@keyframes pb-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.pb-headline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.35;
  color: var(--sw-text);
  font-weight: 500;
  margin: 0 0 16px;
  word-break: break-word;
}

.pb-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pb-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--sw-text-secondary);
  line-height: 1.4;
}
.pb-feat::before {
  content: '✓';
  color: var(--sw-sponsor);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.6;
}

.pb-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pb-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  background: var(--sw-sponsor);
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 2px 8px var(--sw-sponsor-shadow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.pb-btn:hover {
  background: var(--sw-sponsor-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--sw-sponsor-shadow);
  text-decoration: none !important;
}
.pb-btn-arrow {
  font-size: 14px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.pb-btn:hover .pb-btn-arrow { transform: translateX(3px); }

.pb-meta {
  font-size: 12px;
  color: var(--sw-text-muted);
}

.pb-footer {
  font-size: 12px;
  color: var(--sw-text-muted);
  text-align: center;
  margin-top: 8px;
}


/* ==========================================================================
   7. PARTENAIRE COMPACT (.pc) — v2
   ========================================================================== */

.pc {
  background: var(--sw-white);
  border: 1px solid rgba(99, 64, 251, 0.10);
  border-left: 3px solid var(--sw-sponsor);
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
  margin: 28px 0;
  max-width: 100%;
  width: 100%;
  flex-wrap: wrap;
}
.pc:hover {
  box-shadow: 0 2px 12px var(--sw-sponsor-glow);
  border-left-color: var(--sw-sponsor-dark);
}

.pc-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.pc-logo {
  height: 22px;
  width: auto;
  max-width: 70px;
  flex-shrink: 0;
}

.pc-info {
  min-width: 0;
}

.pc-headline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--sw-text);
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-sub {
  font-size: 12px;
  color: var(--sw-text-muted);
  line-height: 1.4;
  margin: 0;
}

.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--sw-sponsor);
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 6px var(--sw-sponsor-shadow);
  transition: background 0.2s, transform 0.2s;
}
.pc-btn:hover {
  background: var(--sw-sponsor-dark);
  color: #fff !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}


/* ==========================================================================
   8. TABLE OF CONTENTS
   ========================================================================== */

.sw-toc {
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius);
  padding: 20px 24px;
  margin: 40px 0;
}
.sw-toc-title {
  margin: 0 0 14px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--sw-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sw-toc ol {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: toc;
  columns: 2;
  column-gap: 24px;
}
.sw-toc li {
  counter-increment: toc;
  padding: 4px 0;
  break-inside: avoid;
}
.sw-toc a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--sw-text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--sw-tr);
}
.sw-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--sw-brand);
  min-width: 20px;
  flex-shrink: 0;
}
.sw-toc a:hover {
  color: var(--sw-brand);
  text-decoration: none;
}


/* ==========================================================================
   9. SOURCE REFERENCE
   ========================================================================== */

.sw-source-ref {
  font-size: 13px;
  color: var(--sw-text-muted);
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0;
}
.sw-source-ref a {
  color: var(--sw-brand);
  font-size: 13px;
}


/* ==========================================================================
   10. COMPARATIVE TABLE (.sw-comparatif)
   ========================================================================== */

.sw-comparatif-wrapper {
  overflow-x: auto;
  margin: 24px 0 8px;
  border-radius: var(--sw-radius);
  box-shadow: var(--sw-shadow-md);
  background: var(--sw-white);
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.sw-comparatif {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.sw-comparatif thead th {
  background: var(--sw-brand);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.sw-comparatif thead th:first-child { min-width: 140px; }
.sw-comparatif tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sw-border);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
}
.sw-comparatif tbody td:first-child {
  font-weight: 700;
  color: var(--sw-text);
  white-space: nowrap;
}
.sw-comparatif tbody tr:last-child td { border-bottom: none; }
.sw-comparatif tbody tr:hover { background: var(--sw-brand-glow); }

.assureur-name { font-weight: 700; color: var(--sw-text); white-space: nowrap; }
.formule       { font-size: 13px; color: var(--sw-brand); font-weight: 500; margin-top: 2px; }
.point-fort    { font-size: 14px; color: var(--sw-text-secondary); line-height: 1.6; }
.prix          { font-weight: 700; color: var(--sw-text); white-space: nowrap; }


/* ==========================================================================
   11. TAGS
   ========================================================================== */

.sw-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}
.sw-tag-green  { background: var(--sw-success-light); color: var(--sw-success); }
.sw-tag-amber  { background: var(--sw-amber-light);   color: var(--sw-amber); }
.sw-tag-foyer  { background: #FDEAEE; color: #C10000; }
.sw-tag-axa    { background: #E8F4FD; color: #005B8E; }
.sw-tag-lalux  { background: var(--sw-brand-light); color: var(--sw-brand); }
.sw-tag-baloise{ background: #E6F6FC; color: #007BB5; }


/* ==========================================================================
   12. STATUS INDICATORS (check / cross / partial)
   ========================================================================== */

.sw-check {
  color: var(--sw-success);
  font-weight: 700;
  font-size: 14px;
}
.sw-cross {
  color: #c8cad4;
  font-weight: 700;
  font-size: 14px;
}
.sw-partial {
  color: var(--sw-amber);
  font-weight: 600;
  font-size: 13px;
}


/* ==========================================================================
   13. GARANTIES TABLE (.sw-garanties-table)
   ========================================================================== */

.sw-garanties-wrapper {
  overflow-x: auto;
  margin: 24px 0 16px;
  border-radius: var(--sw-radius);
  box-shadow: var(--sw-shadow-md);
  background: var(--sw-white);
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.sw-garanties-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.sw-garanties-table thead th {
  background: #f0f2f8;
  padding: 11px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--sw-text);
  border-bottom: 2px solid var(--sw-border);
}
.sw-garanties-table thead th:first-child {
  text-align: left;
  min-width: 200px;
}
.sw-garanties-table tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--sw-border);
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.55;
}
.sw-garanties-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--sw-text);
  font-size: 14px;
}
.sw-garanties-table tbody tr:last-child td { border-bottom: none; }
.sw-garanties-table tbody tr:hover { background: var(--sw-brand-glow); }


/* ==========================================================================
   14. INFO BOXES (tip / warning / important)
   ========================================================================== */

.sw-tip {
  background: var(--sw-success-light);
  border-left: 4px solid var(--sw-success);
  border-radius: 0 var(--sw-radius) var(--sw-radius) 0;
  padding: 16px 20px;
  margin: 20px 0 24px;
}
.sw-tip::before {
  content: "💡 Bon à savoir";
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sw-success);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.sw-tip p {
  font-size: 15px;
  color: #065F46;
  margin-bottom: 0;
  line-height: 1.65;
}
.sw-tip p + p { margin-top: 6px; }
.sw-tip strong { color: var(--sw-text); }

.sw-warning {
  background: var(--sw-amber-light);
  border-left: 4px solid var(--sw-amber);
  border-radius: 0 var(--sw-radius) var(--sw-radius) 0;
  padding: 16px 20px;
  margin: 20px 0 24px;
}
.sw-warning::before {
  content: "⚠ Attention";
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sw-amber);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.sw-warning p {
  font-size: 15px;
  color: #92400E;
  margin-bottom: 0;
  line-height: 1.65;
}
.sw-warning p + p { margin-top: 6px; }
.sw-warning strong { color: #92400E; }

.sw-important {
  background: var(--sw-info-light);
  border-left: 4px solid var(--sw-info);
  border-radius: 0 var(--sw-radius) var(--sw-radius) 0;
  padding: 16px 20px;
  margin: 20px 0 24px;
}
.sw-important::before {
  content: "ℹ Important";
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sw-info);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.sw-important p {
  font-size: 15px;
  color: #1E40AF;
  margin-bottom: 0;
  line-height: 1.65;
}
.sw-important p + p { margin-top: 6px; }


/* ==========================================================================
   15. VS COMPARISON BLOCK
   ========================================================================== */

.sw-vs-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin: 24px 0 32px;
  border-radius: var(--sw-radius);
  overflow: hidden;
  box-shadow: var(--sw-shadow-md);
}
.sw-vs-left,
.sw-vs-right {
  background: var(--sw-white);
  padding: 24px 26px;
}
.sw-vs-divider {
  background: linear-gradient(180deg, var(--sw-brand) 0%, var(--sw-brand-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 15px;
  padding: 0 16px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-shadow: 0 1px 6px rgba(99,64,251,0.4);
}
.sw-vs-left h4,
.sw-vs-right h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sw-text);
  margin: 0 0 2px;
}
.sw-vs-subtitle {
  font-size: 13px;
  color: var(--sw-text-muted);
  font-weight: 500;
  margin-bottom: 14px;
}
.sw-vs-left ul,
.sw-vs-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sw-vs-left li,
.sw-vs-right li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--sw-text-secondary);
  line-height: 1.55;
}
.sw-vs-left li::before,
.sw-vs-right li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sw-success);
  font-weight: 700;
}
.sw-vs-left li.sw-con::before,
.sw-vs-right li.sw-con::before {
  content: "✗";
  color: var(--sw-danger);
}
.sw-vs-verdict {
  grid-column: 1 / -1;
  background: var(--sw-brand-light);
  border-left: 4px solid var(--sw-brand);
  padding: 16px 26px;
  font-size: 14.5px;
  color: var(--sw-text);
  font-weight: 500;
  line-height: 1.65;
}
.sw-vs-verdict strong { color: var(--sw-text); }


/* ==========================================================================
   16. CRITERIA LIST
   ========================================================================== */

.sw-criteria { margin: 20px 0; }
.sw-criteria-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sw-border);
  align-items: flex-start;
}
.sw-criteria-item:last-child { border-bottom: none; }
.sw-criteria-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 40px;
  width: auto;
  height: auto;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--sw-brand) 0%, var(--sw-brand-dark) 100%);
  box-shadow: 0 4px 12px rgba(99,64,251,0.28);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-top: 1px;
  white-space: nowrap;
}
.sw-criteria-item h4 {
  font-weight: 700;
  font-size: 16px;
  color: var(--sw-text);
  margin: 0 0 6px;
}
.sw-criteria-item p {
  font-size: 14.5px;
  color: var(--sw-text-secondary);
  margin: 0;
  line-height: 1.6;
}


/* ==========================================================================
   17. CTA BOX
   ========================================================================== */

.sw-cta-box {
  background: linear-gradient(135deg, var(--sw-brand) 0%, var(--sw-brand-dark) 100%);
  color: #fff;
  padding: 28px 32px;
  border-radius: var(--sw-radius-lg);
  text-align: center;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.sw-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sw-cta-box h3 {
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 8px;
  position: relative;
}
.sw-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0 0 18px;
  position: relative;
}

.sw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff !important;
  color: var(--sw-brand) !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  box-shadow: var(--sw-shadow-sm);
  position: relative;
  transition: all var(--sw-tr);
}
.sw-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sw-shadow-md);
  text-decoration: none !important;
  color: var(--sw-brand-dark) !important;
}


/* ==========================================================================
   18. CTA INLINE
   ========================================================================== */

.sw-cta-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--sw-brand-light);
  border: 1px solid var(--sw-brand-dim);
  border-radius: var(--sw-radius);
  padding: 18px 24px;
  margin: 28px 0;
}
.sw-cta-inline p {
  flex: 1;
  font-size: 15px;
  color: var(--sw-text-secondary);
  margin: 0;
}
.sw-cta-inline p strong { color: var(--sw-text); }

.sw-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--sw-brand);
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background var(--sw-tr);
}
.sw-btn-sm:hover {
  background: var(--sw-brand-dark);
  text-decoration: none !important;
  color: #fff !important;
}


/* ==========================================================================
   19. ASSURER LINKS
   ========================================================================== */

.sw-assurer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}
.sw-assurer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: var(--sw-bg);
  color: var(--sw-text-secondary);
  border: 1px solid var(--sw-border);
  transition: all var(--sw-tr);
}
.sw-assurer-links a:hover {
  border-color: var(--sw-brand);
  color: var(--sw-brand);
  background: var(--sw-brand-light);
  text-decoration: none;
}


/* ==========================================================================
   20. GUIDE ARROW LINK
   ========================================================================== */

.sw-guide-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--sw-brand);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;
}
.sw-guide-arrow:hover { text-decoration: underline; }


/* ==========================================================================
   21. GUIDES SECTION
   ========================================================================== */

.sw-guides-section {
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius-lg);
  padding: 28px 32px;
  margin: 32px 0;
}
.sw-guides-category { margin-bottom: 28px; }
.sw-guides-category:last-child { margin-bottom: 0; }

.sw-guides-cat-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sw-text-muted);
  margin-bottom: 10px;
}
.sw-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.sw-guide-link,
a.sw-guide-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--sw-bg);
  border: 1px solid var(--sw-border);
  border-radius: 8px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sw-text-secondary);
  transition: all var(--sw-tr);
}
.sw-guide-link:hover,
a.sw-guide-link:hover {
  border-color: var(--sw-brand);
  color: var(--sw-brand);
  background: var(--sw-brand-light);
  text-decoration: none;
}
.sw-guide-link .sw-arrow,
a.sw-guide-link .sw-arrow {
  color: var(--sw-text-muted);
  transition: transform var(--sw-tr);
  flex-shrink: 0;
  font-size: 13px;
}
.sw-guide-link:hover .sw-arrow,
a.sw-guide-link:hover .sw-arrow {
  transform: translateX(3px);
  color: var(--sw-brand);
}


/* ==========================================================================
   22. FAQ STATIQUE
   ========================================================================== */

.sw-faq-static-item {
  border-bottom: 1px solid var(--sw-border);
  padding: 22px 0;
}
.sw-faq-static-item:last-child { border-bottom: none; }

.sw-faq-static-q {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--sw-text);
  margin: 0 0 12px;
  line-height: 1.45;
}
.sw-faq-static-a p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--sw-text-secondary);
  margin-bottom: 0;
}
.sw-faq-static-a p + p { margin-top: 8px; }
.sw-faq-static-a a {
  color: var(--sw-brand);
  font-weight: 500;
}


/* ==========================================================================
   23. PAGE FOOTER
   ========================================================================== */

.sw-page-footer {
  margin-top: 48px;
  padding: 24px;
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius-lg);
}
.sw-footer-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--sw-text);
  margin: 0 0 12px;
}
.sw-page-footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
}
.sw-page-footer li {
  font-size: 13px;
  color: var(--sw-text-muted);
  padding: 3px 0;
  line-height: 1.5;
}
.sw-page-footer li a {
  color: var(--sw-brand);
  font-size: 13px;
}
.sw-disclaimer {
  font-size: 12px;
  color: var(--sw-text-muted);
  line-height: 1.55;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sw-border);
}


/* ==========================================================================
   24. STICKY CTA (mobile)
   ========================================================================== */

.sw-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sw-white);
  border-top: 1px solid var(--sw-border);
  padding: 12px 20px;
  z-index: 9000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sw-sticky-cta a {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  background: var(--sw-brand);
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background var(--sw-tr);
}
.sw-sticky-cta a:hover { background: var(--sw-brand-dark); }
.sw-sticky-cta.sw-sticky-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}


/* ==========================================================================
   25. MISC — ANALYSIS BOX, KEY FACTS (flat), FORMULE CARDS
   ========================================================================== */

.sw-analysis {
  background: var(--sw-bg);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.sw-analysis p {
  font-size: 15px;
  color: var(--sw-text-secondary);
  margin-bottom: 0;
  line-height: 1.65;
}
.sw-analysis strong { color: var(--sw-text); }

.sw-key-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 0 0 40px;
}
.sw-kf-item {
  background: var(--sw-brand-light);
  border-radius: var(--sw-radius);
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.55;
  border-left: 3px solid var(--sw-brand);
}
.sw-kf-item strong {
  color: var(--sw-brand-dark);
  display: block;
  margin-bottom: 2px;
}
.sw-kf-item span { color: var(--sw-text-secondary); }

.sw-formules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}
.sw-formule-card {
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius);
  padding: 22px 20px;
  box-shadow: var(--sw-shadow-sm);
  transition: all var(--sw-tr);
  position: relative;
}
.sw-formule-card:hover {
  border-color: var(--sw-border-s);
  box-shadow: var(--sw-shadow-md);
}
.sw-formule-card.sw-recommended {
  border-color: var(--sw-brand);
  box-shadow: 0 0 0 1px var(--sw-brand);
}
.sw-formule-card.sw-recommended::before {
  content: 'Populaire';
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--sw-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.sw-formule-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sw-text);
  margin: 0 0 4px;
}
.sw-price-range {
  font-size: 14px;
  color: var(--sw-brand);
  font-weight: 600;
  margin-bottom: 10px;
}
.sw-formule-card p {
  font-size: 14px;
  color: var(--sw-text-secondary);
  margin-bottom: 10px;
  line-height: 1.55;
}
.sw-card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sw-brand);
}
.sw-card-link:hover { text-decoration: underline; }

.sw-comp-produit   { font-size: 12px; color: var(--sw-brand); font-weight: 600; margin-top: 2px; }
.sw-comp-formules  { font-size: 12px; color: var(--sw-text-muted); background: var(--sw-bg); border-radius: 6px; padding: 4px 8px; display: inline-block; margin-top: 4px; }
.sw-comp-list      { list-style: none; padding: 0; margin: 0; }
.sw-comp-list li   { position: relative; padding-left: 14px; font-size: 13px; color: var(--sw-text-secondary); margin-bottom: 4px; line-height: 1.5; }
.sw-comp-list li::before { content: '·'; position: absolute; left: 3px; color: var(--sw-brand); font-weight: 700; }


/* ==========================================================================
   26. MODAL
   ========================================================================== */

.sw-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sw-modal-overlay.active { display: flex; }
.sw-modal {
  background: var(--sw-white);
  border-radius: 24px;
  padding: 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--sw-shadow-lg);
  animation: swModalIn 0.3s ease;
}
@keyframes swModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.sw-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--sw-bg);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--sw-text-muted);
  transition: background var(--sw-tr);
}
.sw-modal-close:hover { background: var(--sw-border); }
.sw-modal h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 22px;
  margin: 0 0 6px;
}
.sw-modal .sw-modal-desc {
  font-size: 14px;
  color: var(--sw-text-secondary);
  margin-bottom: 20px;
}
.sw-modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sw-modal-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--sw-text);
}
.sw-modal-form input,
.sw-modal-form select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--sw-border);
  border-radius: 8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  transition: border-color var(--sw-tr);
}
.sw-modal-form input:focus,
.sw-modal-form select:focus {
  outline: none;
  border-color: var(--sw-brand);
  box-shadow: 0 0 0 3px rgba(99, 64, 251, 0.10);
}
.sw-modal-submit {
  padding: 13px;
  background: var(--sw-brand);
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
  transition: background var(--sw-tr);
}
.sw-modal-submit:hover { background: var(--sw-brand-dark); }


/* ==========================================================================
   27. UTILITY CLASSES
   ========================================================================== */

.sw-mb-0  { margin-bottom: 0 !important; }
.sw-mb-8  { margin-bottom: 8px !important; }
.sw-mb-16 { margin-bottom: 16px !important; }
.sw-mb-24 { margin-bottom: 24px !important; }
.sw-mb-32 { margin-bottom: 32px !important; }
.sw-mb-48 { margin-bottom: 48px !important; }
.sw-mt-0  { margin-top: 0 !important; }
.sw-mt-32 { margin-top: 32px !important; }
.sw-mt-48 { margin-top: 48px !important; }


/* ==========================================================================
   28. RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  .sw-sticky-cta { display: block; }
  .sw-pillar-page { padding-bottom: 80px; }
}

@media (max-width: 640px) {
  .sw-pillar-page {
    font-size: 16px;
    padding: 0 16px 80px;
  }
  .sw-hero h1     { font-size: 26px; }
  .sw-pillar-page h2 { font-size: 22px; }

  /* ── Partner hero v2 : stack vertical ── */
  .pb {
    border-radius: 12px;
  }
  .pb-body {
    padding: 20px 18px;
  }
  .pb-headline {
    font-size: 17px;
  }
  .pb-features {
    flex-direction: column;
    gap: 6px;
  }
  .pb-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .pb-btn {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  .pb-meta {
    text-align: center;
  }

  /* ── Partner compact v2 : stack vertical ── */
  .pc {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-left: none;
    border-top: 3px solid var(--sw-sponsor);
    border-radius: 12px;
    padding: 16px 18px;
  }
  .pc-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .pc-headline {
    white-space: normal;
  }
  .pc-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* ── VS block : stack vertical ── */
  .sw-vs-wrapper {
    grid-template-columns: 1fr;
  }
  .sw-vs-divider {
    writing-mode: horizontal-tb;
    padding: 10px 20px;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 4px;
  }

  /* ── Tables ── */
  .sw-comparatif  { font-size: 12.5px; }
  .sw-comparatif thead th,
  .sw-comparatif tbody td { padding: 10px 8px; }

  /* ── Grids ── */
  .sw-key-facts     { grid-template-columns: 1fr 1fr; }
  .sw-formules-grid { grid-template-columns: 1fr; }
  .sw-guides-grid   { grid-template-columns: 1fr 1fr; }

  /* ── Misc ── */
  .sw-toc ol        { columns: 1; }
  .sw-cta-box       { padding: 22px 18px; }
  .sw-cta-inline    { flex-direction: column; align-items: stretch; }
  .sw-cta-inline .sw-btn-sm  { align-self: center; }
  .sw-guides-section { padding: 18px 16px; }
  .sw-page-footer    { padding: 16px; }
  .sw-modal { padding: 24px 18px; border-radius: 18px; }
}

@media (max-width: 420px) {
  .sw-key-facts     { grid-template-columns: 1fr; }
  .sw-guides-grid   { grid-template-columns: 1fr; }
  .pc-btn { width: 100%; justify-content: center; }
}


/* ==========================================================================
   29. KEY FACT CARDS
   ========================================================================== */

.sw-key-fact {
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-left: 3px solid var(--sw-brand);
  border-radius: var(--sw-radius);
  padding: 22px 20px;
  text-align: left;
  box-shadow: var(--sw-shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.sw-key-fact:hover {
  box-shadow: var(--sw-shadow-md);
  border-left-color: var(--sw-brand-dark);
}

.sw-key-fact-val {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--sw-brand);
  line-height: 1.15;
  margin-bottom: 6px;
}

.sw-key-fact-label {
  font-size: 14px;
  color: var(--sw-text-secondary);
  line-height: 1.5;
}


/* ==========================================================================
   30. EXEMPLE CHIFFRÉ
   ========================================================================== */

.sw-example {
  background: var(--sw-brand-light);
  border: 1px solid var(--sw-brand-dim);
  border-radius: var(--sw-radius);
  padding: 18px 22px;
  margin: 20px 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sw-text);
}

.sw-example strong {
  color: var(--sw-brand-dark);
  font-weight: 700;
}


/* ==========================================================================
   31. TABLE WRAP (alias)
   ========================================================================== */

.sw-table-wrap {
  overflow-x: auto;
  margin: 24px 0 8px;
  border-radius: var(--sw-radius);
  box-shadow: var(--sw-shadow-md);
  background: var(--sw-white);
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}


/* ==========================================================================
   32. CTA BOX ACTIONS + OUTLINE BUTTON
   ========================================================================== */

.sw-cta-box-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.sw-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.sw-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff !important;
  text-decoration: none !important;
}
/* ==========================================================================
   33. SIDEBAR STICKY — POSITION FIXED
   
   REMPLACE la section 33 existante dans style.css
   Ajoute : tagline, features, classe .sw-notranslate
   ========================================================================== */

.sw-sidebar-sponsor {
  display: none;
}

@media (min-width: 1300px) {
  .sw-sidebar-sponsor {
    display: block;
    position: fixed;
    top: 120px;
    right: calc((100vw - 820px) / 2 - 300px);
    width: 240px;
    background: var(--sw-white);
    border: 1px solid var(--sw-border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    z-index: 100;
    box-shadow: var(--sw-shadow-sm);
  }
}

@media (min-width: 1500px) {
  .sw-sidebar-sponsor {
    right: calc((100vw - 820px) / 2 - 320px);
  }
}

.sw-sidebar-sponsor .sw-sidebar-logo {
  display: block;
  margin: 0 auto 14px;
  width: 120px;
  height: 40px;
  object-fit: contain;
}

.sw-sidebar-sponsor .sw-sidebar-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--sw-text);
  line-height: 1.35;
  margin: 0 0 4px;
}

.sw-sidebar-sponsor .sw-sidebar-tagline {
  font-size: 12px;
  color: var(--sw-text-muted);
  margin: 0 0 16px;
  line-height: 1.4;
}

.sw-sidebar-sponsor .sw-sidebar-features {
  text-align: left;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sw-sidebar-sponsor .sw-sidebar-feat {
  font-size: 12px;
  color: var(--sw-text-secondary);
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sw-sidebar-sponsor .sw-sidebar-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--sw-sponsor);
  color: #fff !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  text-align: center;
  box-shadow: 0 2px 8px var(--sw-sponsor-shadow);
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 12px;
  box-sizing: border-box;
}
.sw-sidebar-sponsor .sw-sidebar-btn:hover {
  background: var(--sw-sponsor-dark);
  color: #fff !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}

.sw-sidebar-sponsor .sw-sidebar-trust {
  padding-top: 12px;
  border-top: 1px solid var(--sw-border);
  font-size: 11px;
  color: var(--sw-text-muted);
}

/* TranslatePress exclusion helper */
.sw-notranslate {
  /* Classe cible pour exclure de TranslatePress */
}

@media (max-width: 1299px) {
  .sw-sidebar-sponsor {
    display: none;
  }
}