.fs-post-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -20px;
}
.fs-post-grid .grid-item {
    width: 100%;
    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: row;
	gap: 30px;
}
.post-img {
  /*  position: relative;
    padding-top: 60%;*/
	width: 50%;
	height: 220px;
}
.post-img img {
   /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}
.post_info {
    padding: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    /*background-color: #fff;*/
    height: 100%;
    border-radius: 0px;
	width: 50%;
}
.post_info h3 {
    margin-top: 15px;
    margin-bottom: 15px;
	font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.2em;
    text-transform: uppercase;
    font-family: "Gilroy", Sans-serif !important;
}
.post-meta {
    display: flex;
    padding-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    flex-direction: row;
    justify-content: space-between;
}
.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; */
	margin: 0;
}
.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%;
}
.fs-post-grid .grid-item .inner-bx {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.post-img {
    width: 100%;
    height: 350px;
}
.post_info {
    padding: 10px;
    width: 100%;
}	
}