.post-tile-list {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
    padding: 0 0 0 0;
    align-items: stretch;
     justify-content: center;
     margin-bottom:30px;
}

.post-tile-list__col {
    padding: 5px;
    flex: 1 1;
    min-width: 160px;
    max-width:300px;
    /*    display: flex;*/
    /*align-items: stretch;*/
}

/*@media all and (max-width: 420px) {*/
/*    .post-tile-list__col {*/
/*        width: 100%;*/
/*    }*/
/*}*/

/*@media all and (min-width: 421px) and (max-width: 719px) {*/
/*    .post-tile-list__col {*/
/*        width: 50%;*/
/*    }*/
/*}*/

/*@media all and (min-width: 720px) and (max-width: 1010px) {*/
/*    .post-tile-list__col {*/
/*        width: 33%;*/
/*    }*/
/*}*/

/*@media all and (min-width: 1011px) and (max-width: 1390px) {*/
/*    .post-tile-list__col {*/
/*        width: 25%;*/
/*    }*/
/*}*/

/*@media all and (min-width: 1391px) {*/
/*    .post-tile-list__col {*/
/*        width: 20%;*/
/*    }*/
/*}*/


.post-tile-i {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 10px;
    border: 1px solid #e6ecef;
    cursor: pointer;
    transition: all 0.2s;
    color:#000;
}

.post-tile-i:hover {
    border-color: #27afff;
    transition: all 0.2s;
    text-decoration: none !important;

}

.post-tile-i:hover .post-tile-title{
    color: #27afff;
    transition: all 0.2s;
}

.post-tile-title {
    font-size: 13px;
    line-height:18px;
    text-align: center;
    margin-top: 20px;
    font-weight: normal;
    overflow: hidden;
    height: 54px;
    color: #000;
    transition: all 0.2s;

}


.post-tile-img {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-tile-img img{
	width:95px;
}