/* ============================
   ENCRALYS – Groupes similaires
   Même taille que la Watchlist
   ============================ */

.encralys-similar-groups {
  margin-top: 18px;
}

/* Grille : colonnes de largeur fixe 172px */
.encralys-similar-groups .encralys-watchlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 172px); /* largeur fixe */
  justify-content: flex-start;
  gap: 18px; /* comme la watchlist profil */
}

/* Carte identique à la watchlist mais on fixe la largeur */
.encralys-similar-groups .encralys-watchlist-card {
  width: 172px; /* largeur fixe → hauteur ≈ 258px avec le ratio 2/3 */
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: visible;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out;
}

.encralys-similar-groups .encralys-watchlist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.16);
}

/* L'image utilise le même style que la watchlist (déjà défini globalement),
   mais on précise le ratio ici au cas où */
.encralys-similar-groups .encralys-watchlist-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
}

/* Titre sous le poster, même style que la watchlist */
.encralys-similar-groups .encralys-watchlist-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  max-height: none !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  margin-bottom: 4px;
  border-radius: 0 0 12px 12px;
  margin-left: 10px;
}