/* ==========================================================
   post.css — Article individuel journal de bord
   Odyssey of AION
   ========================================================== */

.post-wrap {
  background: var(--aion-deep, #060f18);
  color: var(--aion-text, rgba(228,242,252,.90));
  min-height: 100dvh;
}

/* ── Hero ─────────────────────────────────────────────────── */
.post-hero {
  padding: 120px 22px 60px;
  max-width: 820px;
  margin: 0 auto;
}

.post-breadcrumb {
  font-size: 13px;
  color: rgba(228,242,252,.45);
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.post-breadcrumb a {
  color: rgba(228,242,252,.55);
  text-decoration: none;
  transition: color .15s;
}

.post-breadcrumb a:hover {
  color: var(--aion-glacier, #c8a872);
}

.post-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--aion-glacier, #c8a872);
  margin: 0 0 14px;
}

.post-h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 16px;
}

.post-date {
  font-size: 14px;
  color: rgba(228,242,252,.45);
  margin: 0;
  font-style: italic;
}

/* ── Corps de l'article ───────────────────────────────────── */
.post-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 22px 100px;
}

.post-content {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(228,242,252,.88);
}

.post-content p {
  margin: 0 0 1.6em;
}

.post-content h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 950;
  color: #fff;
  margin: 2.4em 0 .7em;
  letter-spacing: -.02em;
  border-left: 3px solid var(--aion-glacier, #c8a872);
  padding-left: 16px;
}

.post-content h3 {
  font-size: 19px;
  font-weight: 800;
  color: rgba(228,242,252,.95);
  margin: 2em 0 .6em;
}

.post-content ul, .post-content ol {
  padding-left: 1.4em;
  margin: 0 0 1.6em;
}

.post-content li {
  margin-bottom: .5em;
}

.post-content strong {
  color: rgba(255,255,255,.95);
  font-weight: 800;
}

.post-content em {
  color: rgba(228,242,252,.72);
  font-style: italic;
}

.post-content blockquote {
  border-left: 3px solid rgba(200,168,114,.5);
  margin: 2em 0;
  padding: 12px 20px;
  background: rgba(255,255,255,.03);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: rgba(228,242,252,.72);
}

.post-content hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 2.5em 0;
}

/* ── Footer article ──────────────────────────────────────── */
.post-footer {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.post-back {
  font-size: 14px;
  font-weight: 800;
  color: var(--aion-glacier, #c8a872);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .15s;
}

.post-back:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .post-hero  { padding: 100px 16px 40px; }
  .post-body  { padding: 0 16px 80px; }
  .post-content { font-size: 16.5px; }
}
