/* ============================================================
   SiteBug — blog.css
   Page Blog liste — styles spécifiques (v2 — Indigo / Lavande)
   ============================================================ */

/* ---- Topics strip ---- */
.topics-strip {
  background: #fff;
  border-bottom: 1px solid #DDE2F5;
  padding: 18px 0;
}
.topics-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.topics-strip__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #717198;
  white-space: nowrap;
  margin-right: 4px;
}
.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #F2F4FD;
  border: 1px solid #DDE2F5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #24244D;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.topic-pill:hover {
  background: #EEF0FF;
  border-color: rgba(22,38,176,.25);
  color: #1626B0;
}
.topic-pill i {
  font-size: 13px;
  color: #1626B0;
}

/* ---- Section articles ---- */
.blog-list-section {
  padding: 96px 0;
  background: #F2F4FD;
}

/* ---- Pagination ---- */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.blog-pagination .pagination {
  gap: 4px;
}
.blog-pagination .page-link {
  border-radius: 8px !important;
  border: 1px solid #DDE2F5;
  color: #24244D;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  transition: all .15s ease;
}
.blog-pagination .page-link:hover {
  background: #EEF0FF;
  border-color: rgba(22,38,176,.25);
  color: #1626B0;
}
.blog-pagination .page-item.active .page-link {
  background: #1626B0;
  border-color: #1626B0;
  color: #fff;
}
.blog-pagination .page-item.disabled .page-link {
  opacity: .4;
}

/* ---- Editorial section (E-E-A-T) ---- */
.editorial-section {
  padding: 96px 0;
  background: #fff;
}
.editorial-card {
  background: linear-gradient(150deg, #0D1040 0%, #1626B0 100%);
  border-radius: 20px;
  padding: 52px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.editorial-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119,149,238,.22), transparent 65%);
  pointer-events: none;
}
.editorial-card__kicker {
  display: inline-block;
  padding: 5px 13px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.editorial-card h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.editorial-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.editorial-card p strong { color: #fff; }
.editorial-card p:last-of-type { margin-bottom: 28px; }

/* Pilliers éditoriaux */
.editorial-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}
.editorial-pillar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
}
.editorial-pillar i {
  font-size: 17px;
  color: #7795EE;
  flex-shrink: 0;
  margin-top: 2px;
}
.editorial-pillar__text {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  line-height: 1.4;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991.98px) {
  .editorial-card {
    padding: 36px 28px;
  }
  .editorial-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .blog-list-section,
  .editorial-section { padding: 64px 0; }
  .topics-strip__label { display: none; }
  .editorial-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
  .editorial-pillars { grid-template-columns: 1fr; }
}
