.post-single-body a{color: #ef7180;}
/* Responsive Thumbnail & Text Sizing */
    .nav-thumb-img {
        width: 200px; 
        height: 200px; 
        object-fit: cover;
        flex-shrink: 0;
    }
    .nav-text-container {
        width: 100%;
        overflow: hidden;
    }
    .nav-title-text {
        font-size: 13px;
        line-height: 1.3;
        /* Smart truncation so text never breaks the layout */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Desktop Overrides */
@media screen and (max-width: 768px) {
        .nav-thumb-img {
            width: 100%; 
        }
        .nav-title-text {
            font-size: 15px;
            -webkit-line-clamp: 3;
        }
    }