/* ====================================================
   LE FIGARO PATRIMOINE & BOURSE — style.css v2
   ==================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c8102e;
  --red-dark:  #a50d25;
  --dark:      #1a1a1a;
  --mid:       #444444;
  --light:     #767676;
  --pale:      #aaaaaa;
  --border:    #e0e0e0;
  --bg-light:  #f5f5f5;
  --white:     #ffffff;
  --pos:       #1a7f3c;
  --neg:       #c8102e;

  --ff-serif:  'Playfair Display', 'EB Garamond', Georgia, serif;
  --ff-body:   'Lora', 'EB Garamond', Georgia, serif;
  --ff-sans:   'Source Sans 3', Arial, Helvetica, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--ff-sans); color: var(--dark); background: var(--white); }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ====================================================
   PROMO BAR
   ==================================================== */
.promo-bar {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--ff-sans);
  line-height: 1;
}
.promo-label {
  background: #fff;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 7px;
  border-radius: 1px;
}
.promo-text { font-weight: 400; }
.promo-cta {
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 1px;
  letter-spacing: .03em;
}
.promo-cta:hover { background: rgba(255,255,255,.12); text-decoration: none; }

/* ====================================================
   HEADER UTILITY BAR
   ==================================================== */
.header-util {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-util-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.header-util-left { display: flex; align-items: center; gap: 20px; }

/* Hamburger */
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  font-size: 11.5px;
  font-family: var(--ff-sans);
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  border-radius: 1px;
  letter-spacing: .02em;
}
.menu-toggle:hover { border-color: var(--dark); }
.hamburger { display: flex; flex-direction: column; gap: 3px; }
.hamburger span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--dark);
}

.util-nav { display: flex; gap: 0; }
.util-nav a {
  font-size: 11.5px;
  color: var(--mid);
  padding: 0 10px;
  font-family: var(--ff-sans);
  border-right: 1px solid var(--border);
  line-height: 1;
}
.util-nav a:first-child { padding-left: 0; }
.util-nav a:last-child { border-right: none; }
.util-nav a:hover { color: var(--red); text-decoration: none; }

.header-util-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-connect {
  font-size: 12px;
  color: var(--mid);
  font-family: var(--ff-sans);
  font-weight: 600;
}
.btn-connect:hover { color: var(--red); text-decoration: none; }
.btn-subscribe {
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--ff-sans);
  letter-spacing: .05em;
  padding: 7px 16px;
  border-radius: 1px;
}
.btn-subscribe:hover { background: var(--red-dark); text-decoration: none; }

/* ====================================================
   HEADER LOGO BAR
   ==================================================== */
.header-logo {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-logo-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
}

/* Left side: invisible mirror (keeps logo centered) */
.logo-side-left {
  display: flex;
  justify-content: flex-start;
  visibility: hidden; /* same size as right, but invisible */
}

/* Center: logo image */
.logo-center-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-brand:hover { opacity: .85; text-decoration: none; }
.logo-img {
  height: 101px;
  width: auto;
  max-width: 480px;
  display: block;
  object-fit: contain;
}

/* Right side: vente flash */
.logo-side-right {
  display: flex;
  justify-content: flex-end;
}
.btn-vente-flash-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  color: #fff;
  padding: 7px 13px;
  border-radius: 1px;
  text-decoration: none;
  text-align: center;
}
.btn-vente-flash-header:hover { background: var(--red-dark); text-decoration: none; }
.vf-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  font-family: var(--ff-sans);
  line-height: 1.2;
}
.vf-detail {
  font-size: 10px;
  font-weight: 400;
  font-family: var(--ff-sans);
  margin-top: 2px;
  opacity: .9;
  white-space: nowrap;
}

/* ====================================================
   MAIN NAV
   ==================================================== */
.main-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
}
.main-nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav-inner::-webkit-scrollbar { display: none; }
.main-nav-inner a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--dark);
  font-family: var(--ff-sans);
  padding: 12px 14px;
  white-space: nowrap;
  display: block;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.main-nav-inner a:hover { color: var(--red); text-decoration: none; }
