/* Blog Anne-Laure Charton — charte du site (Playfair Display + Montserrat, violet/beige/or) */
:root {
  --beige: #F1ECF5;
  --beige2: #E7DEF1;
  --peach: #9B77C2;
  --peach2: #7B4FA8;
  --green: #2E2440;
  --green2: #1E1730;
  --gold: #C9A24B;
  --white: #FFFFFF;
  --text: #241C33;
}

* { box-sizing: border-box; }
body.al-blog {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---------- en-tête ---------- */
.al-header {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1rem 2rem; background: var(--white);
  border-bottom: 1px solid rgba(36, 28, 51, .08);
  position: sticky; top: 0; z-index: 20;
}
.al-brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--text); }
.al-brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.al-brand strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 1.02rem; font-weight: 600; }
.al-brand span { display: block; font-size: .72rem; color: var(--peach2); letter-spacing: .02em; }
.al-nav { display: flex; align-items: center; gap: 1.4rem; }
.al-nav a { font-size: .84rem; color: var(--text); text-decoration: none; transition: color .2s; }
.al-nav a:hover, .al-nav a.active { color: var(--peach2); }
.al-cta {
  padding: .65rem 1.35rem; background: var(--peach2); color: var(--white) !important;
  border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  text-decoration: none; white-space: nowrap; transition: background .2s;
}
.al-cta:hover { background: var(--green); }
@media (max-width: 860px) {
  .al-header { flex-wrap: wrap; padding: .9rem 1.2rem; }
  .al-nav { order: 3; width: 100%; gap: 1rem; overflow-x: auto; padding-bottom: .2rem; }
}

/* ---------- bandeau ---------- */
.al-hero { background: var(--beige); padding: 4.5rem 2rem 3.5rem; text-align: center; }
.al-hero .kicker {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--peach2); margin: 0 0 1rem; font-weight: 600;
}
.al-hero h1 {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 400;
  font-size: clamp(1.85rem, 4vw, 2.9rem); line-height: 1.25;
  color: var(--green); max-width: 760px; margin: 0 auto 1.1rem;
}
.al-hero p { color: #5A5068; max-width: 620px; margin: 0 auto; font-size: .98rem; }
.al-hero .meta { font-size: .8rem; color: #7A7089; letter-spacing: .04em; margin-top: 1.2rem; }

/* ---------- grille d'articles ---------- */
.blog-wrap { max-width: 1100px; margin: 3.5rem auto 4.5rem; padding: 0 2rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 940px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid rgba(36, 28, 51, .09);
  border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(46, 36, 64, .13); border-color: rgba(123, 79, 168, .3); }
.blog-card-img { aspect-ratio: 3 / 2; background: var(--beige2); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 1.4rem 1.5rem 1rem; flex: 1; }
.blog-card-tag {
  display: inline-block; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--peach2); font-weight: 600; margin-bottom: .6rem;
}
.blog-card-body h3 {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 500;
  font-size: 1.16rem; line-height: 1.35; color: var(--green); margin: 0 0 .6rem;
}
.blog-card-body p { font-size: .88rem; color: #5A5068; margin: 0; }
.blog-card-footer {
  padding: .9rem 1.5rem 1.3rem; font-size: .78rem; font-weight: 600;
  color: var(--peach2); letter-spacing: .03em;
}
.blog-card-footer span::after { content: " →"; }

.blog-empty { text-align: center; color: #7A7089; padding: 3rem 0; }

/* ---------- article ---------- */
.article-body { max-width: 720px; margin: 3.5rem auto; padding: 0 2rem; }
.article-content { font-size: 1.045rem; line-height: 1.85; color: #2F2740; }
.article-content h2 {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 500;
  font-size: 1.5rem; line-height: 1.35; color: var(--green);
  margin: 2.6rem 0 .9rem;
}
.article-content h3 {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 500;
  font-size: 1.15rem; color: var(--green); margin: 2rem 0 .6rem;
}
.article-content p { margin: 0 0 1.15rem; }
.article-content ul, .article-content ol { margin: 0 0 1.3rem; padding-left: 1.3rem; }
.article-content li { margin-bottom: .5rem; }
.article-content a { color: var(--peach2); text-decoration: underline; text-underline-offset: 2px; }
.article-content strong { color: var(--green); }
.article-content blockquote {
  margin: 1.8rem 0; padding: 1.1rem 1.4rem; background: var(--beige);
  border-left: 3px solid var(--peach2); border-radius: 0 8px 8px 0;
  font-style: italic; color: #4A4059;
}

.article-author {
  margin-top: 3.5rem; padding-top: 2.4rem;
  border-top: 1px solid rgba(36, 28, 51, .12);
}
.article-author .who {
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin: 0 0 .7rem;
}
.article-author p { font-size: .92rem; color: #5A5068; line-height: 1.65; margin: 0; }
.article-author .al-cta { display: inline-block; margin-top: 1.3rem; }
.article-back { margin-top: 2rem; }
.article-back a { font-size: .82rem; color: var(--peach2); text-decoration: none; }

/* ---------- pied de page ---------- */
.al-footer {
  background: #241C33; color: #C9BFD6; text-align: center;
  padding: 2.5rem 1.5rem; font-size: .85rem; line-height: 1.7;
}
.al-footer .name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; color: var(--beige); margin-bottom: .4rem; }
.al-footer .legal { opacity: .65; margin-top: .8rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.al-footer a { color: #C9BFD6; text-decoration: none; }
.al-footer .links { margin-top: 1.1rem; }
.al-footer .sep { opacity: .4; }
