.postcarousel-block {
  position: relative;
  padding: var(--block-padding-y) 0;
  overflow: hidden;
}
.postcarousel-block p.description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.postcarousel-block .row,
.postcarousel-block .span {
  min-width: 0;
}
.postcarousel-block .swiper-posts {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.postcarousel-block .swiper-posts-inner {
  overflow: hidden;
  margin: 0 55px;
  width: auto;
  min-width: 0;
}
.postcarousel-block .swiper-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.postcarousel-block .swiper-wrapper {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.postcarousel-block .swiper-slide {
  display: flex;
  flex: 0 0 100%;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 5px;
  margin-right: 10px;
}
.postcarousel-block .post {
  text-align: left;
}
.postcarousel-block .swiper-posts + p {
  margin-top: var(--block-content-gap);
}
@media screen and (max-width: 767px) {
  .postcarousel-block {
    padding: var(--block-padding-y-mobile) 0;
  }
  .postcarousel-block .swiper-posts {
    padding-bottom: calc(40px + var(--space-lg));
  }
  .postcarousel-block .swiper-posts-inner {
    margin: 0;
  }
  .postcarousel-block .swiper-slide {
    padding: 5px 0 12px;
  }
  .postcarousel-block .swiper-button-prev,
  .postcarousel-block .swiper-button-next {
    top: auto;
    bottom: 0;
    margin-top: 0;
  }
  .postcarousel-block .swiper-button-prev {
    left: calc(50% - 50px);
  }
  .postcarousel-block .swiper-button-next {
    right: calc(50% - 50px);
  }
}
@media screen and (min-width: 768px) {
  .postcarousel-block .swiper-slide {
    flex-basis: calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .postcarousel-block .swiper-slide {
    flex-basis: calc((100% - 20px) / 3);
    width: calc((100% - 20px) / 3);
  }
}
