
section.push-news-block {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
section.push-news-block div.container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  section.push-news-block div.container {
    gap: 2rem;
  }
}
section.push-news-block div.container .wrapper-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.push-news-block div.container .wrapper-top * {
  text-align: center;
}
section.push-news-block div.container .wrapper-top .label {
  opacity: 0;
}
section.push-news-block div.container .wrapper-top p,
section.push-news-block div.container .wrapper-top ul {
  opacity: 0;
}
section.push-news-block div.container .wrapper-nav {
  display: none;
}
@media (max-width: 768px) {
  section.push-news-block div.container .wrapper-nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
  }
}
section.push-news-block div.container .wrapper-nav .splide__arrow {
  transition: opacity 0.3s;
}
section.push-news-block div.container .wrapper-nav .splide__arrow.disable {
  opacity: 0.5;
  pointer-events: none;
}
section.push-news-block div.container .wrapper-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  section.push-news-block div.container .wrapper-posts {
    max-width: calc(100% - 1.5rem);
  }
}
section.push-news-block div.container .wrapper-posts.splide {
  width: 100%;
  gap: 0;
  position: relative;
}
section.push-news-block div.container .wrapper-posts.splide .splide__track {
  width: 100%;
  overflow: visible;
}
section.push-news-block div.container .wrapper-posts.splide .splide__track .splide__list {
  display: flex;
  width: 100%;
  transition: 1s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
section.push-news-block div.container .wrapper-posts article {
  opacity: 0;
  transform: translateY(20px);
}