

/* Individual Item */
.listpost-item {
    display: flex;
    flex-direction: row;
    /* यसले बाहिरबाट फोटो र टाइटल दुबैलाई सेन्टर गर्छ */
    align-items: center; 
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
    gap: 15px;
}

/* Photo Styling */
.listpost-thumb {
    flex: 0 0 130px;
    width: 130px;
    height: 85px; /* फोटोको उचाई */
    overflow: hidden;
    display: block;
}

.listpost-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Content Styling (Title) */
.listpost-info {
    flex: 1;
    display: flex;
    /* यो भागले एक लाइन वा दुई लाइन जति भए पनि बीचमा राख्छ */
    flex-direction: column;
    justify-content: center; 
    height: 85px; /* यो फोटोको height सँग बराबर हुनुपर्छ */
}

.listpost-title {
    margin: 0;
    padding: 0;
}

.listpost-title a {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    text-decoration: none;
    display: block;
    /* शीर्षकलाई ठाडो रूपमा मात्र होइन, अझ राम्रो देखाउन यस्तो गरिन्छ */
    word-wrap: break-word;
}
