/* Mukta Font Import */
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@700&display=swap');

.ltr-main-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'Mukta', sans-serif;
    margin: 25px 0;
    width: 100%;
}

.ltr-column {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 10px;
    border: 1px solid #e0e0e0; /* बक्स जस्तो देखाउन */
    border-radius: 5px;
    box-sizing: border-box;
}

/* क्याटगरी टाइटल: बायाँतर्फ रातो बक्स */
.ltr-header {
    border-bottom: 2px solid #cc0000;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start;
}

.ltr-pill {
    background: #cc0000;
    color: #fff;
    padding: 4px 15px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
}

/* पोष्ट आइटम: फोटो बायाँ र टाइटल दायाँ */
.ltr-post-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.ltr-post-item:last-child {
    border-bottom: none;
}

.ltr-post-item img {
    width: 110px;
    min-width: 110px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* हेडलाइन दायाँतर्फ: २०px, बोल्ड */
.ltr-post-item a {
    font-size: 19px;
    font-weight: bold;
    color: #222;
    text-decoration: none;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ltr-post-item a:hover {
    color: #cc0000;
}

/* मोबाइल रेस्पोन्सिभ */
@media (max-width: 768px) {
    .ltr-column { min-width: 100%; }
    .ltr-post-item a { font-size: 18px; }
}
