/* =====================================================================
   GoJido — Blog. Lecture d'abord : une colonne confortable, pas de
   sidebar, pas de popup. S'appuie sur les tokens de styles.css (chargée
   avant) : couleurs, polices, boutons .btn / .btn--primary.
   ===================================================================== */

/* ---------- Barre haute, simple et statique (pas la nav du site :
   celle-ci est fixe et pilotée par script.js, inutile ici) ---------- */
.bnav {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.bnav__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bnav__logo { display: inline-flex; flex: none; }
.bnav__logo img { height: 24px; width: auto; display: block; }
.bnav__cta { font-size: 14px; padding: 9px 18px; }

/* ---------- Colonne de lecture ---------- */
.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}
.article__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-ink);
  margin-bottom: 14px;
}
/* Lien vers l'autre langue de l'article — discret, sous l'eyebrow */
.article__lang { margin-bottom: 14px; font-size: 0.88rem; }
.article__lang a { color: var(--ink-faint); text-decoration: none; }
.article__lang a:hover { color: var(--accent-ink); text-decoration: underline; }
.article h1 {
  font-family: var(--font-head, "Inter", system-ui, sans-serif);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.article__standfirst {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.article h2 {
  font-family: var(--font-head, "Inter", system-ui, sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 44px 0 14px;
}
.article p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.article ul, .article ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.article li {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.article li::marker { color: var(--accent); }
.article b, .article strong { color: var(--ink); font-weight: 600; }

/* Formule mise en évidence (le calcul de l'étape 5) */
.article .formule {
  padding: 16px 20px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- CTA final — un seul, sobre ---------- */
.article__cta {
  margin-top: 52px;
  padding: 30px 28px;
  background: var(--dark-surface);
  border-radius: var(--r-lg);
}
.article__cta p {
  color: #c4c4c8;
  margin-bottom: 20px;
}
.article__cta .btn {
  white-space: normal; /* le libellé peut se replier sur petit écran */
  line-height: 1.3;
}
/* Deux chemins vers la conversation : LinkedIn (principal) et Instagram —
   les DM du lead magnet partent des deux réseaux, le lecteur répond là où
   il a écrit « QUESTIONS ». Empilés sur mobile, côte à côte sinon. */
.article__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 480px) {
  .article__cta-actions { flex-direction: column; }
  .article__cta-actions .btn { width: 100%; }
}

/* ---------- Liste des articles (/blog) ---------- */
.bloglist {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}
.bloglist h1 {
  font-family: var(--font-head, "Inter", system-ui, sans-serif);
  font-size: clamp(1.9rem, 5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.bloglist__lead { color: var(--ink-soft); line-height: 1.65; margin-bottom: 36px; }
.blogcard {
  display: block;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blogcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--accent-rgb), 0.45);
}
.blogcard + .blogcard { margin-top: 16px; }
.blogcard h2 {
  font-family: var(--font-head, "Inter", system-ui, sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.blogcard p { color: var(--ink-soft); line-height: 1.6; margin-bottom: 10px; }
.blogcard span { color: var(--accent-ink); font-weight: 600; font-size: 0.95rem; }

/* ---------- Pied de page minimal (sans année : rien ne date) ---------- */
.bfoot {
  border-top: 1px solid var(--border);
  padding: 28px 20px;
}
.bfoot__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  font-size: 0.9rem;
  color: var(--ink-faint);
}
.bfoot a { color: var(--ink-soft); text-decoration: none; }
.bfoot a:hover { color: var(--accent-ink); }
