﻿/* Blog public - complement visuel des pages type FAQ/legal */
.blog-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.blog-intro h2 { margin-bottom: 6px; }
.blog-intro p {
  max-width: 620px;
  color: #6b6258;
}
.blog-count {
  flex-shrink: 0;
  padding: 8px 12px;
  border: 1.5px solid #f0ede8;
  border-radius: 999px;
  background: #fff;
  color: #888;
  font-size: 12px;
  font-weight: 700;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #ece8df;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(10,10,10,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(226,6,18,.22);
  box-shadow: 0 18px 42px rgba(10,10,10,.10);
}
.blog-card__media {
  position: relative;
  background: #f1ede6;
}
.blog-card__img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
}
.blog-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.blog-card__content {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__title {
  font-family: var(--font-display, Georgia, serif);
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
  color: #0a0a0a !important;
  margin: 0 0 12px !important;
}
.blog-card__excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0 0 auto;
  padding-bottom: 18px;
}
.blog-card__meta,
.article-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #888;
}
.blog-card__meta {
  padding-top: 15px;
  border-top: 1px solid #f0ede8;
  margin-bottom: 14px;
  font-size: 12px;
}
.blog-card__meta span,
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-card__meta i,
.article-meta i {
  color: #c8922a;
  font-size: 11px;
}
.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e20612;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.blog-card__cta i { transition: transform .18s ease; }
.blog-card:hover .blog-card__cta i { transform: translateX(3px); }
.blog-empty {
  background: #fff;
  border: 1.5px dashed #e8e1d8;
  border-radius: 14px;
  padding: 28px;
  color: #777;
  text-align: center;
}

.article-meta {
  font-size: 13px;
  margin: 12px 0 0;
}
.article-body {
  background: #fff;
  border: 1.5px solid #ece8df;
  border-radius: 16px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 10px 28px rgba(10,10,10,.04);
}
.article-after {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.article-chapo {
  font-size: 18px !important;
  line-height: 1.72 !important;
  color: #1a1a1a !important;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 26px !important;
  border-bottom: 1px solid #f0ede8;
}
.article-body > h2 {
  font-family: var(--font-display, Georgia, serif);
  font-size: 28px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f3eee7;
}
.article-body > h3 {
  font-family: var(--font-display, Georgia, serif);
  font-size: 22px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 34px 0 12px;
}
.article-body > h4 {
  font-size: 15px;
  font-weight: 800;
  color: #0a0a0a;
  margin: 22px 0 10px;
}
.article-body p {
  font-size: 15.5px;
  line-height: 1.82;
  color: #333;
  margin: 0 0 16px;
}
.article-body ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.article-body ol {
  padding-left: 22px;
  margin: 10px 0 22px;
}
.article-body li {
  font-size: 15px;
  color: #333;
  line-height: 1.65;
}
.article-body ul li {
  position: relative;
  padding-left: 22px;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e20612;
}
.article-body a {
  color: #e20612;
  font-weight: 800;
}
.checklist {
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  margin: 22px 0;
  font-size: 14px;
  line-height: 1.65;
}
.article-hero-img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 0 34px;
  display: block;
}
.article-inline-img {
  width: 100%;
  border-radius: 12px;
  margin: 22px 0 6px;
  display: block;
  max-height: 320px;
  object-fit: cover;
}
.article-img-caption {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin: 0 0 20px;
  font-style: italic;
}
.article-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}
.article-img-grid img {
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
  width: 100%;
  display: block;
}
.checklist {
  background: #f4fbf4;
  border: 1.5px solid #d7eed7;
  border-left: 4px solid #2e7d32;
}
.checklist h4 {
  font-size: 13px;
  font-weight: 800;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 12px;
}
.checklist ul { margin: 0; gap: 7px; }
.checklist ul li::before {
  width: 12px;
  height: 12px;
  border: 2px solid #2e7d32;
  background: transparent;
  border-radius: 3px;
  top: .45em;
}
.article-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.article-nav a {
  padding: 16px 18px;
  background: #faf8f5;
  border: 1.5px solid #ece8df;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  color: #0a0a0a;
  transition: border-color .18s ease, transform .18s ease;
}
.article-nav a:hover {
  border-color: #e20612;
  color: #e20612;
  transform: translateY(-2px);
}
.article-nav a span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  margin-top: 4px;
}
@media (max-width: 700px) {
  .blog-intro { display: block; }
  .blog-count { display: inline-flex; margin-top: 12px; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-body,
  .article-after { padding: 22px 18px; border-radius: 12px; }
  .article-img-grid { grid-template-columns: 1fr; }
}

.article-related,
.c-related--articles {
  background: #fff;
  border: 1.5px solid #ece8df;
  border-radius: 16px;
  padding: clamp(24px, 4vw, 34px);
  box-shadow: 0 10px 28px rgba(10,10,10,.04);
}

.article-related__head,
.c-related__head {
  margin-bottom: 20px;
}

.article-related__eyebrow,
.c-related__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c8922a;
}

.article-related__eyebrow::before,
.c-related__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.article-related h2,
.c-related h2 {
  margin: 0 0 8px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.12;
  color: #0a0a0a;
}

.article-related__head p:last-child,
.c-related__head p:last-child {
  margin: 0;
  max-width: 580px;
  color: #6b6258;
  font-size: 14.5px;
  line-height: 1.65;
}

.article-related .article-nav,
.c-related .c-related__items {
  margin-top: 0;
}

.article-related .article-nav a,
.c-related .c-related__item {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
  border: 1.5px solid #ece8df;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  color: #0a0a0a;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.article-related .article-nav a::after,
.c-related .c-related__item::after {
  content: "â†’";
  position: absolute;
  right: 18px;
  bottom: 15px;
  color: #e20612;
  font-weight: 900;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s ease, transform .18s ease;
}

.article-related .article-nav a:hover,
.c-related .c-related__item:hover {
  border-color: rgba(226,6,18,.35);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10,10,10,.07);
}

.article-related .article-nav a:hover::after,
.c-related .c-related__item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.article-related .article-nav a span,
.c-related .c-related__item span {
  display: block;
  width: fit-content;
  margin-top: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(200,146,42,.10);
  color: #9b6a0a;
  font-size: 11px;
  font-weight: 800;
}