.main-nav-inner a.nav-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ====================================================
   TICKER BAR
   ==================================================== */
.ticker-bar {
  background: #1c1c1c;
  color: #fff;
  display: flex;
  align-items: center;
  height: 34px;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.ticker-cac {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  flex-shrink: 0;
  border-right: 1px solid #3a3a3a;
  height: 100%;
}
.tc-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #aaa;
  font-family: var(--ff-sans);
}
.tc-val {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--ff-sans);
}
.tc-chg {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--ff-sans);
}
.ticker-divider {
  width: 1px;
  height: 100%;
  background: #3a3a3a;
  flex-shrink: 0;
}
.ticker-palmares-label {
  font-size: 9.5px;
  letter-spacing: .08em;
  color: #888;
  font-family: var(--ff-sans);
  padding: 0 12px;
  flex-shrink: 0;
  white-space: nowrap;
  border-right: 1px solid #3a3a3a;
}
.ticker-scroll-outer {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.ticker-scroll-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerRun 55s linear infinite;
  will-change: transform;
}
.ticker-scroll-outer:hover .ticker-scroll-inner { animation-play-state: paused; }
@keyframes tickerRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ti {
  font-size: 11.5px;
  font-family: var(--ff-sans);
  padding: 0 18px 0 0;
}
.ti b { font-weight: 700; }
.ti.positive { color: #fff; }
.ti.positive b { color: #4fc87a; }
.ti.negative { color: #fff; }
.ti.negative b { color: #f06b5a; }
.ti-label-sep {
  font-size: 9px;
  letter-spacing: .08em;
  color: #666;
  text-transform: uppercase;
  padding: 0 18px 0 4px;
  border-left: 1px solid #3a3a3a;
  margin-left: 4px;
}
.ticker-search-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-left: 1px solid #3a3a3a;
  height: 100%;
  padding: 0 10px;
  gap: 4px;
}
.ticker-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ccc;
  font-size: 11.5px;
  font-family: var(--ff-sans);
  width: 170px;
  padding: 0;
}
.ticker-search-input::placeholder { color: #666; }
.ticker-search-btn {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 2px;
}
.ticker-search-btn:hover { color: #fff; }

.positive { color: var(--pos); }
.negative { color: var(--neg); }

/* ====================================================
   PAGE LAYOUT
   ==================================================== */
.page-layout {
  max-width: 1340px;
  margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 36px;
  align-items: start;
}
.page-main { min-width: 0; }

/* ====================================================
   BREADCRUMB
   ==================================================== */
.breadcrumb {
  font-size: 11.5px;
  color: var(--pale);
  font-family: var(--ff-sans);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--pale); }
.breadcrumb a:hover { color: var(--red); text-decoration: none; }
.breadcrumb span { color: var(--pale); }

/* ====================================================
   ARTICLE
   ==================================================== */
.article-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 3px 8px;
  border-radius: 1px;
  font-family: var(--ff-sans);
  transition: background .15s, color .15s;
}
.tag:hover { background: var(--dark); color: var(--white); text-decoration: none; }

.article-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--light);
  font-family: var(--ff-sans);
  margin-bottom: 16px;
}
.article-meta strong { color: var(--dark); font-weight: 600; }
.meta-dot { color: var(--pale); }

.article-chapo {
  font-family: var(--ff-body);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--mid);
  border-left: 3px solid var(--red);
  padding-left: 14px;
  margin-bottom: 20px;
}

