.ssrp-wrapper {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-family: inherit;
}
.ssrp-main-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #202124;
}
.ssrp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.ssrp-card {
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit !important;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    height: 100%;
}
.ssrp-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* สไตล์สำหรับบทความ "มีรูปภาพ" */
.ssrp-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f9fa;
    border-bottom: 1px solid #dadce0;
}
.ssrp-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* สไตล์ข้อความทั่วไป */
.ssrp-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.ssrp-title {
    font-size: 16px; font-weight: 600; margin: 0 0 6px 0 !important; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    color: #202124;
}
.ssrp-date { font-size: 13px; color: #70757a; margin-bottom: 10px; }
.ssrp-excerpt { font-size: 14px; color: #4d5156; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* สไตล์สำหรับบทความ "ไม่มีรูปภาพ" (Review Style) */
.ssrp-review-style { padding-top: 20px; }
.ssrp-author-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.ssrp-avatar {
    width: 40px; height: 40px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-size: 18px;
    font-weight: 600; flex-shrink: 0; line-height: 1; text-transform: uppercase;
}
.ssrp-author-row .ssrp-meta { display: flex; flex-direction: column; justify-content: center; }
.ssrp-author-row .ssrp-title { font-size: 15px; -webkit-line-clamp: 1; margin: 0 !important; }
.ssrp-author-row .ssrp-date { margin: 2px 0 0 0; }
.ssrp-stars { display: flex; gap: 2px; margin-bottom: 12px; }