/* Contenedor general: previene scroll horizontal */
.clustersathome-container {
  overflow-x: hidden;
  padding-left: 15px;
  padding-right: 15px;
}

/* Grid: evita márgenes negativos de Bootstrap */
.clustersathome-grid {
  margin-left: 0;
  margin-right: 0;
}

/* Estilo de cada bloque */
.cluster-category {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  overflow-wrap: break-word; /* evita desbordes por textos largos */
}

/* Efecto hover */
.cluster-category:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* Imagen dentro del bloque */
.cluster-category img {
  border-radius: 6px;
  max-height: 140px;
  object-fit: cover;
  margin-bottom: 15px;
  width: 100%; /* asegura que no se desborde */
  display: block;
}

/* Título de la categoría */
.cluster-name {
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  padding-left: 5px;
  overflow-wrap: break-word;
}

ul.list-unstyled{

  text-align:left
}

ul.list-unstyled li{

  margin-bottom:5px
}
