.ps3-section {
    direction: rtl;
    width: 100%;
}

.ps3-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ps3-card {
    background: #f1f1f1;
    border-radius: 18px;
    overflow: hidden;
    min-height: 160px;
}

.ps3-link {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    min-height: 160px;
}

.ps3-image-wrap {
    order: 1;
    padding: 14px 14px 14px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps3-card-image,
.ps3-no-image {
    width: 116px;
    height: 116px;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    background: #ddd;
}

.ps3-content {
    order: 2;
    padding: 16px 14px 16px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.ps3-title {
    margin: 0 0 10px 0;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 700;
    color: #111;
    padding-right: 12px;
    border-right: 2px solid #3f3f3f;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ps3-excerpt {
    margin: 0;
    color: #8f8f8f;
    font-size: 13px;
    line-height: 1.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hover */
.ps3-card:hover {
    background: #ececec;
    transition: background 0.2s ease;
}

.ps3-card:hover .ps3-title {
    color: #000;
}

/* Tablet */
@media (max-width: 980px) {
    .ps3-grid {
        grid-template-columns: 1fr;
    }

    .ps3-link {
        grid-template-columns: 120px 1fr;
    }

    .ps3-card-image,
    .ps3-no-image {
        width: 106px;
        height: 106px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .ps3-card {
        border-radius: 14px;
        min-height: 140px;
    }

    .ps3-link {
        grid-template-columns: 100px 1fr;
        min-height: 140px;
    }

    .ps3-image-wrap {
        padding: 10px 10px 10px 6px;
    }

    .ps3-card-image,
    .ps3-no-image {
        width: 90px;
        height: 90px;
        border-radius: 12px;
    }

    .ps3-content {
        padding: 10px 10px 10px 6px;
    }

    .ps3-title {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 6px;
    }

    .ps3-excerpt {
        font-size: 12px;
        line-height: 1.8;
        -webkit-line-clamp: 2;
    }
}