.content-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.25rem 3%;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .content-hub__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.content-hub__bucket {
  position: relative;
  aspect-ratio: 5/6;
}

.content-hub__bucket.video {
  grid-column: auto / span 2;
  aspect-ratio: 16/9;
}

.content-hub__bucket--video-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

.content-hub__bucket--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  background-color: lightgray;
}

.content-hub__bucket.text-box::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 25%,
    rgba(0, 0, 0, 0) 100%
  );
}

.content-hub__bucket--text-wrap {
  display: none;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: var(--ltf-color-white);
}

.content-hub__bucket.text-box .content-hub__bucket--text-wrap {
  display: block;
}

.content-hub__bucket--name {
  margin-bottom: 0;
  font-weight: normal;
}

.content-hub__bucket--outlet {
  display: block;
  margin-top: 0.25rem;
  color: var(--ltf-color-gray);
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .content-hub__bucket--outlet {
    font-size: 12px;
  }
}

.content-hub__bucket--arrow {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  right: 1.5rem;
}

.content-hub__load-more-posts {
  margin-top: 2rem;
  text-align: center;
}

.button--load-more-posts.hide {
  display: none;
}
