.lightbox-posts {
  background-color: #fff;
  position: relative;
  border-radius: 30px 30px 0 0;
  padding: 50px 20px 100px;
  z-index: 1;
}
.lightbox-posts::before {
  content: "";
  position: absolute;
  left: 0%;
  transform: translateX(-25%);
  width: 200vw;
  top: 0;
  height: 100%;
  background-color: var(--wp--preset--color--base);
  z-index: -1;
}
.lightbox-posts .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 991px) {
  .lightbox-posts .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 680px) {
  .lightbox-posts .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 460px) {
  .lightbox-posts .posts-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.lightbox-posts .see-all-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}/*# sourceMappingURL=block.css.map */