/* ============================================================
   Cliff — blog cliff.watch/blog · s'appuie sur style.css
   ============================================================ */

/* ---------- index du blog ---------- */
.blog-head {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px min(6vw, 64px) 10px;
}
.blog-head h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 14px; }
.blog-head .lede { margin-bottom: 10px; }

.post-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px min(6vw, 64px) 90px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.post-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 26px 22px;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.post-card:hover { transform: translateY(-2px); border-color: rgba(255, 209, 102, 0.4); }
.post-card h2 { font-size: 1.35rem; font-weight: 700; margin: 6px 0 8px; color: var(--text); }
.post-card p { color: var(--muted); font-size: 0.97rem; }
.post-meta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--butter);
}
.post-cta { color: var(--coral); font-weight: 800; font-size: 0.92rem; margin-top: 12px; display: inline-block; }

/* ---------- page article ---------- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 34px min(6vw, 64px) 80px;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--butter); }
.article h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; }
.article .post-meta { display: block; margin-bottom: 26px; }
.article h2 { font-size: 1.5rem; font-weight: 700; margin: 38px 0 12px; }
.article h3 { font-size: 1.15rem; font-weight: 700; margin: 26px 0 8px; }
.article p { margin-bottom: 16px; color: #EDE0D6; }
.article ul, .article ol { margin: 0 0 16px 22px; color: #EDE0D6; }
.article li { margin-bottom: 8px; }
.article a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.article a:hover { color: var(--butter); }
.article strong { color: var(--text); }
.article .lead { font-size: 1.12rem; color: var(--muted); }

/* Tableau comparatif : scroll horizontal contenu */
.table-wrap { overflow-x: auto; margin: 0 0 18px; border-radius: 14px; border: 1px solid var(--line); }
.article table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 0.92rem; }
.article th, .article td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--line); color: #EDE0D6; }
.article th { font-family: var(--font-display); color: var(--butter); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.article tr:last-child td { border-bottom: none; }

/* Encadré verdict / astuce */
.callout {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--butter);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 0 0 18px;
}
.callout p:last-child { margin-bottom: 0; }

/* CTA Cliff dans l'article */
.app-cta {
  background: var(--butter);
  color: #2A1208;
  border-radius: 22px;
  padding: 28px 26px;
  margin: 34px 0;
  box-shadow: 0 5px 0 var(--butter-deep);
}
.app-cta h2, .app-cta h3 { color: #2A1208; margin: 0 0 8px; }
.app-cta p { color: #4A2A14; font-weight: 600; margin-bottom: 16px; }
.app-cta .btn-dark { margin-bottom: 0; }

/* Navigation bas d'article */
.article-footer-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 min(6vw, 64px) 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
