/**
 * 文章底部插入商品样式
 */

/* 商品卡片容器 */
.hoshinoai-pp-card {
    margin: 25px 0;
}

/* 卡片内部样式 */
.hoshinoai-pp-card a {
    transition: all 0.3s ease;
}

/* 图片悬停效果 */
.hoshinoai-pp-card a:hover img {
    transform: scale(1.02);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .hoshinoai-pp-card a {
        padding: 10px 12px !important;
    }
    .hoshinoai-pp-card img {
        width: 55px !important;
        height: 55px !important;
    }
    .hoshinoai-pp-card div div:first-child {
        font-size: 13px !important;
    }
    .hoshinoai-pp-card div div:last-child {
        font-size: 16px !important;
    }
}