/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN SYSTEM DU BLOG — mespetitspackagings.com          (MPP-48/58/59/60)

   Une seule feuille pour tous les articles. Le HTML des billets reste
   sémantique et n'emporte AUCUN style inline : il pose des classes bd-* et
   la mise en forme vit ici. Chargée par bdseo sur les pages du blog.

   Palette (celle du thème leo_flinque) :
     encre      #3a3330      titres   #492916      brun doux  #6b4a32
     kicker     #a17a4f      filet    #e6e1da      papier     #faf8f5
     estompé    #8a8177
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. Blocs « produits de cet article » (rendus par le template leoblog) ── */
.bd-related { margin: 34px 0 10px; }
.bd-related-h {
  font-size: 17px; font-weight: 700; margin: 0 0 14px;
  color: #492916; letter-spacing: .01em;
}
.bd-related-row {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 12px; margin: 0 -2px;
  scrollbar-width: thin;
}
.bd-related-row::-webkit-scrollbar { height: 6px; }
.bd-related-row::-webkit-scrollbar-thumb { background: #d9d2c7; border-radius: 3px; }
.bd-related-card {
  flex: 0 0 158px; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 7px;
  text-decoration: none; color: inherit;
  border: 1px solid #e6e1da; border-radius: 10px;
  padding: 10px; background: #fff;
  transition: border-color .12s, box-shadow .12s, transform .12s;
}
.bd-related-card:hover {
  border-color: #c9bfae; box-shadow: 0 2px 10px rgba(0,0,0,.07);
  transform: translateY(-2px); text-decoration: none;
}
.bd-related-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain;
  border-radius: 6px; background: #faf8f5; display: block;
}
.bd-related-name {
  font-size: 13px; line-height: 1.35; color: #3a3330;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 35px;
}
.bd-related-price { font-size: 14px; font-weight: 700; color: #492916; margin-top: auto; }
.bd-related-bottom {
  margin: 44px 0 26px;
  padding-top: 24px;
  border-top: 1px solid #e6e1da;
}

/* ── 2. Typographie de base des articles ──────────────────────────────────
   S'applique à tout billet, même sans classes bd-* (anciens contenus). */

.blog-detail .blog-description {
  font-size: 16px; line-height: 1.75; color: #3a3330;
}
.blog-detail .blog-description p { margin: 0 0 1.05em; }
.blog-detail .blog-description h2 {
  font-size: 24px; line-height: 1.3; color: #492916; font-weight: 700;
  margin: 1.9em 0 .7em; padding-bottom: 8px; border-bottom: 1px solid #eee7dd;
}
.blog-detail .blog-description h3 {
  font-size: 19px; color: #492916; font-weight: 700; margin: 1.5em 0 .5em;
}
.blog-detail .blog-description h4 {
  font-size: 16.5px; color: #6b4a32; font-weight: 700; margin: 1.3em 0 .4em;
}
.blog-detail .blog-description ul,
.blog-detail .blog-description ol { margin: 0 0 1.2em; padding-left: 1.6em; }
.blog-detail .blog-description li { margin-bottom: .45em; }


/* Les images de contenu sont encadrées — pas celles des cartes produit. */
.blog-detail .blog-description img {
  max-width: 100%; height: auto;
  background: #fff; border: 1px solid #e6e1da; border-radius: 12px;
  padding: 6px; margin: 6px; vertical-align: middle;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}
.blog-detail .blog-description .bd-related img {
  border: 0; padding: 0; margin: 0; box-shadow: none; background: #faf8f5;
}

/* ── 3. Composants d'article (classes posées dans le HTML des billets) ──── */

/* Conteneur : largeur de lecture confortable */
.bd-article { max-width: 760px; margin: 0 auto; }

/* Introduction : plus grande, plus aérée, sans filet sous le premier titre */
.bd-lead { margin: 30px 0 54px; }
.bd-lead h2 {
  font-size: 28px !important; border-bottom: 0 !important;
  padding-bottom: 0 !important; margin: 0 0 14px !important;
}
.bd-lead p { font-size: 17.5px; line-height: 1.7; color: #55483f; }

/* Section : le bloc de respiration standard */
.bd-section { margin: 0 0 56px; }
.bd-section > h2 { margin-top: 0 !important; }

/* Kicker : la petite ligne en capitales au-dessus d'un titre */
.bd-eyebrow {
  font-size: 12.5px !important; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.6px; color: #a17a4f !important;
  margin: 0 0 6px !important;
}

/* Rangée d'images : 3 vignettes (ou 2 en variante large), encadrées, alignées */
.bd-imgrow {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: flex-start;
  margin: 4px 0 22px;
}
.bd-imgrow img {
  flex: 0 1 auto; width: auto;
  max-height: 250px; max-width: calc(33.333% - 10px);
  object-fit: contain; margin: 0;
}
.bd-imgrow-2 img { max-height: 340px; max-width: calc(50% - 8px); }

/* Figure : une image seule, centrée */
.bd-figure { text-align: center; margin: 4px 0 22px; }
.bd-figure img { max-height: 400px; width: auto; margin: 0; }

/* Bloc surligné : fond papier, pour mettre une section en avant */
.bd-highlight {
  background: #faf8f5; border: 1px solid #f0e9df; border-radius: 14px;
  padding: 26px 28px;
}
.bd-highlight > h2 { border-bottom: 0 !important; padding-bottom: 0 !important; }

/* Encadré-conseil : filet accentué à gauche (disponible pour les prochains billets) */
.bd-callout {
  background: #faf8f5; border-left: 3px solid #a17a4f; border-radius: 0 10px 10px 0;
  padding: 16px 20px; margin: 0 0 1.4em;
}
.bd-callout p:last-child { margin-bottom: 0; }

/* Conclusion : séparée par un filet, comme une signature */
.bd-conclusion {
  border-top: 1px solid #e6e1da; padding-top: 30px; margin-bottom: 30px;
}
.bd-conclusion > h2 { border-bottom: 0 !important; padding-bottom: 0 !important; margin-top: 0 !important; }

/* CTA de section « voir plus » : bouton contour — visible, mais hiérarchisé
   sous le bouton plein (bd-cta) réservé à la conclusion. */
.bd-more { margin: 6px 0 0; }
.bd-more a {
  display: inline-block; font-size: 14.5px; font-weight: 600;
  color: #492916; background: #fff;
  border: 1.5px solid #492916; border-radius: 24px;
  padding: 9px 20px; text-decoration: none;
  transition: background .12s, color .12s, transform .12s;
}
.bd-more a:hover {
  background: #492916; color: #fff;
  text-decoration: none; transform: translateY(-1px);
}
.bd-more a::after { content: " \2192"; }

/* Bouton d'appel à l'action — le vert d'action de la boutique (celui de
   « Ajouter au panier »), mais avec texte brun : blanc sur ce vert ne
   contraste qu'à 1,86:1, brun #492916 tient 7,0:1 (MPP-68). */
.bd-cta {
  display: inline-block; background: #9ec8a9; color: #492916 !important;
  padding: 11px 22px; border-radius: 24px; font-weight: 600; font-size: 14.5px;
  text-decoration: none !important; transition: background .12s, transform .12s;
}
.bd-cta:hover { background: #8bbb98; transform: translateY(-1px); }

/* ── 4. Mobile ────────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
    .blog-detail .blog-description { font-size: 15.5px; }
  .blog-detail .blog-description h2 { font-size: 20px; }
  .blog-detail .blog-description h3 { font-size: 17px; }
  .bd-lead h2 { font-size: 22px !important; }
  .bd-lead p { font-size: 16px; }
  .bd-imgrow { gap: 10px; }
  .bd-imgrow img, .bd-imgrow-2 img { max-width: calc(50% - 5px); max-height: 220px; }
  .bd-highlight { padding: 20px 18px; }
  .bd-related-card { flex-basis: 44vw; }
}

/* ── 5. Sidebar des pages blog — design Jordan (MPP-60) ──────────────────
   Markup dans modules/leoblog/views/templates/hook/ (classes mpp-*). */
.mpp-sidebar-card {
  background: #fff; border: 1px solid #eee8e1; border-radius: 10px;
  padding: 12px; margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(82, 57, 40, .035);
}
.mpp-sidebar-title {
  display: flex; align-items: center; gap: 9px;
  margin: 0 0 12px; padding: 11px 12px;
  background: #faf6f1; border-radius: 7px;
  color: #744b35; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .7px;
}
.mpp-sidebar-title svg { flex: 0 0 auto; width: 19px; height: 19px; stroke: #a36e4b; }

/* Catégories : l'arbre généré par leoblog, mappé sur le design */
.mpp-cat-tree ul { margin: 0; padding: 0; list-style: none; }
.mpp-cat-tree li { margin: 0; border-bottom: 1px solid #eee; }
.mpp-cat-tree li:last-child { border-bottom: 0; }
.mpp-cat-tree li > a {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 7px; color: #333; text-decoration: none; font-size: 14px;
  transition: all .2s ease;
}
.mpp-cat-tree li > a:hover { color: #965f3e; padding-left: 11px; }
.mpp-cat-tree li > a::before {
  content: "•"; width: 22px; text-align: center; color: #a8795a; flex: 0 0 auto;
}
.mpp-cat-tree li:nth-child(1) > a::before { content: "▧"; }
.mpp-cat-tree li:nth-child(2) > a::before { content: "♢"; }
.mpp-cat-tree li:nth-child(3) > a::before { content: "♡"; }
.mpp-cat-tree li:nth-child(4) > a::before { content: "○"; }
.mpp-cat-tree li > a::after {
  content: "›"; margin-left: auto; color: #999; font-size: 20px; line-height: 1;
}

/* Listes d'articles */
.mpp-sidebar-posts { margin: 0; padding: 0; list-style: none; }
.mpp-sidebar-post { display: flex; gap: 11px; padding: 11px 4px; border-bottom: 1px solid #eee; }
.mpp-sidebar-post:first-child { padding-top: 0; }
.mpp-sidebar-post:last-child { border-bottom: 0; }
.mpp-sidebar-post-image {
  width: 42%; max-width: 115px; min-width: 90px; aspect-ratio: 1.45 / 1;
  border-radius: 7px; overflow: hidden; background: #f3eee8; flex: 0 0 auto;
}
.mpp-sidebar-post-image img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.mpp-sidebar-post:hover .mpp-sidebar-post-image img { transform: scale(1.04); }
.mpp-sidebar-post-placeholder {
  display: flex; width: 100%; height: 100%; align-items: center; justify-content: center;
  padding: 8px; color: #9a7b67; text-align: center; font-size: 11px; line-height: 1.25;
}
.mpp-sidebar-post-content { flex: 1; min-width: 0; }
.mpp-sidebar-post-title {
  display: block; margin: 1px 0 8px; color: #2e2e2e;
  font-size: 13px; line-height: 1.35; font-weight: 600; text-decoration: none;
}
.mpp-sidebar-post-title:hover { color: #965f3e; }
.mpp-sidebar-date { display: flex; align-items: center; gap: 5px; color: #8b8b8b; font-size: 11px; }
.mpp-sidebar-date svg { width: 12px; height: 12px; stroke: #aa7958; }

/* Bouton « voir tous » */
.mpp-sidebar-button {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 11px; padding: 10px 12px; border-radius: 6px;
  background: #9a6747; color: #fff !important;
  text-decoration: none !important; text-align: center; font-size: 12px;
  transition: background .2s ease;
}
.mpp-sidebar-button:hover { background: #805136; }
.mpp-sidebar-button span { font-size: 16px; }

/* Tags */
.mpp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mpp-tags a {
  display: inline-flex; padding: 6px 9px; border-radius: 7px;
  background: #f7f2ec; color: #554b45; font-size: 11px; line-height: 1.1;
  text-decoration: none; transition: all .2s ease;
}
.mpp-tags a:hover { background: #a46d49; color: #fff; }

/* Newsletter / découverte */
.mpp-newsletter-box {
  padding: 16px; background: #faf6f1; border: 1px solid #eee5dd;
  border-radius: 10px; text-align: center; margin-bottom: 16px;
}
.mpp-newsletter-icon { display: flex; justify-content: center; margin-bottom: 8px; }
.mpp-newsletter-icon svg { width: 26px; height: 26px; stroke: #9a6747; }
.mpp-newsletter-box strong { display: block; margin-bottom: 4px; color: #42372f; font-size: 14px; }
.mpp-newsletter-box p { margin: 0 0 12px; color: #796c63; font-size: 11px; line-height: 1.4; }
.mpp-newsletter-link {
  display: inline-block; padding: 8px 13px; border: 1px solid #9a6747;
  border-radius: 5px; color: #8b593b !important; font-size: 11px;
  text-decoration: none !important;
}
.mpp-newsletter-link:hover { background: #9a6747; color: #fff !important; }

@media (max-width: 991px) {
  .sidebar { margin-top: 35px; }
  .mpp-sidebar-post-image { max-width: 140px; }
}

/* ── 6. En-tête d'article + commentaires — design Jordan (MPP-60) ───────── */
.mpp-blog-header { margin-bottom: 26px; }
.mpp-blog-header h1 {
  margin: 0 0 18px; color: #29231f;
  font-size: 36px; font-weight: 600; line-height: 1.18; letter-spacing: -.5px;
}
.mpp-blog-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 22px; margin-bottom: 24px;
  color: #726962; font-size: 13px;
}
.mpp-blog-meta-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.mpp-blog-meta-item svg { width: 17px; height: 17px; flex: 0 0 auto; stroke: #9a6747; }
.mpp-blog-meta-item a { color: #51463f; text-decoration: none; }
.mpp-blog-meta-item a:hover { color: #9a6747; }
.mpp-blog-hero { margin: 0 0 23px; overflow: hidden; border-radius: 9px; background: #f5f1ec; }
.mpp-blog-hero img { display: block; width: 100%; height: auto; border: 0; padding: 0; margin: 0; box-shadow: none; }
.mpp-blog-intro { margin: 0 0 42px; padding-bottom: 28px; border-bottom: 1px solid #eee6df; }
.mpp-blog-intro p, .mpp-blog-intro h4 {
  margin: 0; color: #332d29; font-size: 18px; font-weight: 600; line-height: 1.45;
}

.mpp-comments { margin-top: 55px; padding-top: 28px; border-top: 1px solid #e8dfd7; }
.mpp-comments-heading {
  display: flex; align-items: center; gap: 10px; margin: 0 0 18px;
  color: #302924; font-size: 21px; font-weight: 600;
}
.mpp-comments-heading svg { width: 21px; height: 21px; stroke: #9a6747; }
.mpp-no-comments {
  margin: 0 0 26px; padding: 13px 17px; border-radius: 7px;
  background: #faf6f1; color: #685b52; font-size: 13px;
}
.mpp-comment-list { margin: 0 0 26px; }
.mpp-comment-item {
  padding: 14px 16px; margin-bottom: 12px;
  background: #fff; border: 1px solid #eee6df; border-radius: 8px;
}
.mpp-comment-item-meta {
  display: flex; gap: 12px; align-items: baseline; margin-bottom: 6px;
}
.mpp-comment-item-meta strong { color: #423a35; font-size: 13.5px; }
.mpp-comment-item-meta span { color: #8b8b8b; font-size: 11.5px; }
.mpp-comment-item-text { font-size: 14px; color: #3a3330; }
.mpp-comment-item-text p:last-child { margin-bottom: 0; }

/* Le formulaire vit dans un bloc : fond crème, les champs blancs ressortent */
.mpp-comment-form-box {
  background: #faf6f1; border: 1px solid #eee5dd; border-radius: 10px;
  padding: 24px 26px 20px; margin-top: 6px;
}
.mpp-comment-form-title { margin: 0 0 5px; color: #302924; font-size: 21px; font-weight: 600; }
.mpp-comment-help { margin: 0 0 22px; color: #81776f; font-size: 12px; }
.mpp-comment-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mpp-comment-field { margin-bottom: 18px; }
.mpp-comment-field-full { grid-column: 1 / -1; }
.mpp-comment-field label {
  display: block; margin-bottom: 6px; color: #423a35; font-size: 13px; font-weight: 500;
}
.mpp-comment-required { color: #9a6747; }
.mpp-comment-field input,
.mpp-comment-field textarea {
  display: block; width: 100%; padding: 11px 12px;
  border: 1px solid #ddd5ce; border-radius: 5px; background: #fff;
  color: #333; font-family: inherit; font-size: 14px; box-sizing: border-box;
  outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.mpp-comment-field input { height: 43px; }
.mpp-comment-field textarea { min-height: 145px; resize: vertical; }
.mpp-comment-field input:focus,
.mpp-comment-field textarea:focus {
  border-color: #a97858; box-shadow: 0 0 0 3px rgba(154, 103, 71, .08);
}
.mpp-captcha { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.mpp-captcha-image { display: block; max-width: 160px; height: auto; border: 1px solid #e4ddd7; border-radius: 5px; }
.mpp-captcha input { width: 150px; }
.mpp-comment-submit {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 190px; min-height: 43px; padding: 10px 22px;
  border: 0; border-radius: 5px; background: #986443; color: #fff;
  font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background .2s ease;
}
.mpp-comment-submit:hover { background: #7f5035; }

@media (max-width: 767px) {
  .mpp-blog-header h1 { font-size: 29px; }
  .mpp-blog-meta { gap: 9px 16px; }
  .mpp-blog-intro p, .mpp-blog-intro h4 { font-size: 16px; }
  .mpp-comment-fields { grid-template-columns: 1fr; }
  .mpp-comment-field-full { grid-column: auto; }
  .mpp-captcha { align-items: flex-start; flex-direction: column; }
  .mpp-captcha input { width: 100%; }
  .mpp-comment-form-box { padding: 18px 16px 14px; }
}

/* ── 7. Listing du blog (/blog.html + catégories) — design Jordan (MPP-60) ── */
.mpp-blog-listing { color: #302a26; font-size: 15px; line-height: 1.55; }
.mpp-blog-listing * { box-sizing: border-box; }
.mpp-blog-page-header { margin: 20px 0 28px; }
.mpp-blog-page-header h1 { margin: 0; color: #29231f; font-size: 36px; font-weight: 600; line-height: 1.15; }
.mpp-blog-page-header:after {
  content: ""; display: block; width: 54px; height: 2px;
  margin-top: 13px; background: #9a6747;
}

/* Bannière de catégorie — image en fond si présente, bandeau crème sinon */
.mpp-blog-cat-banner {
  margin: 20px 0 28px; padding: 34px 30px;
  background: linear-gradient(120deg, #faf6f1, #f3ebe2);
  border: 1px solid #eee4dc; border-radius: 10px;
}
.mpp-blog-cat-banner h1 { margin: 0; color: #29231f; font-size: 34px; font-weight: 600; line-height: 1.15; }
.mpp-blog-cat-banner h1:after {
  content: ""; display: block; width: 54px; height: 2px;
  margin-top: 13px; background: #9a6747;
}
.mpp-blog-cat-banner-img {
  background-size: cover; background-position: center; position: relative; overflow: hidden;
}
.mpp-blog-cat-banner-img h1 { color: #fff; text-shadow: 0 1px 10px rgba(40, 25, 15, .55); }
.mpp-blog-cat-desc { margin-top: 12px; color: #514943; font-size: 14px; max-width: 640px; }
.mpp-blog-cat-banner-img .mpp-blog-cat-desc { color: #fff; text-shadow: 0 1px 8px rgba(40, 25, 15, .6); }

/* Grandes cartes */
.mpp-blog-featured { display: flex; flex-direction: column; gap: 18px; margin-bottom: 18px; }
.mpp-blog-card-large {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 1.05fr);
  gap: 30px; align-items: center; padding: 22px;
  background: #fff; border: 1px solid #eee7e1; border-radius: 10px;
  box-shadow: 0 2px 10px rgba(72, 49, 35, .035);
}
.mpp-blog-card-copy { display: grid; grid-template-columns: 74px 1fr; gap: 22px; align-items: start; }

/* Pastille date */
.mpp-blog-date {
  padding: 12px 7px; background: #faf6f1; border: 1px solid #eee4dc;
  border-radius: 9px; color: #8c5939; text-align: center;
}
.mpp-blog-date-month { display: block; margin-bottom: 2px; font-size: 13px; font-weight: 600; }
.mpp-blog-date-day { display: block; color: #75472e; font-size: 33px; font-weight: 500; line-height: 1; }
.mpp-blog-date-year { display: block; margin-top: 5px; color: #805139; font-size: 13px; font-weight: 600; }

/* Titre + méta + description + bouton */
.mpp-blog-title { margin: 2px 0 12px; font-size: 26px; font-weight: 600; line-height: 1.2; }
.mpp-blog-title a { color: #29231f; text-decoration: none; }
.mpp-blog-title a:hover { color: #9a6747; }
.mpp-blog-listing .mpp-blog-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-bottom: 17px; color: #716860; font-size: 12px;
}
.mpp-blog-listing .mpp-blog-meta-item { display: inline-flex; align-items: center; gap: 5px; }
.mpp-blog-listing .mpp-blog-meta-item svg { width: 15px; height: 15px; stroke: #a26d4c; }
.mpp-blog-listing .mpp-blog-meta a { color: #655b54; text-decoration: none; }
.mpp-blog-listing .mpp-blog-meta a:hover { color: #9a6747; }
.mpp-blog-desc { max-width: 520px; margin-bottom: 18px; color: #514943; font-size: 14px; line-height: 1.6; }
.mpp-blog-readmore {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 20px; border: 1px solid #9a6747; border-radius: 5px;
  color: #875536 !important; text-decoration: none !important;
  font-size: 13px; font-weight: 500; transition: all .2s ease;
}
.mpp-blog-readmore:hover { background: #9a6747; color: #fff !important; }

/* Image de carte */
.mpp-blog-card-image { overflow: hidden; border-radius: 8px; background: #f5f1ed; display: block; }
.mpp-blog-card-image img {
  display: block; width: 100%; height: 225px; object-fit: cover;
  transition: transform .35s ease;
}
.mpp-blog-card-large:hover .mpp-blog-card-image img,
.mpp-blog-card-small:hover .mpp-blog-card-image img { transform: scale(1.025); }
.mpp-blog-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 155px; padding: 15px;
  background: #f7f2ec; color: #907662; text-align: center; font-size: 12px;
}

/* Petites cartes */
.mpp-blog-secondary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-bottom: 20px; }
.mpp-blog-card-small {
  display: grid; grid-template-columns: 58px minmax(0, 1fr) 145px;
  gap: 16px; align-items: start; min-height: 215px; padding: 18px;
  background: #fff; border: 1px solid #eee7e1; border-radius: 10px;
  box-shadow: 0 2px 10px rgba(72, 49, 35, .035);
}
.mpp-blog-card-small .mpp-blog-date { padding: 9px 5px; }
.mpp-blog-card-small .mpp-blog-date-day { font-size: 27px; }
.mpp-blog-card-small .mpp-blog-title { margin-top: 0; font-size: 17px; line-height: 1.25; }
.mpp-blog-card-small .mpp-blog-meta { gap: 5px 11px; margin-bottom: 12px; font-size: 10px; }
.mpp-blog-card-small .mpp-blog-meta-item svg { width: 12px; height: 12px; }
.mpp-blog-card-small .mpp-blog-desc { margin-bottom: 13px; font-size: 11px; line-height: 1.5; }
.mpp-blog-card-small .mpp-blog-readmore { padding: 6px 13px; font-size: 11px; }
.mpp-blog-card-small .mpp-blog-card-image { align-self: stretch; }
.mpp-blog-card-small .mpp-blog-card-image img { height: 100%; min-height: 155px; }

/* Pagination : le markup module (_pagination.tpl) stylé au design */
.mpp-blog-pagination-wrap .pagination {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 15px 18px; margin: 0; background: #faf6f1; border-radius: 8px;
  color: #625850; font-size: 12px;
}
.mpp-blog-pagination-wrap .pagination > div { padding: 0; width: auto; flex: 0 0 auto; }
.mpp-blog-pagination-wrap .page-list {
  display: flex; align-items: center; gap: 9px; margin: 0; padding: 0; list-style: none;
}
.mpp-blog-pagination-wrap .page-list li a {
  display: flex; align-items: center; justify-content: center;
  min-width: 35px; height: 35px; padding: 0 11px;
  border: 1px solid #ded5cd; border-radius: 5px; background: #fff;
  color: #604c3f; text-decoration: none; font-size: 12px;
}
.mpp-blog-pagination-wrap .page-list li.current a {
  border-color: #9a6747; background: #9a6747; color: #fff;
}
.mpp-blog-pagination-wrap .page-list a.disabled { color: #bdb4ad; pointer-events: none; }
.mpp-blog-pagination-wrap .page-list .material-icons { font-size: 16px; }

@media (max-width: 991px) {
  .mpp-blog-card-large { grid-template-columns: 1fr; }
  .mpp-blog-card-large .mpp-blog-card-image { order: -1; }
  .mpp-blog-secondary { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .mpp-blog-page-header h1, .mpp-blog-cat-banner h1 { font-size: 30px; }
  .mpp-blog-card-large { padding: 15px; }
  .mpp-blog-card-copy { grid-template-columns: 58px 1fr; gap: 14px; }
  .mpp-blog-title { font-size: 21px; }
  .mpp-blog-card-image img { height: auto; }
  .mpp-blog-card-small { grid-template-columns: 55px 1fr; }
  .mpp-blog-card-small .mpp-blog-card-image { grid-column: 1 / -1; }
  .mpp-blog-card-small .mpp-blog-card-image img { height: auto; }
  .mpp-blog-pagination-wrap .pagination { flex-direction: column; align-items: flex-start; }
}
