/* 内容展示-左图 · 左图右文 */

/* 列表 */
.YXYH-pc-widget-posts-left-image .post-list {
    display: flex;
    flex-direction: column;
}

/* 单条 */
.YXYH-pc-widget-posts-left-image .post-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s;
}

.YXYH-pc-widget-posts-left-image .post-item:first-child {
    padding-top: 0;
}

.YXYH-pc-widget-posts-left-image .post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.YXYH-pc-widget-posts-left-image .post-item:hover {
    background: rgba(0, 0, 0, 0.01);
}

/* 封面 */
.YXYH-pc-widget-posts-left-image .post-cover {
    flex-shrink: 0;
    width: 80px;
    height: 54px;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
}

.YXYH-pc-widget-posts-left-image .post-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.YXYH-pc-widget-posts-left-image .post-item:hover .post-cover img {
    transform: scale(1.05);
}

/* 右侧内容 */
.YXYH-pc-widget-posts-left-image .post-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 标题 */
.YXYH-pc-widget-posts-left-image .post-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ls-text-primary, #1a1a2e);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.YXYH-pc-widget-posts-left-image .post-item:hover .post-title {
    color: var(--jinsom-theme-color, #6366f1);
}

/* 摘要 */
.YXYH-pc-widget-posts-left-image .post-excerpt {
    font-size: 12px;
    color: var(--ls-text-secondary, #6b7280);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 元信息 */
.YXYH-pc-widget-posts-left-image .post-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--ls-text-muted, #9ca3af);
    line-height: 1;
}

.YXYH-pc-widget-posts-left-image .post-author {
    font-weight: 500;
    color: var(--ls-text-secondary, #6b7280);
}

.YXYH-pc-widget-posts-left-image .post-dot {
    margin: 0 5px;
    opacity: 0.4;
}

.YXYH-pc-widget-posts-left-image .post-views i {
    margin-right: 2px;
    vertical-align: -1px;
    font-size: 12px;
}

/* 空状态 */
.YXYH-pc-widget-posts-left-image .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: #cbd5e1;
    border-radius: 12px;
    border: 1px dashed #e2e8f0;
}

.YXYH-pc-widget-posts-left-image .empty-icon {
    font-size: 36px;
    margin-bottom: 8px;
}
