/* 自动特色图片插件前端样式 */

.afi-auto-inserted-image {
    max-width: 60% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto !important;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.afi-featured-image-wrapper {
    text-align: center;
    margin: 20px 0;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .afi-auto-inserted-image {
        max-width: 90% !important;
        margin: 15px auto !important;
    }
}

@media screen and (max-width: 480px) {
    .afi-auto-inserted-image {
        max-width: 100% !important;
        margin: 10px auto !important;
    }
}