/**
 * post tile
 **/


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

.post-tile-list__col {
    flex: 1 1;
    min-width: 160px;
    max-width: 300px;
    padding: 5px;

}


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

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

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

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

    line-height: 18px;
}


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

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



