/* Feuille unique du blog. Reprend exactement la charte du site : mêmes
   couleurs (fond blanc, texte #2a241c, or #8f6f2e, filets #e4d9c3), mêmes
   polices (Playfair Display pour les titres, Cormorant Garamond pour le
   texte), même correction de hauteur des chiffres. Un visiteur qui passe
   d'une fiche produit à un article ne doit pas sentir de rupture. */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

/* Les chiffres de Cormorant montent à hauteur d'x : à côté d'un mot ils
   paraissent rabougris. On va les chercher dans Playfair, agrandis pour
   atteindre 95 % de la capitale. Identique au site. */
@font-face {
  font-family: 'ChiffresTexte';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  size-adjust: 113%;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebunDXbtM.woff2) format('woff2');
  unicode-range: U+0030-0039;
}
@font-face {
  font-family: 'ChiffresTitre';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  size-adjust: 127%;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebunDXbtM.woff2) format('woff2');
  unicode-range: U+0030-0039;
}

:root {
  --papier: #ffffff;
  --encre: #2a241c;
  --or: #8f6f2e;
  --filet: #e4d9c3;
  --obsidienne: #1f1b16;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--papier);
  color: var(--encre);
  font-family: 'ChiffresTexte', 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.blog-entete {
  border-bottom: 1px solid var(--filet);
  padding: 14px 24px;
}
.blog-entete a {
  font-family: 'ChiffresTitre', 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--encre);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.blog-entete a:hover { color: var(--or); }

.blog-corps {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.fil-ariane {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(42, 36, 28, 0.6);
  margin-bottom: 28px;
}
.fil-ariane a { color: var(--or); text-decoration: none; }
.fil-ariane a:hover { text-decoration: underline; }

h1 {
  font-family: 'ChiffresTitre', 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0 0 22px;
}
h2 {
  font-family: 'ChiffresTitre', 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 42px 0 14px;
}
h3 {
  font-family: 'ChiffresTitre', 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 30px 0 10px;
}

p { margin: 0 0 18px; }
a { color: var(--or); }

/* Les images ne doivent jamais déformer la page pendant leur chargement :
   ratio imposé, donc aucune secousse de mise en page. */
.hero {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--filet);
  border-radius: 2px;
  margin: 0 0 32px;
  background: #ededed;
}

figure { margin: 34px 0; }
figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--filet);
  border-radius: 2px;
  background: #ededed;
}
figcaption {
  margin-top: 8px;
  font-size: 14px;
  font-style: italic;
  color: rgba(42, 36, 28, 0.7);
}

.similaires {
  margin-top: 56px;
  border-top: 1px solid var(--filet);
  padding-top: 26px;
}
.similaires h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--or);
  margin-top: 0;
}
.similaires ul { list-style: none; padding: 0; margin: 0; }
.similaires li { padding: 7px 0; border-bottom: 1px solid rgba(228, 217, 195, 0.6); }
.similaires a { text-decoration: none; }
.similaires a:hover { text-decoration: underline; }

.grappe { margin-bottom: 34px; }
.grappe h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--or);
  margin: 0 0 12px;
}
.grappe ul { list-style: none; padding: 0; margin: 0; }
.grappe li { padding: 6px 0; border-bottom: 1px solid rgba(228, 217, 195, 0.6); }
.grappe a { text-decoration: none; }
.grappe a:hover { text-decoration: underline; }

.blog-pied {
  border-top: 1px solid var(--filet);
  padding: 26px 24px 40px;
  text-align: center;
  font-size: 14px;
  color: rgba(42, 36, 28, 0.7);
}
.blog-pied a { text-decoration: none; }
.blog-pied a:hover { text-decoration: underline; }
