/* ===== CONTAINER ===== */
.tc-blog-guides .et_pb_post {
  position: relative;
  min-height: 240px;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
}

/* ===== IMAGE ===== */
.tc-blog-guides .et_pb_post a.entry-featured-image-url {
  margin: 0;
  height: 240px;
  display: block;
}

.tc-blog-guides .et_pb_post img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transform: none !important;
  transition: none !important;
}

/* ===== OVERLAY ===== */
.tc-blog-guides .et_pb_post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.75)
  );
  pointer-events: none;
}

/* ===== TITRE ===== */
.tc-blog-guides .entry-title {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
  background: rgba(0,0,0,0.35);
  padding: 12px 16px;
  border-radius: 6px;
}

.tc-blog-guides .entry-title a {
  color: #f4d38a;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 
    0 2px 6px rgba(0,0,0,0.8),
    0 0 2px rgba(0,0,0,0.6);
}

/* ===== CACHE CONTENU ===== */
.tc-blog-guides .post-content {
  display: none;
}

/* ===== BOUTON ===== */
.tc-blog-guides .et_pb_post::before {
  content: "VOIR LE GUIDE COMPLET →";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  background: #b89a63;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: .5px;
  white-space: nowrap;
  
  /* 👉 clé pour le clic */
  pointer-events: none;
}

/* ===== HOVER (léger sans animation image) ===== */
.tc-blog-guides .et_pb_post:hover {
  transform: none;
}

/* ===== CAS SANS IMAGE ===== */
.tc-blog-guides .et_pb_post:not(:has(img)) {
  background: linear-gradient(
    135deg,
    #d8c7a3,
    #b89a63
  );
}

.tc-blog-guides .et_pb_post:not(:has(img))::after {
  display: none;
}

.tc-blog-guides .et_pb_post:not(:has(img)) .entry-title {
  background: rgba(0,0,0,0.2);
}

.tc-blog-guides .et_pb_post:not(:has(img)) .entry-title a {
  color: #fff;
  text-shadow: none;
}

/* ===== PAGINATION BLOG ===== */
.tc-blog-guides .pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.tc-blog-guides .pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b89a63;
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  text-decoration: none;
}

.tc-blog-guides .pagination a:hover {
  background: #9f8755;
  color: #fff !important;
}

/* Ancien / Nouveau */
.tc-blog-guides .pagination .alignleft,
.tc-blog-guides .pagination .alignright {
  float: none;
}

/* Version mobile */
@media (max-width: 767px) {
  .tc-blog-guides .pagination {
    flex-direction: column;
    align-items: center;
  }

  .tc-blog-guides .pagination a {
    width: 100%;
    max-width: 280px;
  }
}

/***************
 * ZONE DU BAS *
 ***************/
/* ===== STRUCTURE ===== */
.tc-blurb-inline .et_pb_blurb_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ===== BLOC IMAGE (clé du problème) ===== */
.tc-blurb-inline .et_pb_main_blurb_image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px !important;
}

/* ===== IMAGE ===== */
.tc-blurb-inline .et_pb_main_blurb_image img {
  width: 80px; /* 🔥 augmente ici si besoin */
  height: auto;
  display: block;
}

/* ===== TITRE ===== */
.tc-blurb-inline .et_pb_module_header {
  margin: 0;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  color: #2b2b2b;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== DESCRIPTION ===== */
.tc-blurb-inline .et_pb_blurb_description {
  margin: 0;
  font-size: 16px;
  color: #666;
}

/* ===== STYLE GLOBAL ===== */
.tc-blurb-inline {
  padding: 30px 25px;
  background: #f5f1e8;
  border-radius: 12px;
}