/* Hero */
.article-figure { margin-bottom: 18px; }
.article-hero {
  width: 100%;
  height: 295px;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 45%, #0e2a54 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-wm {
  font-family: var(--ff-serif);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 8px;
  color: rgba(255,255,255,.1);
  text-transform: uppercase;
  user-select: none;
}
.article-figure figcaption {
  font-size: 10.5px;
  color: var(--pale);
  font-style: italic;
  font-family: var(--ff-sans);
  text-align: right;
  margin-top: 5px;
}

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.share-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #ccc;
  padding: 6px 12px;
  font-size: 12px;
  font-family: var(--ff-sans);
  color: var(--mid);
  cursor: pointer;
  border-radius: 1px;
}
.share-link:hover { border-color: var(--dark); color: var(--dark); }
.share-icons { display: flex; gap: 5px; }
.soc-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  border-radius: 1px;
}
.soc-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* Redac intro blockquote */
.redac-intro {
  font-size: 13.5px;
  color: var(--mid);
  font-family: var(--ff-sans);
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid var(--border);
  padding: 12px 16px;
  background: #fafafa;
  margin-bottom: 24px;
}

/* Article body */
.article-body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--dark);
  margin-bottom: 28px;
}
.article-body p { margin-bottom: 18px; }
.article-body h2 {
  font-family: var(--ff-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin: 30px 0 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
  line-height: 1.25;
}

/* Redac conseille */
.redac-conseille {
  background: #fffbf2;
  border: 1px solid #e8d8a0;
  padding: 14px 18px;
  margin-bottom: 22px;
  border-radius: 1px;
}
.rc-head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8c6d0f;
  font-family: var(--ff-sans);
  margin-bottom: 10px;
}
.redac-conseille ul { list-style: none; }
.redac-conseille li {
  padding: 6px 0;
  border-bottom: 1px solid #e8d8a0;
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.4;
}
.redac-conseille li:last-child { border-bottom: none; padding-bottom: 0; }
.redac-conseille a:hover { color: var(--red); text-decoration: none; }

/* Engagements row */
.eng-row {
  display: flex;
  border: 1px solid var(--border);
  margin-bottom: 26px;
  border-radius: 1px;
  overflow: hidden;
}
.eng-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 12.5px;
  color: var(--mid);
  font-family: var(--ff-sans);
  line-height: 1.4;
  background: #fafafa;
  cursor: pointer;
}
.eng-item:hover { background: #f0f0f0; }
.eng-item svg { flex-shrink: 0; color: var(--mid); }
.eng-sep { width: 1px; background: var(--border); flex-shrink: 0; }

/* Comments */
.comments { margin-bottom: 36px; }
.comments-head {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff-sans);
  color: var(--dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dark);
  margin-bottom: 14px;
}
.comment {
  padding: 14px 16px;
  background: var(--bg-light);
  border-left: 3px solid var(--border);
}
.cmt-author {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--ff-sans);
  color: var(--dark);
  margin-right: 10px;
}
.cmt-date {
  font-size: 11px;
  color: var(--pale);
  font-family: var(--ff-sans);
  display: block;
  margin-bottom: 8px;
  margin-top: 2px;
}
.cmt-text {
  font-size: 14px;
  font-style: italic;
  font-family: var(--ff-body);
  color: var(--mid);
  margin-bottom: 10px;
}
.cmt-more {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  color: var(--red);
  font-family: var(--ff-sans);
}
.cmt-more:hover { text-decoration: underline; }

/* ====================================================
   RELATED SECTIONS
   ==================================================== */
