.random-posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
}

.post-card {
  border: 1px solid #eaeaea;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.2s;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.post-image img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
}

.post-content {
  padding: 15px;
}

.post-content h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
/* Container Grid */
.random-posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  font-family: 'Helvetica', Arial, sans-serif; /* Adaptez à votre font */
}

/* Card Design */
.post-card {
  background-color: #ffffff; /* Fond blanc explicite */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* Hauteur égale pour toutes les cartes */
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Link reset to cover whole card */
.post-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image Styling */
.post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block; /* Supprime l'espace fantôme sous l'image */
}

/* Content Area (White Background) */
.post-content {
  padding: 20px;
  background-color: #ffffff;
  flex-grow: 1; /* Pousse le contenu pour remplir la carte */
  display: flex;
  flex-direction: column;
}

/* Tags Bubbles (Blue Dark) */
.post-tags {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-bubble {
  background-color: #002F5D; /* Bleu foncé EOL (ajustez si besoin) */
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px; /* Forme pilule */
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Title Styling */
.post-content h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .random-posts-wrapper {
    grid-template-columns: 1fr;
  }
}