/* ───────────── Blog Meetr — feuille de style partagée ───────────── */
:root {
	--violet: #7B5CFF;
	--ink: #0a0a0a;
	--text: #2E2E33;
	--muted: #6b7280;
	--border: #EBEBEB;
	--bg: #F7F7F8;
	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--font);
	background: #fff;
	color: var(--text);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; transition: color .15s; }
a:hover { color: var(--violet); }

/* ─── Header ─── */
.blog-header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	position: sticky; top: 0; z-index: 50;
}
.blog-header-inner {
	max-width: 1080px; margin: 0 auto;
	padding: 16px 24px;
	display: flex; align-items: center; gap: 16px;
}
.blog-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.blog-logo img { height: 30px; }
.blog-logo span {
	font-weight: 800; color: var(--ink);
	font-size: 20px; letter-spacing: -0.02em;
}
.blog-nav {
	margin-left: auto;
	display: flex; gap: 22px; align-items: center;
}
.blog-nav a {
	font-size: 14px; font-weight: 600;
	color: var(--text); text-decoration: none;
}
.blog-cta {
	background: var(--ink); color: #fff !important;
	padding: 9px 18px; border-radius: 100px;
	font-size: 14px; font-weight: 700;
	text-decoration: none !important; transition: opacity .2s;
}
.blog-cta:hover { opacity: 0.85; color: #fff !important; }

@media (max-width: 768px) {
	.blog-nav a:not(.blog-cta) { display: none; }
}

/* ─── Article hero ─── */
.article-hero {
	max-width: 760px; margin: 0 auto;
	padding: 56px 24px 36px;
}
.article-eyebrow {
	display: inline-block;
	background: rgba(123,92,255,.1);
	color: var(--violet);
	font-size: 12px; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase;
	padding: 6px 12px; border-radius: 100px;
	margin-bottom: 20px;
}
.article-title {
	font-size: clamp(28px, 4.6vw, 46px);
	font-weight: 800; color: var(--ink);
	line-height: 1.18; letter-spacing: -0.025em;
	margin-bottom: 18px;
}
.article-meta {
	display: flex; gap: 14px; align-items: center;
	color: var(--muted); font-size: 14px;
	flex-wrap: wrap;
}
.article-meta-sep { color: #d1d5db; }
.article-cover {
	max-width: 1080px; margin: 24px auto 0;
	padding: 0 24px;
}
.article-cover img {
	border-radius: 18px; width: 100%;
	aspect-ratio: 16/9; object-fit: cover;
}

/* ─── Article body ─── */
.article-body {
	max-width: 720px; margin: 0 auto;
	padding: 40px 24px 80px;
}
.article-body p { margin-bottom: 22px; font-size: 17px; }
.article-body h2 {
	font-size: clamp(24px, 3.2vw, 32px);
	font-weight: 800; color: var(--ink);
	letter-spacing: -0.02em; line-height: 1.25;
	margin: 56px 0 18px;
	scroll-margin-top: 90px;
}
.article-body h3 {
	font-size: 21px; font-weight: 700; color: var(--ink);
	margin: 36px 0 14px; line-height: 1.3;
}
.article-body h2 + p { margin-top: 0; }
.article-body ul, .article-body ol {
	margin: 0 0 22px 24px; padding: 0;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body blockquote {
	border-left: 4px solid var(--violet);
	background: rgba(123,92,255,.04);
	padding: 16px 20px;
	margin: 28px 0;
	font-style: italic; color: var(--text);
	border-radius: 0 8px 8px 0;
}
.article-body table {
	width: 100%; border-collapse: collapse;
	margin: 28px 0; font-size: 15px;
}
.article-body th, .article-body td {
	border-bottom: 1px solid var(--border);
	padding: 10px 12px; text-align: left;
}
.article-body th { font-weight: 700; color: var(--ink); background: #FAFAFA; }

/* TOC */
.toc {
	background: #FAFAFA;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 22px 26px;
	margin: 32px 0;
}
.toc-title {
	font-size: 13px; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase;
	color: var(--muted); margin-bottom: 12px;
}
.toc ul { list-style: none; margin: 0; }
.toc li { margin-bottom: 8px; font-size: 15px; }
.toc a { color: var(--text); text-decoration: none; }
.toc a:hover { color: var(--violet); text-decoration: underline; }

/* CTA bloc */
.article-cta {
	margin: 56px 0;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
	color: #fff; padding: 36px 32px;
	border-radius: 18px;
	text-align: center;
}
.article-cta h3 { color: #fff; margin-bottom: 10px; font-size: 24px; }
.article-cta p { color: rgba(255,255,255,.75); margin-bottom: 22px; }
.article-cta a {
	display: inline-block;
	background: #fff; color: var(--ink) !important;
	padding: 13px 28px; border-radius: 100px;
	font-weight: 700; text-decoration: none !important;
	transition: opacity .2s;
}
.article-cta a:hover { opacity: .9; color: var(--ink) !important; }

/* Auteur */
.author-box {
	display: flex; gap: 14px; align-items: center;
	border-top: 1px solid var(--border);
	padding-top: 28px; margin-top: 56px;
}
.author-avatar {
	width: 48px; height: 48px;
	border-radius: 50%; background: var(--ink);
	color: #fff; display: flex;
	align-items: center; justify-content: center;
	font-weight: 700;
}
.author-info { font-size: 14px; color: var(--muted); }
.author-name { font-weight: 700; color: var(--ink); }

/* ─── Liste articles (page index) ─── */
.blog-hero {
	max-width: 880px; margin: 0 auto;
	padding: 64px 24px 32px; text-align: center;
}
.blog-hero h1 {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800; letter-spacing: -0.025em;
	color: var(--ink); margin-bottom: 14px;
}
.blog-hero p {
	font-size: 18px; color: var(--muted);
	max-width: 540px; margin: 0 auto;
}
.articles-grid {
	max-width: 1080px; margin: 0 auto;
	padding: 32px 24px 80px;
	display: grid; gap: 28px;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.article-card {
	background: #fff; border: 1px solid var(--border);
	border-radius: 16px; overflow: hidden;
	transition: transform .25s, box-shadow .25s;
	display: flex; flex-direction: column;
	text-decoration: none !important; color: inherit !important;
}
.article-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.article-card-img {
	aspect-ratio: 16/9; background: #f3f4f6;
	overflow: hidden;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 22px; }
.article-card-cat {
	display: inline-block;
	background: rgba(123,92,255,.1);
	color: var(--violet);
	font-size: 11px; font-weight: 700;
	letter-spacing: .08em; text-transform: uppercase;
	padding: 4px 10px; border-radius: 100px;
	margin-bottom: 12px;
}
.article-card h2 {
	font-size: 20px; font-weight: 700;
	color: var(--ink); line-height: 1.3;
	margin-bottom: 8px; letter-spacing: -0.01em;
}
.article-card p {
	font-size: 15px; color: var(--muted);
	line-height: 1.55; margin-bottom: 0;
}
.article-card-meta {
	font-size: 13px; color: var(--muted);
	margin-top: 14px;
}

/* ─── Footer ─── */
.blog-footer {
	border-top: 1px solid var(--border);
	padding: 36px 24px;
	text-align: center; font-size: 13px; color: var(--muted);
}
.blog-footer a { color: inherit; }
