.post-link-card {    
    display: flex;
    max-width: 800px;
    max-height: 180px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin: 20px auto;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.post-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.post-card-image {
    width: 30%;
    flex-shrink: 0;
    width: auto;
    background-size: cover;
    background-position: center;
    background-color: #f8f9fa;
}

.post-card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
}

.post-card-content {
    width: 70%;
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-card-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 8px 0;
    color: #2c3e50;
}

.post-card-excerpt {
    font-size: 14px!important;
    line-height: 1.2!important;
    color: #6c757d;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .post-link-card {
        display: flex;
        flex-direction: column;
        max-height: fit-content;
    }
    
    .post-card-image {
        width: 100%;
        height: 200px;
    }
    
    .post-card-content {
        width: 100%;
        padding: 16px;
    }
}

/* 加载状态 */
.post-card-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.post-card-error {
    padding: 20px;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    color: #c33;
    margin: 20px 0;
}