/*----------------- ENTREE - CHEMIN DE NAVIGATION ------------*/

.chemin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px;
  border-bottom: 1px solid #1a1a1a;
  font-family: monospace;
  font-size: 11px;
}

.chemin-liens {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chemin-lien {
  color: #1a1a1a;
  text-decoration: none;
}

/*----------------- ENTREE - WRAPPER ------------*/

.article-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  color: #1a1a1a;
}
/*----------------- ENTREE - EN-TÊTE ARTICLE ------------*/

.article-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 60px 0;
}

.article-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.article-meta-ligne {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-pavillon {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.article-titre {
  font-size: 60px;
  font-weight: 900;
  max-width: 600px;
}

.article-desc {
  font-size: 16px;
  color: #555;
}

.article-auteur {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.auteur-identite {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auteur-avatar {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
}

/*----------------- ENTREE - IMAGE DE COUVERTURE ------------*/

.article-couverture {
  margin: 0;
}

.article-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background: #efead9;
  font-family: monospace;
  font-size: 12px;
}

.article-image {
  display: block;
  width: 100%;
  height: auto;
}

.article-legende {
  margin-top: 8px;
  font-size: 11px;
  color: #888;
  text-align: center;
}

/*----------------- ENTREE - CORPS DE L'ARTICLE ------------*/

.article-corps {
  display: flex;
  gap: 60px;
  padding: 40px 0;
}

.article-texte {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
}

.article-texte p {
  font-size: 16px;
}

.article-section-titre {
  font-size: 24px;
}

.article-texte code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: var(--ink-06);
  padding: 1px 5px;
}

.article-liste {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
}

.article-texte a {
  color: inherit;
  text-decoration: none;
  box-shadow: inset 0 -6px 0 var(--graphiva-yellow);
}

.article-wrapper .meta-data {
  color: #888;
  font-family: monospace;
}

.article-wrapper .article-desc {
  color: #555;
}

.article-wrapper .article-texte p {
  color: #1a1a1a;
}

/*----------------- ENTREE - SOMMAIRE (colonne gauche) ------------*/

.article-sommaire {
  flex: 0 0 140px;
  font-family: monospace;
  font-size: 13px;
  border-top: 1px solid #1a1a1a;
  padding-top: 12px;
}

.article-sommaire ol {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
}

/*----------------- ENTREE - LETTRINE ------------*/

.lettrine {
  float: left;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
  margin-right: 6px;
  margin-top: 6px;
}

/*----------------- ENTREE - PIED DE PAGE ------------*/

.footer-leger {
  padding: 36px var(--pad);
  border-top: var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-60);
}

.footer-pavillons {
  display: flex;
  gap: 4px;
}
