﻿.fav-blog-list {
    list-style: none;
    margin: 0;
    padding: 0;
    direction: rtl;
}

.fav-blog-list__item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 6px 0;
    border-bottom: 1px dashed #e7ebf6;
    border-radius: 7px;
    transition: background 0.2s;
}

    .fav-blog-list__item:last-child {
        border-bottom: none;
    }

.fav-blog-list__thumbbox {
    margin: 0;
    width: 54px;
    height: 54px;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 2px 7px rgba(10,41,113,.11);
    flex-shrink: 0;
    background: #fff;
    position: relative; /* برای absolute کردن img */
    display: block;
}

.fav-blog-list__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* تمام قاب رو پر می‌کنه */
    display: block;
    border-radius: 9px;
    background: #fff;
}

.fav-blog-list__details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1;
    /* راست‌چین کردن داخلی */
    direction: rtl;
    text-align: right;
}

.fav-blog-list__date {
    font-size: .93em;
    color: #6c7898;
    margin-bottom: 2px;
    line-height: 1.1;
    direction: rtl;
    text-align: right;
}

.fav-blog-list__title {
    font-size: 1em;
    font-weight: 600;
    color: #203040;
    line-height: 1.42;
    margin: 0;
    max-height: 2.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    direction: rtl;
    text-align: right;
}

    .fav-blog-list__title a {
        color: #0a2971;
        text-decoration: none;
        transition: color 0.18s;
        display: inline-block;
        width: 100%;
    }

        .fav-blog-list__title a:hover {
            color: #17438e;
            text-decoration: underline;
        }