.related-section { margin-bottom: 36px; }
.related-heading {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-family: var(--ff-sans);
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--dark);
  margin-bottom: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.card {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.card:last-child { border-bottom: none; }

.card-img {
  width: 95px;
  height: 68px;
  border-radius: 1px;
  flex-shrink: 0;
  background-color: #d8d8d8;
  background-size: cover;
  background-position: center;
}
/* Placeholder gradients */
.ci-rising   { background: linear-gradient(135deg, #d4c5a9, #b09070); }
.ci-cac      { background: linear-gradient(135deg, #a9bcd4, #7090b0); }
.ci-hermes   { background: linear-gradient(135deg, #d4a9a9, #b07070); }
.ci-record   { background: linear-gradient(135deg, #a9d4b4, #70b080); }
.ci-lettre   { background: linear-gradient(135deg, #d4cba9, #b0a070); }
.ci-edenred  { background: linear-gradient(135deg, #c4a9d4, #9070b0); }
.ci-legrand  { background: linear-gradient(135deg, #a9c4d4, #7090b0); }
.ci-droits   { background: linear-gradient(135deg, #d4b8a9, #b08070); }
.ci-lumibird { background: linear-gradient(135deg, #a9d4cf, #70b0ac); }
.ci-ia       { background: linear-gradient(135deg, #b4b4d4, #8888b0); }

.card-body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.card-rub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--ff-sans);
  line-height: 1;
}
.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
}
.card h3 a:hover { color: var(--red); text-decoration: none; }
.card p {
  font-size: 11.5px;
  color: var(--light);
  line-height: 1.45;
  font-family: var(--ff-sans);
}

/* ====================================================
   SIDEBAR
   ==================================================== */
.page-sidebar { position: sticky; top: 8px; }

.sb-box {
  border: 1px solid var(--border);
  margin-bottom: 18px;
  border-radius: 1px;
  overflow: hidden;
}
.sb-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--ff-sans);
  color: var(--dark);
  background: #f2f2f2;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.sb-sub-title {
  background: #f8f8f8;
  border-top: 1px solid var(--border);
}
.sb-table {
  width: 100%;
  border-collapse: collapse;
}
.sb-table tr { border-bottom: 1px solid #f0f0f0; }
.sb-table tr:last-child { border-bottom: none; }
.sbt-gap td { height: 6px; background: #f8f8f8; padding: 0; }
.sbt-name {
  font-size: 11px;
  font-family: var(--ff-sans);
  color: var(--dark);
  padding: 6px 12px;
  font-weight: 400;
}
.sbt-price {
  font-size: 11px;
  font-family: var(--ff-sans);
  color: var(--light);
  text-align: right;
  padding-right: 8px;
  white-space: nowrap;
}
.sbt-pct {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--ff-sans);
  text-align: right;
  padding: 6px 12px 6px 4px;
  white-space: nowrap;
}
.sbt-pct.pos { color: var(--pos); }
.sbt-pct.neg { color: var(--neg); }

/* Kiosque */
.sb-kiosque {}
.kiosque-cover {
  width: 100%;
  height: 130px;
  background: linear-gradient(160deg, #1c3a5e 0%, #2e6096 100%);
}
.btn-lire-numero {
  display: block;
  text-align: center;
  background: var(--dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: var(--ff-sans);
  padding: 10px;
  margin: 0;
}
.btn-lire-numero:hover { background: #333; text-decoration: none; }
.btn-offres {
  display: block;
  text-align: center;
  background: var(--red);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--ff-sans);
  padding: 10px;
}
.btn-offres:hover { background: var(--red-dark); text-decoration: none; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer { background: #1c1c1c; color: #999; margin-top: 48px; }
.footer-block { border-bottom: 1px solid #2e2e2e; padding: 28px 20px; }
.footer-block:last-child { border-bottom: none; }

/* Footer links block */
.fl-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.fl-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 120px;
}
.fl-col strong {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #e0e0e0;
  font-family: var(--ff-sans);
  margin-bottom: 4px;
}
.fl-col a {
  font-size: 11.5px;
  color: #888;
  font-family: var(--ff-sans);
  line-height: 1.4;
}
.fl-col a:hover { color: #ccc; text-decoration: underline; }

.footer-social { margin-top: 10px; }
.footer-social > span {
  font-size: 10.5px;
  color: #666;
  font-family: var(--ff-sans);
  display: block;
  margin-bottom: 7px;
}
.footer-soc-icons { display: flex; gap: 7px; }
.footer-soc-icons a {
  width: 27px;
  height: 27px;
  border: 1px solid #3a3a3a;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}
.footer-soc-icons a:hover { border-color: #888; color: #ccc; text-decoration: none; }

/* Footer mega */
.fm-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 22px 18px;
}
.fm-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fm-col strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #e0e0e0;
  font-family: var(--ff-sans);
  margin-bottom: 5px;
}
.fm-col a {
  font-size: 11px;
  color: #777;
  font-family: var(--ff-sans);
  line-height: 1.45;
}
.fm-col a:hover { color: #bbb; text-decoration: underline; }

/* Footer bottom */
.footer-bottom-block { background: #141414; }
.fbb-inner { max-width: 1300px; margin: 0 auto; }
.fbb-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 22px 18px;
  margin-bottom: 24px;
}
.fbb-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fbb-col strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #ccc;
  font-family: var(--ff-sans);
  margin-bottom: 5px;
}
.fbb-col a {
  font-size: 11px;
  color: #666;
  font-family: var(--ff-sans);
}
.fbb-col a:hover { color: #aaa; text-decoration: underline; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
}
.footer-legal a {
  font-size: 10px;
  color: #555;
  font-family: var(--ff-sans);
}
.footer-legal a:hover { color: #888; text-decoration: underline; }

/* ====================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; gap: 24px; }
  .page-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sb-box { margin-bottom: 0; }
  .util-nav { display: none; }
  .logo-img { height: 40px; }
  .btn-vente-flash-header { display: none; }
  .logo-side-left { display: none; }
  /* Recenter logo when right col hidden */
  .header-logo-inner { grid-template-columns: 1fr; justify-items: center; }
  .logo-side-right { display: none; }
}

/* ====================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ==================================================== */
@media (max-width: 768px) {

  /* Promo bar */
  .promo-bar { flex-wrap: wrap; gap: 5px; font-size: 11px; }

  /* Utility bar */
  .header-util-inner { padding: 0 14px; }
  .btn-connect { display: none; }

  /* Logo bar */
  .header-logo-inner { padding: 8px 14px; min-height: auto; }
  .logo-img { height: 32px; max-width: 280px; }

  /* Main nav */
  .main-nav-inner { padding: 0 14px; gap: 0; }
  .main-nav-inner a { font-size: 10.5px; padding: 10px 9px; letter-spacing: .03em; }

  /* Ticker */
  .ticker-palmares-label { display: none; }
  .ticker-search-wrap { display: none; }
  .tc-label { display: none; }

  /* Page layout */
  .page-layout { padding: 16px 14px; }

  /* Article */
  .article-h1 { font-size: 24px; }
  .article-chapo { font-size: 15px; }
  .article-hero { height: 200px; }
  .hero-wm { font-size: 38px; letter-spacing: 5px; }
  .article-body { font-size: 15.5px; }
  .article-body h2 { font-size: 18px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Sidebar */
  .page-sidebar { grid-template-columns: 1fr; }

  /* Eng row */
  .eng-row { flex-direction: column; }
  .eng-sep { height: 1px; width: 100%; }

  /* Footer */
  .fl-inner { gap: 18px; }
  .fl-col { min-width: calc(50% - 10px); }
  .fm-inner { grid-template-columns: repeat(2, 1fr); }
  .fbb-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-legal { gap: 4px 10px; }
}

/* ====================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ==================================================== */
@media (max-width: 480px) {
  .promo-bar { font-size: 10.5px; gap: 4px; }
  .btn-subscribe { padding: 6px 10px; font-size: 10.5px; }
  .logo-img { height: 26px; max-width: 220px; }
  .article-h1 { font-size: 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card { grid-template-columns: 80px 1fr; }
  .card-img { width: 80px; height: 58px; }
  .fl-col { min-width: 100%; }
  .fm-inner { grid-template-columns: 1fr 1fr; }
  .fbb-cols { grid-template-columns: 1fr; }
}

/* ====================================================
   VALORISE FX — additions (article conversion blocks)
   ==================================================== */
.article-hero { position: relative; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: brightness(1.08) contrast(1.02);
}
.article-hero::after {
  display: none;
}
.hero-wm { position: relative; z-index: 1; }

.verify-box {
  border: 1px solid var(--border);
  background: #fafafa;
  padding: 14px 16px;
  margin: 14px 0 18px;
  border-left: 3px solid var(--red);
}
.verify-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 10px;
}
.verify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 1px;
  color: var(--dark);
}
.verify-btn:hover { border-color: var(--dark); text-decoration: none; }
.verify-note {
  font-size: 12.5px;
  color: var(--light);
  font-family: var(--ff-sans);
  line-height: 1.55;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 18px;
}
.fact-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 12px 12px;
  border-left: 3px solid var(--dark);
}
.fact-k {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light);
  font-family: var(--ff-sans);
}
.fact-v {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 700;
  margin-top: 6px;
}
.fact-s {
  font-size: 12.5px;
  color: var(--mid);
  font-family: var(--ff-sans);
  line-height: 1.5;
  margin-top: 6px;
}

.sim-box {
  border: 1px solid var(--border);
  background: #fffbf2;
  padding: 14px 16px;
  margin: 14px 0 18px;
  border-left: 3px solid #8c6d0f;
}
.sim-head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8c6d0f;
  font-family: var(--ff-sans);
  margin-bottom: 10px;
}
.sim-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-sans);
  font-size: 12.5px;
}
.sim-table th, .sim-table td {
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}
.sim-table th {
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6f5b10;
}
.sim-note {
  font-size: 12.5px;
  color: #6b5b2a;
  margin-top: 10px;
  line-height: 1.55;
}

.beaugrand-figure { margin: 16px 0 18px; }
.beaugrand-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1px;
  background: #d8d8d8;
}
.beaugrand-figure figcaption {
  font-size: 10.5px;
  color: var(--pale);
  font-style: italic;
  font-family: var(--ff-sans);
  text-align: right;
  margin-top: 6px;
}

.qa {
  border: 1px solid var(--border);
  padding: 14px 16px;
  background: #fafafa;
  border-left: 3px solid var(--red);
  margin: 14px 0 18px;
}
.qa-item { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.qa-item:last-child { border-bottom: none; }
.q {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.a {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
}

.cta-panel {
  border: 1px solid var(--border);
  padding: 16px;
  background: #1c1c1c;
  color: #fff;
  margin: 18px 0 0;
}
.cta-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--ff-sans);
  color: #bdbdbd;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 1px;
}
.cta-primary {
  background: var(--red);
  color: #fff;
}
.cta-primary:hover { background: var(--red-dark); text-decoration: none; }
.cta-secondary {
  background: #fff;
  color: #1c1c1c;
}
.cta-secondary:hover { opacity: .9; text-decoration: none; }
.cta-foot {
  font-size: 11px;
  color: #bdbdbd;
  font-family: var(--ff-sans);
  line-height: 1.55;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .facts-grid { grid-template-columns: 1fr; }
  .verify-actions { flex-direction: column; align-items: stretch; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}

.article-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px 60px;
}

.article-hero{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.article-meta{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom: 10px;
}

.kicker{
  color:#c8102e;
  font-weight:800;
  letter-spacing:.12em;
  font-size:11px;
  text-transform:uppercase;
}

.date{
  color:#6b7280;
  font-size:12px;
}

.h1{
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1.15;
  margin: 10px 0 10px;
  color:#111827;
}

.h1 em{
  color:#2c5282;
  font-style:italic;
}

.lede{
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color:#1f2937;
  margin: 0 0 18px;
}

.note-disclaimer{
  margin-top: 12px;
  font-size: 12px;
  color:#6b7280;
}

.hero-ctas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.article-grid{
  display:grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 960px){
  .article-grid{ grid-template-columns: 1fr; }
}

.article{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.h2{
  font-family: Georgia, serif;
  font-size: 22px;
  margin: 18px 0 10px;
  color:#111827;
}

.article p{
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color:#1f2937;
  margin: 0 0 14px;
}

.media{
  margin: 14px 0 18px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background:#f9fafb;
}

.media img{
  width:100%;
  height:auto;
  display:block;
}

.media figcaption{
  padding:10px 12px;
  font-size:12px;
  color:#6b7280;
  line-height:1.6;
}

.media-hero{
  margin-top: 14px;
}

.media-beaugrand{
  margin-top: 12px;
}

.proof-box{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0 16px;
}

@media (max-width: 720px){
  .proof-box{ grid-template-columns: 1fr; }
}

.proof-item{
  border:1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px;
  background:#faf9f7;
}

.proof-title{
  font-weight:800;
  color:#111827;
  margin-bottom: 2px;
}

.proof-desc{
  color:#6b7280;
  font-size:12px;
  margin-bottom: 10px;
}

.cards{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
  margin: 10px 0 16px;
}

@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
}

.card{
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  padding:14px;
  background:#ffffff;
}

.card-title{
  font-weight:900;
  margin-bottom:6px;
  color:#111827;
}

.card-text{
  color:#1f2937;
  line-height:1.55;
  font-size:14px;
}

.muted{
  display:inline-block;
  margin-left:6px;
  color:#6b7280;
  font-size:12px;
}

.sim-box{
  border:1px solid rgba(0,0,0,.10);
  border-radius:16px;
  padding:16px;
  background: linear-gradient(135deg,#1a2a4a,#2c4a7a);
  color:#ffffff;
  margin: 10px 0 16px;
}

.sim-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}

.sim-title{
  font-weight:900;
  letter-spacing:.02em;
  font-size:16px;
}

.sim-sub{
  color:#c7d6ff;
  font-size:13px;
  margin-top:4px;
  line-height:1.5;
}

.sim-table{
  margin-top: 14px;
  border-radius: 12px;
  overflow:hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.sim-row{
  display:grid;
  grid-template-columns: 1fr 1.4fr .9fr;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 13px;
}

.sim-row:first-child{
  border-top:none;
}

.sim-row-head{
  font-weight:900;
  color:#e9f0ff;
  background: rgba(255,255,255,.06);
}

.sim-foot{
  margin-top: 10px;
  color:#c7d6ff;
  font-size:12px;
  line-height:1.5;
}

.callout{
  border-left: 4px solid #c8102e;
  background:#faf9f7;
  padding: 12px 14px;
  border-radius: 12px;
  color:#111827;
  line-height:1.6;
  margin: 12px 0 16px;
}

.qa{
  margin-top: 6px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.qa-item{
  border:1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 12px 14px;
  background:#ffffff;
}

.q{
  font-weight:900;
  color:#111827;
  margin-bottom: 6px;
}

.a{
  color:#1f2937;
  line-height:1.65;
  font-size:14px;
}

.sidebar{
  position: sticky;
  top: 14px;
  align-self:start;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

@media (max-width: 960px){
  .sidebar{ position: static; }
}

.side-card{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.side-title{
  font-weight: 900;
  margin-bottom: 10px;
  color:#111827;
}

.side-list{
  margin:0;
  padding-left: 18px;
  color:#1f2937;
  line-height:1.65;
  font-size: 13px;
}

.side-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.side-note{
  margin-top: 10px;
  color:#6b7280;
  font-size:12px;
  line-height:1.5;
}

.final-cta{
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(135deg,#1a2a4a,#2c4a7a);
  color:#fff;
  padding: 16px;
}

.final-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}

.final-title{
  font-weight: 900;
  font-size: 18px;
}

.final-sub{
  color:#c7d6ff;
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.5;
}

.final-cta-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.final-foot{
  margin-top: 10px;
  color:#c7d6ff;
  font-size:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.02em;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
}

.btn.primary{
  background:#c8102e;
  color:#ffffff;
}

.btn.ghost{
  background:#ffffff;
  color:#111827;
  border-color: rgba(0,0,0,.12);
}

.btn.dark{
  background:#0f172a;
  color:#ffffff;
}

.btn.small{
  padding: 10px 12px;
  border-radius: 12px;
  background:#ffffff;
  color:#111827;
  border-color: rgba(0,0,0,.12);
}

.btn.full{
  width:100%;
}

.article-body ul{
  margin: 10px 0 14px;
  padding-left: 0;
  list-style: none;
}

.article-body li{
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
}

.article-body li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}
/* ====================================================
   ANCRE MARQUE DISCRÈTE
   ==================================================== */
a.brand-anchor {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
  transition: border-color .15s, color .15s;
}
a.brand-anchor:hover {
  color: var(--red);
  border-bottom-color: var(--red);
  text-decoration: none;
}
/* ====================================================
   SIMULATEUR SCREENSHOTS
   ==================================================== */
.sim-screenshots {
  margin: 14px 0 18px;
}

.sim-screenshot-item {
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  overflow: hidden;
  background: #faf9f7;
}

.sim-screenshot-label {
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f3f4f6;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.sim-figure {
  margin: 0;
}

.sim-img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.zoomable-img {
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 12, 20, 0.86);
}

.img-lightbox.is-open {
  display: flex;
}

.img-lightbox-content {
  position: relative;
  max-width: min(1200px, 96vw);
  max-height: 92vh;
}

.img-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.img-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.26);
}

@media (max-width: 680px) {
  .img-lightbox {
    padding: 14px;
  }

  .img-lightbox-close {
    top: 8px;
    right: 8px;
  }
}

.sim-figure figcaption {
  padding: 10px 14px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}

.author-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.author-link:hover {
  color: #2c5282; /* léger bleu élégant */
}

.kiosque-cover {
  width: 100%;
  margin: 15px 0;
  text-align: center;
}

.kiosque-cover img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.packs-box{
  margin: 14px 0 18px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  background: #faf9f7;
}
.packs-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}
.packs-title{font-weight:900;color:#111827;}
.packs-sub{font-size:12px;color:#6b7280;line-height:1.5;}
.packs-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width: 1100px){ .packs-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 640px){ .packs-grid{ grid-template-columns: 1fr;} }

.pack{
  position:relative;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px;
}
.pack-top{
  margin-bottom: 10px;
  padding-top: 6px;
}
.pack-name-line{
  display:flex;
  align-items:baseline;
  gap:6px;
  flex-wrap:nowrap;
  margin-bottom:6px;
}
.pack-name{
  font-weight:900;
  color:#111827;
  font-size:14px;
  white-space:nowrap;
}
.pack-price{
  font-size:12px;
  color:#6b7280;
  white-space:nowrap;
}
.pack-rendement{
  display:inline-block;
  font-size:11.5px;
  color:#1a7f3c;
  font-weight:700;
  background:#f0fdf4;
  border:1px solid #bbf7d0;
  border-radius:6px;
  padding:3px 8px;
  margin-bottom: 10px;
  white-space:nowrap;
}
.pack-list{
  margin:0;
  padding-left: 18px;
  font-size:13px;
  line-height:1.65;
  color:#1f2937;
}
.pack-badge{
  position:absolute;
  top: -1px;
  right: -1px;
  background:#c8102e;
  color:#fff;
  font-size:10px;
  font-weight:900;
  padding:5px 10px;
  border-radius: 0 14px 0 10px;
  letter-spacing:.02em;
  white-space:nowrap;
}
.pack-highlight{
  border-color: rgba(200,16,46,.35);
  box-shadow: 0 10px 25px rgba(200,16,46,.10);
}
.packs-note{
  margin: 12px 0 0;
  font-size:12px;
  color:#6b7280;
  line-height:1.6;
}
.packs-ctas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}
.packs-foot{
  margin-top: 10px;
  font-size:12px;
  color:#6b7280;
  line-height:1.6;
}

.qa {
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}
.qa-item {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border-bottom: 1px solid #e0e0e0;
}
.qa-item:last-child { border-bottom: none; }
.q {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #c8102e;
  line-height: 1.5;
  padding: 14px 16px;
  background: #fafafa;
  border-right: 1px solid #e0e0e0;
  display: flex;
  align-items: flex-start;
}
.a {
  font-family: 'Lora', Georgia, serif;
  font-size: 15px;
  line-height: 1.75;
  color: #1a1a1a;
  padding: 14px 18px;
  background: #ffffff;
}
@media (max-width: 640px) {
  .qa-item { grid-template-columns: 1fr; }
  .q {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    background: #f5f5f5;
  }
}
