/*==================================================
    POST CARD SMALL
==================================================*/

.post-card-small{

    display:block;

}

.post-card-small-link{

    display:grid;

    grid-template-columns:95px 1fr;

    gap:14px;

    align-items:center;

    text-decoration:none;

    color:inherit;

    padding:12px 0;

    border-bottom:1px solid var(--border);

}

.post-card-small:last-child .post-card-small-link{

    border-bottom:none;

}

.post-card-small-image{

    width:95px;

    height:72px;

    border-radius:10px;

    overflow:hidden;

    flex-shrink:0;

}

.post-card-small-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.post-card-small:hover img{

    transform:scale(1.05);

}

.post-card-small-meta{

    display:flex;

    align-items:center;

    gap:6px;

    margin-bottom:8px;

    color:#888;

    font-size:12px;

}

.post-card-small-meta i{

    color:var(--primary-color);

}

.post-card-small-title{

    margin:0;

    font-size:16px;

    line-height:1.9;

    font-weight:700;

    color:#222;

    transition:.25s;

}

.post-card-small:hover .post-card-small-title{

    color:var(--primary-color);

}