/* ── NAV BLOG ── */
.logo a { display: block; }

/* ── BOTTOM CTA (blog) — padding réduit ── */
.bottom-cta { padding: 72px 24px; }

/* ── ARTICLE HEADER ── */
.article-header {
  background: var(--dark);
  padding: 130px 24px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(204,89,210,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.article-header-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.article-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); display: inline-block; margin-bottom: 18px;
}
.article-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--white); margin-bottom: 20px;
}
.article-meta { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ── ARTICLE BODY ── */
.article-body { padding: 64px 24px 80px; background: var(--white); }
.article-inner { max-width: 760px; margin: 0 auto; }

/* Typography */
.article-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800; color: var(--dark);
  margin: 48px 0 16px; letter-spacing: -0.02em;
}
.article-inner h2:first-child { margin-top: 0; }
.article-inner h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--dark); margin: 32px 0 10px;
}
.article-inner p { font-size: 0.98rem; line-height: 1.82; color: var(--text); margin-bottom: 16px; }
.article-inner ul, .article-inner ol { padding-left: 22px; margin-bottom: 20px; }
.article-inner li { font-size: 0.96rem; line-height: 1.75; color: var(--text); margin-bottom: 8px; }
.article-inner li strong, .article-inner p strong { color: var(--dark); font-weight: 600; }
.article-inner a { color: var(--rose); text-decoration: underline; }

/* Lead */
.article-lead {
  font-size: 1.06rem; line-height: 1.8; color: var(--text);
  background: var(--bg); border-left: 3px solid var(--rose);
  padding: 20px 24px; border-radius: 0 12px 12px 0; margin-bottom: 36px;
}

/* Callout */
.callout { border-radius: 12px; padding: 18px 22px; margin: 24px 0; font-size: 0.93rem; line-height: 1.7; }
.callout-warning { background: rgba(255,168,39,0.1); border: 1.5px solid rgba(255,168,39,0.3); }
.callout-warning strong { color: #9a6200; }
.callout-info { background: rgba(42,245,255,0.07); border: 1.5px solid rgba(42,245,255,0.22); }
.callout-info strong { color: #007a85; }
.callout-success { background: rgba(166,255,161,0.12); border: 1.5px solid rgba(166,255,161,0.4); }
.callout-success strong { color: #2d9e28; }

/* Table */
.article-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: 12px; border: 1.5px solid var(--light); }
.article-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 520px; }
.article-table th {
  background: var(--dark); color: var(--white); text-align: left;
  padding: 13px 16px; font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.article-table td { padding: 13px 16px; border-bottom: 1px solid var(--light); vertical-align: top; line-height: 1.6; color: var(--text); }
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:nth-child(even) td { background: var(--bg); }

/* Steps (numérotés) */
.step-list { list-style: none; padding: 0; }
.step-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--light); align-items: flex-start; }
.step-item:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: var(--dark); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1rem;
}
.step-content h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.step-content p { font-size: 0.92rem; color: var(--gray); margin: 0; line-height: 1.65; }

/* No-divider variant (removes borders between items) */
.no-divider .tip-item,
.no-divider .step-item { border-bottom: none; padding: 14px 0; }

/* Article inline CTA — spécificité renforcée pour surcharger .article-inner */
.article-cta {
  background: var(--dark); border-radius: 18px; padding: 40px 36px;
  text-align: center; margin: 48px 0 0;
}
.article-cta .article-cta-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 14px; display: block;
}
.article-inner .article-cta h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 800;
  color: var(--white); margin-bottom: 14px; letter-spacing: -0.02em;
}
.article-inner .article-cta p {
  color: rgba(255,255,255,0.6); font-size: 0.96rem; line-height: 1.7; margin-bottom: 24px;
}
.article-inner .article-cta a.btn-full {
  display: block; max-width: 420px; margin: 0 auto;
  color: #fff; text-decoration: none;
}
.article-inner .article-cta a.btn-full:hover { color: #fff; text-decoration: none; }
@media (max-width: 640px) { .article-cta { padding: 30px 22px; } }

/* Tips (conseils numérotés) */
.tip-list { list-style: none; padding: 0; }
.tip-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--light); align-items: flex-start; }
.tip-item:last-child { border-bottom: none; }
.tip-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--rose); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.85rem;
}
.tip-content h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.tip-content p { font-size: 0.92rem; color: var(--gray); margin: 0; line-height: 1.65; }

/* Erreurs */
.error-item {
  padding: 18px 18px 18px 52px; position: relative;
  border-left: 3px solid var(--rose); margin-bottom: 12px;
  background: var(--bg); border-radius: 0 10px 10px 0;
}
.error-item::before {
  content: '✗'; position: absolute; left: 16px; top: 18px;
  color: var(--rose); font-weight: 700; font-size: 1rem;
}
.error-item h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 6px; }
.error-item p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* FAQ */
.faq-item { border: 1.5px solid var(--light); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--dark); padding: 18px 20px; background: var(--bg); margin: 0; }
.faq-a { padding: 16px 20px; font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin: 0; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--rose); margin-bottom: 40px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.breadcrumb a { color: var(--rose); text-decoration: none; opacity: 0.6; transition: opacity 0.15s; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { margin: 0 7px; opacity: 0.35; font-weight: 400; }
.breadcrumb > *:last-child { opacity: 0.9; }

/* Related */
.related-articles { margin-top: 56px; padding-top: 40px; border-top: 2px solid var(--bg); }
.related-articles h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 20px; color: var(--dark); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.related-card { border: 1.5px solid var(--light); border-radius: 14px; padding: 18px 20px; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.2s; display: block; }
.related-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.related-tag { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose); margin-bottom: 8px; display: block; }
.related-card h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--dark); line-height: 1.35; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .article-header { padding: 110px 18px 48px; }
  .article-body { padding: 44px 18px 60px; }
  .step-item, .tip-item { flex-direction: column; gap: 10px; }
  .related-grid { grid-template-columns: 1fr; }
}
