/* ==========================================================================
   FILE PATH: new/css/prnews.css
   DESCRIPTION: สไตล์เฉพาะสำหรับระบบข่าวประชาสัมพันธ์ (PR News Layout)
   ========================================================================== */
.pr-list-container { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.pr-row-card { display: flex; background: #ffffff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.04); transition: transform 0.2s ease, box-shadow 0.2s ease; text-decoration: none; color: #333; min-height: 160px; }
.pr-row-card:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,0.08); }

/* ปรับส่วนควบคุมรูปภาพให้รองรับแท็ก <img> */
.pr-row-thumb-wrapper { width: 240px; min-width: 240px; height: auto; overflow: hidden; display: flex; }
.pr-row-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.3s ease; }
.pr-row-card:hover .pr-row-img { transform: scale(1.03); }

.pr-row-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.pr-row-title { font-size: 18px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; color: #1e293b; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pr-row-desc { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pr-row-meta { font-size: 12px; color: #94a3b8; display: flex; align-items: center; gap: 6px; margin-top: auto; }

.pr-header-title { font-size: 24px; color: #ff4d4d; font-weight: 600; }
.pr-empty-text { text-align: center; color: #94a3b8; padding: 50px 0; font-size: 15px; }

/* Responsive สำหรับหน้าจอมือถือ */
@media (max-width: 768px) {
    .pr-row-card { flex-direction: column; min-height: auto; }
    .pr-row-thumb-wrapper { width: 100%; height: 200px; min-width: auto; }
    .pr-row-info { padding: 16px; }
    .pr-row-title { font-size: 16px; }
}