/*=========================================
POST CARD
=========================================*/

.post-card{
    display:flex;
    flex-direction:column;
    height:100%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid var(--border);
    transition:.35s ease;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.post-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.post-card-image{
    display:block;
    overflow:hidden;
    aspect-ratio:16/9;
    background:#f3f3f3;
    border-radius:16px 16px 0 0;
}

.post-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;
}

.post-card:hover .post-card-image img{
    transform:scale(1.08);
}

.post-card-body{
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.post-card-category{

    margin-bottom:10px;
    font-size:13px;
    font-weight:700;

}

.post-card-category a{

    color:#b30000;
    text-decoration:none;

}

.post-card-title{
    margin:0;
    line-height:1.9;
    font-size:20px;
    font-weight:800;
}

.post-card-title a{

    color:#222;
    text-decoration:none;
    transition:.3s;

}

.post-card-title a:hover{

    color:#b30000;

}

.post-card-date{

    margin-top:auto;
    padding-top:18px;

    display:flex;
    align-items:center;
    gap:8px;

    color:#888;
    font-size:13px;

}

.post-card-excerpt{

    margin-top:12px;

    color:#555;
    line-height:2;

}

@media(max-width:768px){

    .post-card-title{

        font-size:16px;

    }

}