/* blog-article.css — Individual article page styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #0f0f1a; color: #e8e8f0; line-height: 1.6; }
header { background: #1a1a2e; border-bottom: 1px solid #2a2a4a; padding: 1rem 2rem; }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 700px; margin: 0 auto; }
nav a { color: #e8e8f0; text-decoration: none; font-weight: 600; }
nav .logo { font-size: 1.3rem; color: #fd79a8; }
nav .sep { margin: 0 1rem; color: #2a2a4a; }
nav a:hover { color: #ffafcc; }
.container { max-width: 700px; margin: 0 auto; padding: 3rem 2rem; }
.article-content { line-height: 1.8; }
.article-title { font-size: 2.4rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem; color: #ffffff; }
.article-date { color: #7070a0; font-size: 0.9rem; margin-bottom: 2rem; }
.article-lead { font-size: 1.15rem; color: #d0d0e8; margin-bottom: 2rem; border-left: 3px solid #fd79a8; padding-left: 1.25rem; }
.article-content p { color: #c0c0d8; margin-bottom: 1.5rem; font-size: 1.05rem; }
.article-content h2 { font-size: 1.5rem; color: #ffffff; margin: 2.5rem 0 1rem; font-weight: 600; }
.article-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.article-content li { color: #c0c0d8; margin-bottom: 0.5rem; font-size: 1.05rem; }
.article-content strong { color: #e8e8f0; }
.cta-button { display: inline-block; background: linear-gradient(135deg, #fd79a8, #a29bfe); color: #ffffff; text-decoration: none; font-weight: 700; font-size: 1.1rem; padding: 1rem 2rem; border-radius: 50px; margin: 1.5rem 0; transition: opacity 0.2s; }
.cta-button:hover { opacity: 0.85; color: #ffffff; }
/* Breadcrumb nav */
.breadcrumb { margin-bottom: 2rem; }
.breadcrumb-back { color: #7070a0; text-decoration: none; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.breadcrumb-back:hover { color: #fd79a8; }

/* Share strip — above "Lire aussi", below article body */
.share-strip { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; padding: 1.5rem; background: #1a1a2e; border: 1px solid #2a2a4a; border-radius: 12px; }
.share-label { font-size: 0.85rem; font-weight: 600; color: #7070a0; text-transform: uppercase; letter-spacing: 0.06em; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.share-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: 50px; font-size: 0.95rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.15s, transform 0.1s; min-height: 48px; /* thumb-friendly */ white-space: nowrap; }
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; }
.share-btn:active { transform: translateY(0); opacity: 1; }
.share-btn--whatsapp { background: #25d366; color: #fff; flex: 1 1 140px; justify-content: center; }
.share-btn--twitter { background: #0f0f1a; color: #e8e8f0; border: 1px solid #2a2a4a; flex: 1 1 110px; justify-content: center; }
.share-btn--copy { background: #0f0f1a; color: #e8e8f0; border: 1px solid #2a2a4a; flex: 1 1 140px; justify-content: center; font-family: inherit; }
.share-btn--copied { background: #1a3a2a; border-color: #25d366; color: #25d366; }
@media (max-width: 480px) { .share-strip { padding: 1.25rem 1rem; } .share-btn { padding: 0.8rem 1rem; font-size: 0.9rem; } }

/* "Lire aussi" cross-link section */
.related-articles { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid #2a2a4a; }
.related-articles-title { font-size: 1.2rem; font-weight: 700; color: #ffffff; margin-bottom: 1.5rem; }
.related-articles-grid { display: flex; flex-direction: column; gap: 1rem; }
.related-article-link { display: flex; flex-direction: column; gap: 0.35rem; background: #1a1a2e; border: 1px solid #2a2a4a; border-radius: 10px; padding: 1.25rem 1.5rem; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.related-article-link:hover { border-color: #fd79a8; background: #1f1f35; }
.related-article-title { color: #e8e8f0; font-weight: 600; font-size: 1rem; line-height: 1.4; }
.related-article-desc { color: #7070a0; font-size: 0.875rem; line-height: 1.5; }

footer { text-align: center; padding: 2rem; color: #5050a0; font-size: 0.85rem; border-top: 1px solid #1a1a2e; }
footer a { color: #5050a0; text-decoration: none; margin: 0 0.5rem; }
footer a:hover { color: #7070a0; }