/* ════════════════════════════════════════════
   Beauvoir Clinic — Article de blog
   ════════════════════════════════════════════ */

.article-hero {
  background: linear-gradient(135deg, #F5F0E8 0%, #FAF8F4 60%, #F5F0E8 100%);
  padding: 96px 24px 48px;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(165, 136, 71, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.article-hero__container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.article-hero__category {
  display: inline-flex;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A58847;
  background: rgba(165, 136, 71, 0.08);
  border: 1px solid rgba(165, 136, 71, 0.2);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.article-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: #2C2C2C;
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.article-hero__meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: #757862;
  flex-wrap: wrap;
}

.article-hero__meta strong {
  color: #423B35;
  font-weight: 500;
}

.article-body {
  padding: 56px 24px 64px;
  background: #FFFFFF;
}

.article-body__container {
  max-width: 720px;
  margin: 0 auto;
}

.article-body__lead {
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  line-height: 1.75;
  color: #2C2C2C;
  font-weight: 400;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(165, 136, 71, 0.15);
}

.article-body h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: #2C2C2C;
  margin-top: 44px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.04rem;
  color: #2C2C2C;
  line-height: 1.85;
  margin-bottom: 18px;
}

.article-body strong {
  font-weight: 600;
  color: #2C2C2C;
}

.article-body a {
  color: #A58847;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: #AB7965;
}

/* ─── FAQ ─── */
.article-faq {
  margin-top: 56px;
  padding: 36px 0;
  border-top: 1px solid rgba(165, 136, 71, 0.15);
  border-bottom: 1px solid rgba(165, 136, 71, 0.15);
}

.article-faq h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

.article-faq__item {
  margin-bottom: 22px;
}

.article-faq__item:last-child {
  margin-bottom: 0;
}

.article-faq__item h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2C2C2C;
  margin-bottom: 8px;
}

.article-faq__item p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

/* ─── Conclusion ─── */
.article-conclusion {
  margin-top: 40px;
  padding: 24px 28px;
  background: #F5F0E8;
  border-left: 4px solid #A58847;
  border-radius: 0 12px 12px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #2C2C2C;
  line-height: 1.75;
  font-style: italic;
}

/* ─── CTA fin d'article ─── */
.article-cta {
  padding: 64px 24px;
  background: linear-gradient(135deg, #2C2C2C 0%, #423B35 100%);
  text-align: center;
}

.article-cta__container {
  max-width: 680px;
  margin: 0 auto;
  color: #F5F0E8;
}

.article-cta__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  color: #FFFFFF;
  margin-bottom: 14px;
}

.article-cta__text {
  font-family: 'Outfit', sans-serif;
  color: rgba(245, 240, 232, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.article-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  background: #A58847;
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.article-cta__btn:hover {
  background: #CDA875;
  transform: translateY(-1px);
}

/* ─── Traitements liés ─── */
.article-related {
  padding: 56px 24px;
  background: #F5F0E8;
}

.article-related__container {
  max-width: 1080px;
  margin: 0 auto;
}

.article-related__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2C2C2C;
  text-align: center;
  margin-bottom: 32px;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.article-related__card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(165, 136, 71, 0.15);
  color: #2C2C2C;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
}

.article-related__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(44, 44, 44, 0.08);
  border-color: #A58847;
  color: #A58847;
}

/* ─── Image hero (optionnel) ─── */
.article-image {
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  background: linear-gradient(135deg, #CDA875 0%, #A58847 100%);
  border-radius: 16px;
  overflow: hidden;
  display: block;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .article-hero { padding: 80px 20px 36px; }
  .article-body { padding: 40px 20px 48px; }
  .article-body__lead { font-size: 1.08rem; }
  .article-cta, .article-related { padding: 48px 20px; }
}

/* ── Image hero d'article ── */
.article-image {
  padding: 0 0 32px;
}
.article-image__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-image__container img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
@media (max-width: 768px) {
  .article-image__container img { border-radius: 8px; max-height: 320px; }
}
