/* ===========================================================================
   Blog — styling long-form
   Surcharge / complète base.css quand un article est rendu
   =========================================================================== */

.blog-hero {
  padding: 80px var(--gutter) 48px;
  max-width: 760px; margin: 0 auto;
  text-align: center;
}
.blog-hero-eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  color: var(--crimson);
  margin-bottom: 16px;
}
.blog-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 16px;
}
.blog-meta {
  font-size: 13px; color: var(--muted);
  letter-spacing: .3px;
}
.blog-meta time { font-weight: 500; }
.blog-meta .dot { margin: 0 8px; opacity: .4; }

/* Article container */
.article {
  max-width: 720px; margin: 0 auto;
  padding: 48px var(--gutter) 80px;
}

.article > p,
.article > ul,
.article > ol,
.article > blockquote {
  font-size: 17px; line-height: 1.75;
  color: #2a2a2a;
  margin-bottom: 1.5em;
}

.article h2 {
  font-size: 30px; margin: 56px 0 16px;
  letter-spacing: -.01em;
}
.article h3 {
  font-size: 22px; margin: 40px 0 12px;
  letter-spacing: -.005em;
}
.article ul, .article ol { padding-left: 1.5em; }
.article li { margin-bottom: .5em; }
.article a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.article a:hover { text-decoration-thickness: 2px; }

.article blockquote {
  border-left: 3px solid var(--crimson);
  padding: 6px 0 6px 24px;
  margin-left: 0;
  font-family: var(--serif);
  font-size: 21px; font-style: italic;
  color: var(--soft);
}

.article strong { font-weight: 600; color: var(--black); }

.article hr {
  border: 0; height: 1px;
  background: var(--line);
  margin: 48px 0;
}

.article table {
  width: 100%; border-collapse: collapse;
  font-size: 15px; margin: 24px 0 32px;
}
.article table th, .article table td {
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.article table th {
  background: var(--paper);
  font-size: 12px; letter-spacing: 1.2px;
  text-transform: uppercase; font-weight: 600;
  color: var(--soft);
}

/* Encart "Mentora Excellence" inline */
.article-cta {
  background: var(--paper);
  border-left: 3px solid var(--crimson);
  padding: 32px;
  margin: 48px 0;
}
.article-cta h4 {
  font-family: var(--serif); font-size: 22px;
  margin: 0 0 8px; font-weight: 500;
}
.article-cta p { font-size: 15px; margin-bottom: 16px; color: var(--soft); }

/* Footer article — lien retour blog + share */
.article-footer {
  border-top: 1px solid var(--line);
  padding-top: 32px; margin-top: 48px;
}
.article-footer a { font-size: 13px; }

/* ===========================================================================
   Blog index — liste des articles
   =========================================================================== */
.blog-list {
  max-width: 920px; margin: 48px auto 96px;
  padding: 0 var(--gutter);
}
.blog-card {
  display: block;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity .15s;
}
.blog-card:hover { opacity: .7; }
.blog-card-category {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--crimson);
  font-weight: 600; margin-bottom: 8px;
}
.blog-card h2 {
  font-size: 28px; margin: 0 0 12px;
  letter-spacing: -.005em;
}
.blog-card-excerpt {
  font-size: 16px; line-height: 1.6;
  color: var(--muted); margin: 0 0 12px;
}
.blog-card-meta {
  font-size: 12px; color: var(--muted);
  letter-spacing: .3px;
}
