.block-recent-posts {
  margin: 50px 0;
  padding: 0px 20px;
}
.block-recent-posts .inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.block-recent-posts .inner .title {
  color: #4B90FB;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .block-recent-posts .inner .title {
    font-size: 22px;
    letter-spacing: 3px;
  }
}
.block-recent-posts .inner .posts {
  max-width: 1010px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.block-recent-posts .inner .posts .post {
  padding: 10px;
  border-radius: 25px;
  padding-bottom: 30px;
  text-align: start;
}
.block-recent-posts .inner .posts .post a:hover {
  border-bottom: transparent;
}
.block-recent-posts .inner .posts .post a:hover .title {
  color: var(--secondaryColor);
}
.block-recent-posts .inner .posts .post img {
  object-fit: cover;
  width: 100%;
  height: 235px;
  margin-bottom: 8px;
}
.block-recent-posts .inner .posts .post .date {
  color: #002756;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}
.block-recent-posts .inner .posts .post .post-title {
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 35px;
  color: #4B90FB;
  font-size: 24px;
}
.block-recent-posts .inner .posts .post .content {
  margin-bottom: 15px;
}
.block-recent-posts .inner .button {
  margin: 0 auto;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .block-recent-posts .inner .button {
    margin-top: 20px;
  }
}
.block-recent-posts .inner .arrows {
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  width: 100%;
  pointer-events: none;
  display: flex;
  max-width: 1500px;
}
@media (max-width: 767px) {
  .block-recent-posts .inner .arrows {
    display: none;
    /* top: 100%;
    overflow-x: hidden; */
  }
}
.block-recent-posts .inner .arrows .arrow {
  height: 50px;
  width: 50px;
  padding: 10px;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.5s cubic-bezier(0.17, 0.66, 0.34, 0.98);
  transform: translateX(0px);
  border-radius: 50%;
}
@media (max-width: 1350px) {
  .block-recent-posts .inner .arrows .arrow {
    height: 30px;
    width: 30px;
  }
}
.block-recent-posts .inner .arrows .next-arrow {
  position: absolute;
  right: 0;
}
.block-recent-posts .inner .arrows .prev-arrow {
  transform: rotate(-180deg);
  position: absolute;
  left: 0;
}
@media (min-width: 768px) {
  .block-recent-posts {
    padding: 0 38px;
  }
  .block-recent-posts .inner .title {
    margin-bottom: 30px;
  }
  .block-recent-posts .inner .posts {
    flex-direction: row;
    justify-content: center;
  }
  .block-recent-posts .inner .posts .thumbnail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .block-recent-posts .inner .posts .post {
    flex: 0 0 calc(33% - 15px);
    padding: 15px;
  }
  .block-recent-posts .inner .posts .post img {
    height: 235px;
    width: auto;
    object-fit: cover;
    margin-bottom: 10px;
  }
  .block-recent-posts .inner .posts .post .content {
    min-height: 135px;
  }
  .block-recent-posts .inner .posts .post .post-title {
    min-height: 155px;
  }
}
@media (min-width: 1100px) {
  .block-recent-posts {
    padding: 0px 40px;
    margin: 70px 0 80px;
  }
  .block-recent-posts .inner .title {
    margin-bottom: 70px;
    font-size: 40px;
  }
  .block-recent-posts .inner .posts .post img {
    margin-bottom: 20px;
  }
}
