


.mr-feed-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mr-feed-item {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.mr-feed-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mr-feed-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    transition: all .2s;
}

.mr-feed-link:hover {
    opacity: .85;
}

.mr-feed-link:hover .mr-feed-title {
    color: #0073aa;
}

.mr-feed-thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.mr-feed-link:hover .mr-feed-thumb-img {
    transform: scale(1.03);
}

.mr-feed-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

.mr-feed-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

.mr-feed-date {
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

.mr-feed-excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mr-feed-excerpt[style*="line-clamp"] {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mr-feed-excerpt:not([style]) {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}


.mr-feed-layout-left .mr-feed-link {
    flex-direction: row;
    gap: 14px;
    align-items: flex-start;
}

.mr-feed-layout-left .mr-feed-thumb-wrap {
    flex: 0 0 90px;
    width: 90px;
}

.mr-feed-layout-left .mr-feed-thumb {
    border-radius: 8px;
    overflow: hidden;
}

.mr-feed-layout-left .mr-feed-content {
    flex: 1;
    min-width: 0;
}


.mr-feed-layout-top .mr-feed-link {
    flex-direction: column;
    gap: 10px;
}

.mr-feed-layout-top .mr-feed-thumb-wrap {
    width: 100%;
}

.mr-feed-layout-top .mr-feed-thumb {
    border-radius: 8px;
    overflow: hidden;
}

.mr-feed-layout-top .mr-feed-content {
    padding: 0 2px;
}


.mr-feed-layout-circle .mr-feed-link {
    flex-direction: row;
    gap: 14px;
    align-items: flex-start;
}

.mr-feed-layout-circle .mr-feed-thumb-wrap {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
}

.mr-feed-layout-circle .mr-feed-thumb {
    border-radius: 50%;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.mr-feed-layout-circle .mr-feed-content {
    flex: 1;
    min-width: 0;
}


.mr-feed-layout-list .mr-feed-link {
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

.mr-feed-num {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9A9A9A;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    line-height: 1;
}

.mr-feed-list-badge {
    flex: 0 0 30px;
    width: 30px;
    height: auto;
}

.mr-feed-layout-list .mr-feed-content {
    flex: 1;
    min-width: 0;
}

.mr-feed-layout-list .mr-feed-title {
    font-size: 14px;
}


.mr-feed-thumb-wrap {
    position: relative;
}

.mr-feed-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    width: min(64px, 50%);
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.45)) drop-shadow(0 0 1px rgba(0,0,0,.2));
}

.mr-feed-layout-circle .mr-feed-badge {
    top: -4px;
    left: -4px;
}



.mr-feed-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: visible;
    padding: 14px;
    margin-bottom: 16px;
    border-bottom: none;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s;
}

.mr-feed-card:last-child {
    margin-bottom: 0;
}

.mr-feed-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    transform: translateY(-2px);
}


.mr-feed-layout-top.mr-feed-card {
    padding: 0;
}

.mr-feed-layout-top.mr-feed-card .mr-feed-thumb {
    border-radius: 10px 10px 0 0;
}

.mr-feed-layout-top.mr-feed-card .mr-feed-content {
    padding: 14px 16px 16px;
}
