.wz-followed-posts.wz-followed-posts-grid {
  clear: both;
  margin: 10px 0;
  width: 100%;
}

.wz-followed-posts.wz-followed-posts-grid h3 {
  margin: 0;
  clear: both;
}

.wz-followed-posts.wz-followed-posts-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 10px;
}

.wz-followed-posts.wz-followed-posts-grid ul li {
  text-align: center;
  line-height: 120%;
  border: 1px solid #ddd;
  border-radius: 5px;
  list-style: none;
  transition: ease 0.3s;
}

.wz-followed-posts.wz-followed-posts-grid ul li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: #fff;
}

.wz-followed-posts.wz-followed-posts-grid ul li a img {
  margin: 0 auto;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1 1 auto;
}

.wz-followed-posts.wz-followed-posts-grid ul li a span.wherego_title {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  transition: ease 0.3s;
  word-break: break-word;
}

.wz-followed-posts.wz-followed-posts-grid ul li a span.wherego_title:hover {
  background-color: #333;
}

.wz-followed-posts.wz-followed-posts-grid ul li:hover {
  background-color: #ccc;
}

.wz-followed-posts.wz-followed-posts-grid .wherego_clear {
  clear: both;
}

.wz-followed-posts.wz-followed-posts-grid .wherego_title:visited {
  color: #fff !important;
}