/* ═══════════════════════════════════════════════════════════════
   WEBSAIT — blog-categorie.css
   CSS spécifique aux pages de catégorie du blog
   (/blog/linkedin, /blog/multipotentialite, /blog/communication, /blog/audit)
   Charger après global.css :
   <link rel="stylesheet" href="/assets/css/global.css">
   <link rel="stylesheet" href="/assets/css/navbar.css">
   <link rel="stylesheet" href="/assets/css/footer.css">
   <link rel="stylesheet" href="/assets/css/blog-categorie.css">
   ═══════════════════════════════════════════════════════════════ */

/* ── BASE ── */
body { padding-top: 68px; font-weight: 300; }

/* ── HERO CATÉGORIE — override minimal ── */
.hero {
  min-height: 78vh;
  background: var(--cream-light);
  padding-top: 68px;
}

/* Breadcrumb dans le hero (spécifique catégorie) */
.hero-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--muted-light);
  letter-spacing: 0.04em; margin-bottom: 1.8rem;
}
.hero-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.hero-breadcrumb a:hover { color: var(--orange); }
.hero-breadcrumb .sep { opacity: 0.4; }

/* Badges stats flottants */
.hero-stat-badge {
  position: absolute;
  background: var(--dark); color: #fff;
  padding: 0.9rem 1.3rem; border-radius: 8px; z-index: 10;
}
.hero-stat-badge .snum {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 300; color: var(--orange-bg); line-height: 1; display: block;
}
.hero-stat-badge .slbl {
  font-size: 0.68rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em; margin-top: 0.15rem;
}
.badge-1 { bottom: 3rem; left: 0.5rem; }
.badge-2 { top: 3.5rem; right: 1rem; }

/* ── BARRE FILTRES ── */
.filter-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(2rem, 5vw, 5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 56px;
  position: sticky; top: 68px; z-index: 100;
}
.filter-tags {
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap; padding: 0.75rem 0;
}
.filter-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-right: 0.2rem;
}
.filter-btn {
  background: none; border: 1px solid var(--border); border-radius: 100px;
  padding: 0.28rem 0.95rem; font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 400; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange); border-color: var(--orange); color: #fff;
}
.article-count {
  font-size: 0.78rem; font-weight: 300;
  color: var(--muted-light); white-space: nowrap; flex-shrink: 0;
}

/* ── SKELETONS ── */
@keyframes shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position:  800px 0; }
}
.article-featured-skeleton {
  height: 280px; border-radius: 10px; margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--cream) 25%, var(--cream-light) 50%, var(--cream) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border: 1px solid var(--border);
}
.art-skeleton {
  height: 160px; border-radius: 8px;
  background: linear-gradient(90deg, var(--cream) 25%, var(--cream-light) 50%, var(--cream) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border: 1px solid var(--border);
}

/* ── MASONRY SECTION ── */
.masonry-section {
  max-width: 1200px; margin: 0 auto;
  padding: 3.5rem clamp(2rem, 5vw, 5rem) 5rem;
}

/* ── ARTICLE ÉPINGLÉ ── */
.article-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; margin-bottom: 2rem;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
  position: relative;
}
.article-featured::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px; background: var(--orange);
}
.article-featured:hover {
  border-color: var(--orange-pale);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(60,45,30,0.1);
}
.art-feat-visual {
  background: var(--cream-light); min-height: 260px;
  position: relative; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
  border-right: 1px solid var(--border);
}
.art-feat-visual .feat-svg-wrap { position: relative; width: 200px; height: 200px; z-index: 1; }
.art-feat-visual .feat-svg-wrap svg { width: 100%; height: 100%; }
.art-feat-visual::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--orange-pale); opacity: 0.35; z-index: 0;
}
.art-feat-body {
  padding: 2.5rem; display: flex;
  flex-direction: column; justify-content: space-between;
}
.art-epingle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.63rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem;
}
.art-feat-cat {
  font-size: 0.63rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; display: block;
}
.art-feat-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300; line-height: 1.2;
  color: var(--dark); margin-bottom: 1rem; letter-spacing: -0.01em;
}
.art-feat-excerpt {
  font-size: 0.88rem; font-weight: 300;
  color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem;
}
.art-feat-footer { display: flex; align-items: center; justify-content: space-between; }
.art-feat-meta {
  font-size: 0.72rem; color: var(--muted-light);
  display: flex; align-items: center; gap: 0.45rem;
}
.art-feat-meta .dot {
  width: 2px; height: 2px; border-radius: 50%;
  background: var(--muted-light); display: inline-block;
}
.art-read {
  font-size: 0.8rem; font-weight: 500; color: var(--orange);
  display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s;
}
.article-featured:hover .art-read { gap: 0.7rem; }

