body .future-posts {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 75px;
  justify-content: center;
}
@media (max-width: 1024px) {
  body .future-posts {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  body .future-posts {
    gap: 24px;
  }
}
body .future-posts:not(.future-sliders) .post-item {
  width: calc(25% - 22.5px);
}
@media (max-width: 1024px) {
  body .future-posts:not(.future-sliders) .post-item {
    width: calc(50% - 15px);
  }
}
body .future-posts .post-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
body .future-posts .post-item img {
  width: 100%;
}
body .future-posts .post-item .post-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  body .future-posts .post-item .post-info {
    gap: 0;
    flex-direction: column;
  }
}
body .future-posts .post-item .post-info .info-item {
  width: calc(65% - 8px);
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 767px) {
  body .future-posts .post-item .post-info .info-item {
    width: 100%;
  }
}
body .future-posts .post-item .post-info .info-item:nth-child(2) {
  width: calc(35% - 8px);
}
body .future-posts .post-item .post-info .info-item img {
  width: 14px;
}
body .future-posts .post-item .post-info .info-item span {
  flex: 1;
  font-size: 13px;
  color: var(--e-global-color-secondary);
  font-family: "Inknut Antiqua", Sans-serif;
  font-weight: 600;
}
body .future-posts .post-item h2 {
  font-size: 20px;
  margin: 0;
  color: #000;
  font-weight: 600;
}
@media (max-width: 767px) {
  body .future-posts .post-item h2 {
    font-size: 18px;
  }
}
body .fildevs-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
body .fildevs-pagination a {
  color: #000;
}
body .fildevs-pagination a:hover, body .fildevs-pagination a.current {
  color: var(--e-global-color-primary);
  text-decoration: underline;
}
body .future-sliders {
  width: 100%;
  overflow: hidden;
  padding: 0 50px;
}
body .future-sliders .swiper-button-next {
  right: 0;
}
body .future-sliders .swiper-button-prev {
  left: 0;
}
