/* ══════════════════════════════════════════════
   POLYLANGUES — BLOG.CSS
   ══════════════════════════════════════════════ */

/* ── BODY BG ── */
.page-blog { background: var(--off); }

/* ── BLOG HEADER ── */
.blog-header {
  padding: clamp(100px, 12vw, 160px) 0 clamp(40px, 5vw, 64px);
}
.bh-inner { max-width: 620px; }
.blog-title {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.blog-desc {
  font-size: 1.05rem;
  color: var(--gris);
  line-height: 1.7;
  max-width: 500px;
}

/* ── MAGAZINE LAYOUT ── */
.magazine-layout { padding-top: 0; }
.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.section-title {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

/* ── RECENT FEED ── */
.recent-feed { display: flex; flex-direction: column; gap: 0; }
.recent-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.recent-row:hover { opacity: .78; }
.recent-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recent-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
}
.meta-cat {
  font-weight: 700;
  color: var(--rouge);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.meta-time { color: var(--gris); }
.recent-title {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
}
.recent-excerpt {
  font-size: .88rem;
  color: var(--gris);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 100px;
}

/* Trending */
.trending-list { display: flex; flex-direction: column; gap: 0; }
.trend-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.trend-item:hover { opacity: .72; }
.trend-num {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--line);
  line-height: 1;
  min-width: 32px;
}
.trend-content { flex: 1; }
.trend-cat {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rouge);
  display: block;
  margin-bottom: 4px;
}
.trend-title {
  font-family: var(--fd);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

/* Topics */
.topics-widget { margin-top: 36px; }
.topics-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.topic-pill {
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  transition: all .2s;
}
.topic-pill:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ── CTA VEILLE ── */
.cta-veille {
  background: var(--ink);
  color: var(--white);
  padding: clamp(56px, 7vw, 88px) 0;
  text-align: center;
}
.cta-veille h2 {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.cta-veille p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.veille-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.veille-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.veille-input::placeholder { color: rgba(255,255,255,.4); }
.veille-input:focus { border-color: var(--rouge); }
.veille-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--rouge);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.veille-btn:hover { background: var(--rouge-s); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .magazine-grid {
    grid-template-columns: 1fr;
  }
  .sidebar { position: static; }
}
@media (max-width: 600px) {
  .recent-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .recent-img { aspect-ratio: 16/9; }
  .veille-form { flex-direction: column; }
}
