/* ============================================
   VERMEIL — Page article journal
   ============================================ */

/* ----- Navigation retour ----- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 28px 0;
}
.back-link:hover {
  color: var(--gold);
}

/* ----- Hero article ----- */
.article-hero {
  padding: clamp(50px, 7vw, 100px) 0 clamp(40px, 5vw, 64px);
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}
.article-category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.article-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 74px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 auto 30px;
  color: var(--text);
}
.article-title em {
  font-style: italic;
  background: linear-gradient(
    180deg,
    var(--gold-bright) 0%,
    var(--gold-soft) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.article-meta-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-faded);
}
.article-meta-dot {
  color: var(--gold-soft);
  opacity: 0.7;
}

/* ----- Image d'ouverture ----- */
.article-cover {
  aspect-ratio: 16/8;
  background: var(--bg-card);
  overflow: hidden;
  margin-bottom: 0;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----- Corps de l'article ----- */
.article-body {
  padding: clamp(48px, 6vw, 80px) 0;
}
.article-body-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}
.article-body p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 26px;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin: 52px 0 20px;
}
.article-body h2 em {
  font-style: italic;
  color: var(--gold-bright);
}
.article-body h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 400;
  color: var(--text);
  margin: 36px 0 14px;
}
.article-body strong {
  color: var(--text);
  font-weight: 500;
}
.article-body blockquote {
  margin: 44px 0;
  padding: 6px 0 6px 28px;
  border-left: 2px solid var(--gold);
}
.article-body blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.45;
  color: var(--text);
  margin: 0;
}
.article-body ul,
.article-body ol {
  margin-bottom: 26px;
}
.article-body li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  padding: 5px 0 5px 20px;
  position: relative;
}
.article-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
}
.article-body ol {
  counter-reset: ol-counter;
}
.article-body ol li {
  counter-increment: ol-counter;
}
.article-body ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
}

/* Image dans le corps */
.article-body .inline-image {
  margin: 44px -28px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
}
.article-body .inline-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-body .caption {
  font-size: 12px;
  color: var(--text-faded);
  letter-spacing: 0.05em;
  margin-top: 12px;
  text-align: center;
}

/* Séparateur décoratif */
.article-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 52px 0;
  color: var(--gold-soft);
  font-size: 12px;
  opacity: 0.6;
}

/* ----- Signature auteure ----- */
.article-author {
  border-top: 1px solid var(--border-soft);
  padding-top: 48px;
  margin-top: 60px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-portrait {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-card);
  flex-shrink: 0;
  overflow: hidden;
}
.author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 6px;
}
.author-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.author-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----- Articles liés ----- */
.related-articles {
  background: var(--bg-deeper);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border-soft);
}
.related-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.related-card {
  cursor: pointer;
  transition: transform 0.3s;
}
.related-card:hover {
  transform: translateY(-4px);
}
.related-image {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: 4px;
  margin-bottom: 18px;
  overflow: hidden;
}
.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-tags {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.related-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

/* ----- Responsive ----- */
@media (max-width: 980px) {
  .article-body .inline-image {
    margin: 44px 0;
  }
}
@media (max-width: 640px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .article-author {
    flex-direction: column;
    gap: 16px;
  }
  .article-body-inner {
    padding: 0 20px;
  }
}
