/*  ===== Style personnalisé du blog Victoire Chaussures ===== */

/* Cartes d'articles */
.blog-grid .block_cont {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-grid .block_cont:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Image : hauteur fixe, recadrage propre, coins arrondis en haut */
.blog-grid .block_top {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.blog-grid .block_top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-grid .block_cont:hover .block_top img {
  transform: scale(1.05);
}

/* Zone de texte (titre + résumé) */
.blog-grid .block_bas {
  padding: 20px 24px 8px;
}

.blog-grid .block_bas a {
  color: #B0034B;
  font-weight: 700;
  text-decoration: none;
}

/* Bouton "Lire l'article" */
.blog-grid .prestablog_more {
  padding: 0 24px 20px;
}

.blog-grid .prestablog_more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #B0034B;
  color: #ffffff !important;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.blog-grid .prestablog_more a:hover {
  background-color: #ECAD28;
  color: #ffffff !important;
} /* Correction de la largeur : on masque la colonne vide et on étend le contenu */
body#module-prestablog-blog #left-column {
  display: none !important;
}

body#module-prestablog-blog #content-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

/* Correction du fond rose qui déborde derrière le bouton */
body#module-prestablog-blog .prestablog_more {
  background-color: transparent !important;
  padding: 0 24px 20px !important;
}

/* Uniformiser la hauteur des cartes */
body#module-prestablog-blog .blog-grid .block_cont {
  display: flex;
  flex-direction: column;
  height: 480px;
}

body#module-prestablog-blog .blog-grid .block_bas {
  flex: 1;
  overflow: hidden;
} */

/**
* 2008 - 2025 (c) Prestablog
*
* MODULE PrestaBlog
*
* @author    Prestablog
* @copyright Copyright (c) permanent, Prestablog
* @license   Commercial
*/