/* Blog Yes Conciergerie — styles dédiés
   Aligné sur la palette terracotta/cream du site. */

.container--narrow { max-width: 760px; margin: 0 auto; }

.breadcrumb {
  font-size: 13px;
  color: var(--ink-mute);
  padding: 28px 24px 0;
  letter-spacing: .02em;
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.breadcrumb a:hover { border-bottom-color: var(--terracotta); }
.breadcrumb span[aria-hidden] { margin: 0 .4em; color: var(--ink-mute); }

/* ===== Page article ===== */
.post {
  padding: 32px 0 24px;
}
.post__head {
  padding: 24px 0 32px;
  text-align: center;
}
.post__head .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.post__title {
  font-family: 'Didact Gothic', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 18px;
}
.post__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 auto 22px;
  max-width: 680px;
}
.post__meta {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.post__meta .post__sep { margin: 0 .6em; opacity: .6; }

.post__hero {
  margin: 0 0 32px;
  padding: 0 24px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.post__hero img {
  width: 100%;
  height: clamp(220px, 42vw, 460px);
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.post__body {
  padding: 8px 24px 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.post__body h2 {
  font-family: 'Didact Gothic', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  margin: 40px 0 14px;
  letter-spacing: -.005em;
}
.post__body h2:first-of-type { margin-top: 18px; }
.post__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 24px 0 10px;
  color: var(--ink);
}
.post__body p { margin: 0 0 16px; }
.post__body a:not(.btn) {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.post__body a:not(.btn):hover { color: var(--terracotta-dark); }

.kpi-card {
  background: var(--cream);
  border-left: 3px solid var(--terracotta);
  padding: 22px 26px;
  margin: 30px 0;
  border-radius: 4px;
}
.kpi-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}
.kpi-card p { margin: 0; color: var(--ink-soft); font-size: 16px; }

.post__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 36px 0 8px;
  padding: 24px 26px;
  background: var(--cream-warm);
  border-radius: 12px;
}
.post__cta .btn { white-space: nowrap; }

/* ===== Related ===== */
.related {
  background: var(--cream);
  padding: 56px 0;
  margin-top: 56px;
}
.related .display {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 28px;
  text-align: center;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.related-card {
  display: block;
  background: var(--white);
  padding: 24px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta-soft);
  box-shadow: 0 16px 36px -22px rgba(40,30,20,.25);
}
.related-card__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.related-card h3 {
  font-family: 'Didact Gothic', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
}

.blog-back {
  padding: 32px 0 48px;
  text-align: center;
}

/* ===== Hub ===== */
.blog-hero {
  padding: 64px 24px 32px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.blog-hero .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.blog-hero .display { margin: 0 0 18px; }
.blog-hero .lead { margin: 0 auto; max-width: 640px; }

.blog-section {
  padding: 56px 0;
}
.blog-section:nth-of-type(odd) { background: var(--cream); }
.blog-section .section-head { text-align: left; margin-bottom: 32px; }
.blog-section .section-head .display {
  font-size: clamp(26px, 3vw, 36px);
  margin: 8px 0 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(40, 36, 25, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--terracotta-soft);
  box-shadow: 0 22px 48px -28px rgba(40, 30, 20, .35);
}
.blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.04); }
.blog-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card__body .eyebrow { font-size: 11px; }
.blog-card__body h3 {
  font-family: 'Didact Gothic', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}
.blog-card__body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.blog-card__body .link-arrow { margin-top: 6px; font-size: 14px; }

@media (max-width: 720px) {
  .post__body { font-size: 16px; }
  .post__cta { flex-direction: column; align-items: flex-start; }
  .blog-section .section-head { padding: 0; }
}

/* ===== FAQ par article ===== */
.post-faq {
  background: var(--white);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(40,36,25,0.06);
}
.post-faq .display {
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 0 0 24px;
}
.faq-item {
  background: var(--cream);
  border-radius: 10px;
  padding: 0;
  margin: 0 0 12px;
  overflow: hidden;
  border: 1px solid rgba(40,36,25,0.06);
}
.faq-item summary {
  list-style: none;
  padding: 16px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--terracotta);
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: var(--ink);
}
.faq-item p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}
