/* ============================================================
   WAKASTART — Styles du blog (complement de site.css)
   ============================================================ */

.blog-main { padding-top: 150px; }

/* ── HERO ── */
.blog-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.blog-hero__crumb {
  font-family: var(--fb);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(209, 189, 161, 0.85);
  margin-bottom: 22px;
}
.blog-hero__crumb a { color: rgba(209, 189, 161, 0.85); }
.blog-hero__crumb a:hover { color: var(--gold-light); }
.blog-hero__crumb span { color: rgba(255, 255, 255, 0.45); }
.blog-hero h1 {
  font-family: var(--fd);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.blog-hero__lead {
  margin-top: 20px;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.75;
  color: var(--w70);
}
.blog-hero__line {
  margin-top: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(209, 189, 161, 0.55), transparent);
}

/* ── ILLUSTRATION DU HERO ── */
.blog-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.blog-hero__art {
  position: relative;
  border: 0;
  background: none;
}
.blog-hero__art img {
  display: block;
  width: 100%;
  height: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000 55%, transparent 100%);
  mask-image: radial-gradient(70% 70% at 50% 50%, #000 55%, transparent 100%);
}
@media (max-width: 900px) {
  .blog-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-hero__art { order: -1; }
}


/* ── FILTRES ── */
.blog-filters {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-chip {
  font-family: var(--fb);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(209, 189, 161, 0.22);
  background: rgba(209, 189, 161, 0.06);
  color: rgba(255, 255, 255, 0.78);
  transition: all 0.3s var(--ease-out);
}
.blog-chip:hover { border-color: rgba(209, 189, 161, 0.5); color: #fff; }
.blog-chip.is-active {
  background: rgba(209, 189, 161, 0.16);
  border-color: rgba(209, 189, 161, 0.6);
  color: var(--gold-light);
}

/* ── GRILLE ── */
.blog-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.4s var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 189, 161, 0.45);
  background: linear-gradient(180deg, rgba(209, 189, 161, 0.08), rgba(255, 255, 255, 0.02));
}
.blog-card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(209, 189, 161, 0.9);
  margin-bottom: 14px;
}
.blog-card__meta .dot { color: rgba(255, 255, 255, 0.25); }
.blog-card__meta time { color: rgba(255, 255, 255, 0.45); }
.blog-card h2,
.blog-card h3 {
  font-family: var(--fd);
  font-weight: 800;
  font-style: normal;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.blog-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--w70);
  flex: 1;
}
.blog-card__more {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-empty {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 120px;
  color: var(--w70);
}

/* ── ARTICLE ── */
.article-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 40px;
}
.article-wrap > * {
  max-width: 820px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.article-cover {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(209, 189, 161, 0.9);
  margin-bottom: 26px;
}
.article-meta .sep { color: rgba(255, 255, 255, 0.25); }
.article-meta time,
.article-meta .author { color: rgba(255, 255, 255, 0.5); }

.article-body > * { text-align: left; margin-left: 0; }
.article-body { font-size: 16.5px; line-height: 1.85; color: rgba(255, 255, 255, 0.82); }
.article-body h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 52px 0 18px;
}
.article-body h3 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 19px;
  color: var(--gold-light);
  margin: 32px 0 12px;
}
.article-body p { margin-bottom: 20px; }
.article-body ul,
.article-body ol { margin: 0 0 24px; padding-left: 1.2em; list-style-position: outside; }
.article-body ul { list-style-type: disc; }
.article-body ol { list-style-type: decimal; }
.article-body li { padding-left: 2px; margin-bottom: 10px; }
.article-body ul li::marker { color: var(--gold); font-size: 1.1em; }
.article-body ol li::marker { color: var(--gold); font-weight: 700; }
.article-body strong { color: #fff; font-weight: 600; }
.article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  border-left: 2px solid rgba(209, 189, 161, 0.6);
  padding: 6px 0 6px 20px;
  margin: 28px 0;
  color: var(--gold-light);
  font-style: italic;
}
.article-body img { border-radius: 14px; margin: 26px 0; }
.article-body code {
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 14px;
}

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; }
.article-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(209, 189, 161, 0.25);
  background: rgba(209, 189, 161, 0.08);
  color: var(--gold-light);
}

.article-cta {
  max-width: 820px;
  margin: 60px auto 0;
  padding: 34px;
  border-radius: 20px;
  border: 1px solid rgba(209, 189, 161, 0.28);
  background: linear-gradient(135deg, rgba(209, 189, 161, 0.12), rgba(255, 255, 255, 0.02));
}
.article-cta h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 25px;
  margin-bottom: 12px;
}
.article-cta p { color: var(--w70); font-size: 15px; line-height: 1.7; }
.article-cta a.btn {
  display: inline-block;
  margin-top: 22px;
  padding: 13px 26px;
  border-radius: 12px;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.related { max-width: 1280px; margin: 90px auto 0; padding: 0 40px 110px; }
.related h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 26px;
}
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .blog-grid,
  .related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-main { padding-top: 120px; }
  .blog-hero,
  .blog-filters,
  .blog-grid,
  .article-wrap,
  .related { padding-left: 20px; padding-right: 20px; }
  .blog-grid,
  .related__grid { grid-template-columns: 1fr; }
}
