.collection-subs {
	display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  list-style: none;
  padding: 0;
}

.subs-item {
  position: relative;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  width: 300px;
}

.subs-item > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
  display: block;
}

.subs-item > span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  background-color: #012f33;
  padding: 10px 0;
  display: none;
  box-sizing: border-box;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

.subs-item:hover > img {
  filter: brightness(85%);
  border-radius: 8px;
}

.subs-item:hover > span {
  display: block;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

@media (max-width: 768px) {
  .subs-item {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .subs-item {
    flex: 1 1 100%;
  }
}