.order-posts-acf{
  margin-top: 32px;
  display: grid;
  column-gap: 32px;
  overflow-x: auto;
  grid-template-columns: repeat(3, 1fr);
  font-family: 'Inter', sans-serif;
}

.order-posts-acf::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.order-posts-acf .order-post-item{
  width: 405px;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgb(0 0 0 / 10%);
}
.order-posts-acf .__featured-img{
  height: 240px;
  overflow: hidden;
}
.order-posts-acf .__info{
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}
.order-post-item .__meta{
  display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.order-post-item .__meta .__meta--type{
  font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0.1px;
    color: #002F65;
}
.order-post-item .__meta .__meta--date{
  font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: -0.1px;
    text-align: right;
    color: #2f2f39;
    opacity: 0.7;
    white-space: nowrap;
}
.order-post-item .__info .__title{
  font-size: 28px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 40px;
    letter-spacing: 0;
    color: #0F6CB6;
    margin-top: 16px;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.order-post-item .__info .__title:hover{
  text-decoration: underline;
    text-underline-offset: 4px;
}
.order-post-item .__info .btn-readmore{
  font-size: 18px;
    font-weight: 600;
    width: fit-content;
    font-stretch: normal;
    font-style: normal;
    line-height: 28px;
    letter-spacing: 0.1px;
    color: #0F6CB6;
    padding: 0px 0px 4px;
    margin-top: 24px;
    border-bottom: 1px solid #C3DAEC;
    display: inline-block;
}
.order-post-item .btn-readmore:hover{
  border-bottom: 1px solid #0F6CB6!important;
    transition: 0.4s;
    text-decoration: none;
}
/* Responsive */
@media only screen and (max-width: 1024px) {
  .order-posts-acf{
    column-gap: 24px;
  }
}
@media only screen and (max-width: 768px) {
.order-posts-acf{
  margin-top: 24px;
  column-gap: 16px;
}
.order-posts-acf .order-post-item{
  width: 300px;
}
.order-posts-acf .__featured-img{
  height: 178px;
}
.order-posts-acf .__info{
  padding: 24px;
  min-height: 280px;
}
.order-post-item .__meta .__meta--type,
.order-post-item .__meta .__meta--date{
  font-size: 14px;
  line-height: 20px;
}
.order-post-item .__info .__title{
  font-size: 24px;
  margin-top: 8px;
  line-height: 32px;
}
.order-post-item .__info .btn-readmore{
  font-size: 16px;
  line-height: 24px;
}
}
