/* 百家文章列表小部件样式 */

.baijia-posts-wrapper {
    width: 100%;
}

.baijia-posts-grid {
    display: grid;
    gap: 30px;
}

/* 文章项 */
.baijia-post-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.baijia-post-item:hover {
    transform: translateY(-5px);
}

.baijia-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 图片容器 */
.baijia-post-image-wrapper {
    position: relative;
    overflow: hidden;
}

.baijia-post-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: inherit;
}

.baijia-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: inherit;
}

.baijia-post-item:hover .baijia-post-image img {
    transform: scale(1.05);
}

/* 箭头图标 */
.baijia-post-arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.baijia-post-item:hover .baijia-post-arrow {
    opacity: 1;
    transform: translateX(0);
}

.baijia-post-arrow svg {
    width: 20px;
    height: 20px;
}

/* 内容区域 */
.baijia-post-content {
    padding: 20px 0;
}

/* 分类标签 */
.baijia-post-category {
    font-size: 14px;
    color: #999999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* 标题 */
.baijia-post-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.baijia-post-item:hover .baijia-post-title {
    color: #0066cc;
}

/* 手机响应式 */
@media (max-width: 767px) {
    .baijia-posts-grid {
        gap: 20px;
    }
    
    /* 手机端改为左右布局 */
    .baijia-post-link {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }
    
    /* 图片容器占30% */
    .baijia-post-image-wrapper {
        flex: 0 0 30%;
        min-width: 30%;
    }
    
    .baijia-post-image {
        height: 100px;
    }
    
    /* 内容区域占70% */
    .baijia-post-content {
        flex: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .baijia-post-title {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }
    
    .baijia-post-category {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    /* 手机端箭头调整 */
    .baijia-post-arrow {
        width: 30px;
        height: 30px;
        right: 8px;
        bottom: 8px;
    }
    
    .baijia-post-arrow svg {
        width: 16px;
        height: 16px;
    }
}

