/* ===============================
   Related Posts Wrapper
================================ */

.jalal-related-posts-wrapper{
    margin-top:40px;
}

.jalal-related-posts-title{
    font-size:20px;
    margin-bottom:20px;
    font-weight:600;
}


/* ===============================
   Grid Layout
================================ */

.jalal-related-posts-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}


/* ===============================
   Post Card
================================ */

.jalal-related-post-item{
    border:1px solid #eee;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    transition:all .25s ease;
}

.jalal-related-post-item:hover{
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transform:translateY(-3px);
}

.jalal-related-post-link{
    display:block;
    text-decoration:none;
    color:inherit;
}


/* ===============================
   Thumbnail
================================ */

.jalal-related-post-thumbnail{
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#f5f5f5;
}

.jalal-related-post-thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    /* مهم: override کردن محدودیت تم */
    max-height:none !important;
}


/* ===============================
   Post Title
================================ */

.jalal-related-post-heading{
    font-size:15px;
    padding:12px 14px 16px;
    line-height:1.5;
    font-weight:500;
}


/* ===============================
   Tablet
================================ */

@media (max-width:1024px){

.jalal-related-posts-grid{
    grid-template-columns:repeat(2,1fr);
}

}


/* ===============================
   Mobile
================================ */

@media (max-width:575px){

.jalal-related-posts-grid{
    grid-template-columns:1fr;
}

}
