/* ================================================
   ARTICLE BLOG — La Bulle Zen de Caroline
   ================================================ */

.article-back { padding: 20px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
.article-back a { font-size: 0.85rem; color: var(--terra-dark); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.article-back a:hover { text-decoration: underline; text-underline-offset: 3px; }

.article-hero { background: var(--bg); padding: 56px 0 48px; border-bottom: 1px solid var(--border); text-align: center; }
.article-hero__meta { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.article-hero__cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--terra); color: var(--white); padding: 5px 14px; border-radius: 50px; }
.article-hero__time { font-size: 0.85rem; color: var(--brown-mid); }
.article-hero__date { font-size: 0.85rem; color: var(--brown-mid); }
.article-hero__title { font-family: var(--serif); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--brown); line-height: 1.22; max-width: 800px; margin: 0 auto 20px; }
.article-hero__intro { font-size: 1.05rem; color: var(--brown-mid); line-height: 1.8; max-width: 680px; margin: 0 auto 28px; }
.article-hero__author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.article-hero__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--border); }
.article-hero__author-name { font-size: 0.9rem; font-weight: 700; color: var(--brown); display: block; }
.article-hero__author-role { font-size: 0.82rem; color: var(--brown-mid); }

.article-content { padding: 56px 0 80px; background: var(--white); }
.article-body { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.article-body h2 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--brown); margin: 48px 0 14px; line-height: 1.3; padding-top: 8px; border-top: 1px solid var(--border); text-align: center; }
.article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.article-body h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--terra-dark); margin: 28px 0 10px; text-align: center; }
.article-body p { font-size: 0.97rem; color: var(--brown-mid); line-height: 1.88; margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 6px 0 20px 22px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 0.97rem; color: var(--brown-mid); line-height: 1.75; margin-bottom: 8px; }
.article-body strong { color: var(--brown); }

.article-encart { background: var(--bg); border-left: 4px solid var(--terra); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 32px 0; }
.article-encart p { margin-bottom: 0; font-style: italic; color: var(--brown); }

.article-exercice { background: #FBF3EE; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 32px; margin: 36px 0; }
.article-exercice__title { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 14px; }
.article-exercice ol { margin-left: 20px; }

.article-cta { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 36px; text-align: center; margin-top: 56px; }
.article-cta__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--brown); margin-bottom: 12px; }
.article-cta__text { font-size: 0.95rem; color: var(--brown-mid); margin-bottom: 24px; line-height: 1.7; max-width: 500px; margin-left: auto; margin-right: auto; }

.article-lire-aussi { margin-top: 56px; }
.article-lire-aussi__title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--terra-dark);
  margin-bottom: 16px; font-family: var(--sans);
}
.article-lire-aussi__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.article-lire-aussi__card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 22px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  text-decoration: none; transition: all var(--ease);
}
.article-lire-aussi__card:hover {
  border-color: var(--terra); transform: translateY(-2px); box-shadow: var(--shadow);
}
.article-lire-aussi__tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--terra);
}
.article-lire-aussi__text {
  font-family: var(--serif); font-size: 0.93rem;
  font-weight: 600; color: var(--brown); line-height: 1.35;
}

@media (max-width: 640px) {
  .article-exercice { padding: 20px; }
  .article-cta { padding: 28px 20px; }
  .article-lire-aussi__grid { grid-template-columns: 1fr; }
}
