.fs-post-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -20px;
}
.fs-post-grid .grid-item {
    width: 33.33%;
    padding: 0px 20px;
    margin-bottom: 40px;
}
.fs-post-grid .swiper-slide.post-bx {
    margin-bottom: 0px;
}
.fs-post-grid .grid-item .inner-bx {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.post-img {
    position: relative;
    padding-top: 60%;
}
.post-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0px 0px;
}
.post_info {
    padding: 30px 30px 24px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 100%;
    border-radius: 0px 0px 16px 16px;
}
.post_info h3 {
    margin-top: 15px;
    margin-bottom: 25px;
}
.post-meta {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 14px;
}
.post-meta a {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}
.post-meta a svg {
    transition: ease transform 300ms;
}
.post-meta a:hover svg {
    transform: translate3d(7px, 0, 0);
}
.post_info * {
    color: #012758;
    font-size: 16px;
    font-weight: 500;
}
.term-label {
    background-color: #529dba;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    padding: .30rem .875rem;
    border-radius: 14px;
    display: flex;
    align-self: self-start;
}
@media only screen and (max-width: 1024px) {
.fs-post-grid {
    margin: 0px -15px;
}
.fs-post-grid .grid-item {
    padding: 0px 15px;
    margin-bottom: 30px;
}
.post_info {
    padding: 24px 20px 14px 20px;
}
}
@media only screen and (max-width: 767px) {
.fs-post-grid .grid-item {
    max-width: 100%;
}
}