/* ── MASONRY GRID ── */
.masonry-grid { column-count: 3; column-gap: 1.2rem; }
.masonry-item { break-inside: avoid; margin-bottom: 1.2rem; }

/* ── CARD ARTICLE ── */
.art-card {
  display: block; text-decoration: none;
  background: var(--cream-light); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.8rem;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.art-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.art-card:hover {
  border-color: var(--orange-pale);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(60,45,30,0.08);
}
.art-card:hover::before { transform: scaleX(1); }
.art-card.cream { background: var(--cream); }
.art-card.upcoming { opacity: 0.6; pointer-events: none; cursor: default; }
.art-tag {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(200,88,26,0.2); border-radius: 2px;
  padding: 0.2rem 0.6rem; display: inline-block; margin-bottom: 0.8rem;
}
.art-tag-soon {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted-light);
  border: 1px solid var(--border); border-radius: 2px;
  padding: 0.2rem 0.6rem; display: inline-block; margin-bottom: 0.8rem;
}
.art-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300; line-height: 1.25;
  color: var(--dark); margin-bottom: 0.7rem; letter-spacing: -0.01em;
}
.art-title em { font-style: italic; color: var(--orange); }
.art-excerpt {
  font-size: 0.83rem; font-weight: 300;
  color: var(--muted); line-height: 1.7; margin-bottom: 1.3rem;
}
.art-meta {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--muted-light);
}
.art-meta .dot {
  width: 2px; height: 2px; border-radius: 50%;
  background: var(--muted-light); display: inline-block;
}

/* ── PAGINATION ── */
.pagination {
  display: flex; justify-content: center;
  gap: 0.5rem; margin-top: 3.5rem; flex-wrap: wrap;
}
.page-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border); background: none;
  border-radius: 4px; font-family: var(--font-body);
  font-size: 0.82rem; color: var(--muted); cursor: pointer;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.page-btn:hover { border-color: var(--orange); color: var(--orange); }
.page-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── PROMO BAND ── */
.promo-band {
  background: var(--orange-pale);
  border-top: 1px solid rgba(200,88,26,0.15);
  border-bottom: 1px solid rgba(200,88,26,0.15);
  padding: 2.5rem clamp(2rem, 5vw, 5rem);
}
.promo-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.promo-eyebrow {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.4rem;
}
.promo-h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 300; color: var(--dark); letter-spacing: -0.01em; line-height: 1.2;
}
.promo-h3 em { font-style: italic; color: var(--orange); }
.promo-sub { font-size: 0.85rem; font-weight: 300; color: var(--muted); margin-top: 0.3rem; }
.btn-promo {
  background: var(--orange); color: #fff;
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.06em;
  padding: 0.9rem 2rem; border-radius: 3px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s;
}
.btn-promo:hover { background: var(--orange-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) { .masonry-grid { column-count: 2; } }
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 4rem 2rem; }
  .filter-bar { padding: 0 2rem; }
  .masonry-section { padding: 2.5rem 2rem 4rem; }
  .article-featured { grid-template-columns: 1fr; }
  .art-feat-visual { min-height: 160px; }
  .promo-band { padding: 2rem; }
}
@media (max-width: 700px) { .masonry-grid { column-count: 1; } }
@media (max-width: 640px) { .promo-inner { flex-direction: column; } }
