.ps2-section{
    background:#edf4f3;
    padding:14px 12px;
    margin:12px 0;
    width:100%;
    box-sizing:border-box;
}

/* هدر دسته */
.ps2-header{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    margin-bottom:10px;
    direction:rtl;
}

.ps2-header-title{
    margin:0;
    color:#113b5c;
    font-size:16px;
    font-weight:700;
    line-height:1.4;
}

.ps2-header-mark{
    width:8px;
    height:16px;
    background:#113b5c;
    display:inline-block;
    clip-path:polygon(0 0, 100% 0, 100% 100%, 35% 70%, 0 70%);
}

/* چیدمان اصلی */
.ps2-layout{
    display:grid;
    grid-template-columns:1.55fr 1fr 1fr 1fr;
    gap:12px;
    width:100%;
    direction:ltr;
    align-items:stretch;
}

/* ستون متنی */
.ps2-briefs{
    display:flex;
    flex-direction:column;
    gap:10px;
    min-width:0;
}

.ps2-brief{
    background:#e4eceb;
    border-right:1px solid #8ca2aa;
    padding:14px 12px;
    min-height:86px;
    box-sizing:border-box;
    direction:rtl;
    text-align:right;
}

.ps2-brief-title{
    margin:0 0 6px 0;
    font-size:15px;
    line-height:1.5;
    font-weight:700;
    color:#123f60;
}

.ps2-brief-title a{
    color:inherit;
    text-decoration:none;
}

.ps2-brief-title a:hover{
    text-decoration:underline;
}

.ps2-brief-excerpt{
    margin:0;
    color:#6b7d85;
    font-size:12px;
    line-height:1.7;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* کارت‌های تصویری */
.ps2-card{
    background:#e4eceb;
    min-width:0;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    height:100%;
}

.ps2-card-link{
    display:flex;
    flex-direction:column;
    text-decoration:none;
    color:inherit;
    height:100%;
}

.ps2-card-image-wrap{
    width:100%;
    background:#d7e1e0;
    overflow:hidden;
    aspect-ratio:16 / 9;
}

.ps2-card-image{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.ps2-no-image{
    width:100%;
    height:100%;
    background:#d2dcdb;
}

.ps2-card-body{
    padding:10px 10px 12px 10px;
    direction:rtl;
    text-align:right;
    height:210px;
    box-sizing:border-box;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

.ps2-card-title{
    margin:0 0 8px 0;
    color:#123f60;
    font-size:14px;
    line-height:1.55;
    font-weight:700;
    min-height:65px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ps2-card-excerpt{
    margin:0;
    color:#6b7d85;
    font-size:12px;
    line-height:1.7;

    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* تبلت */
@media (max-width: 1200px){
    .ps2-layout{
        grid-template-columns:1fr 1fr;
    }

    .ps2-briefs{
        grid-column:1 / -1;
    }

    .ps2-card-body{
        height:190px;
    }
}

/* موبایل - تمام عرض + اول کارت‌های تصویری */
@media (max-width: 767px){
    .ps2-section{
        width:calc(100% + 24px) !important;
        margin-right:-12px !important;
        margin-left:-12px !important;
        padding:10px 8px !important;
        box-sizing:border-box;
    }

    .ps2-header{
        margin-bottom:8px;
        padding:0 2px;
    }

    .ps2-layout{
        grid-template-columns:1fr !important;
        gap:8px !important;
    }

    /* مهم: اول کارت‌های تصویری، بعد ستون متنی */
    .ps2-card{
        order:1;
    }

    .ps2-briefs{
        order:2;
        grid-column:auto;
        gap:8px;
    }

    .ps2-brief{
        padding:12px 10px;
        min-height:auto;
    }

    .ps2-brief-title{
        font-size:14px;
        line-height:1.6;
    }

    .ps2-brief-excerpt{
        font-size:12px;
        -webkit-line-clamp:2;
    }

    .ps2-card-image-wrap{
        aspect-ratio:16 / 9;
    }

    .ps2-card-body{
        height:auto;
        min-height:0;
        padding:8px 10px 10px;
    }

    .ps2-card-title{
        min-height:0;
        font-size:14px;
        line-height:1.6;
        margin-bottom:6px;
        -webkit-line-clamp:3;
    }

    .ps2-card-excerpt{
        -webkit-line-clamp:3;
    }
}