/* فقط صفحه مقالات */
body.page-articles .articles-wrapper{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

body.page-articles .article-card{
    background:#0D1B2A;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    color:#fff;
}

body.page-articles .article-title a{
    color:#D4AF37;
}

body.page-articles .article-excerpt{
    color:#d8d8d8;
    padding:0 20px;
    line-height:1.9;
}

body.page-articles .read-more{
    display:inline-block;
    margin:20px;
    padding:10px 18px;
    background:#D4AF37;
    color:#0D1B2A;
    border-radius:10px;
    font-weight:700;
}