/* ========== ISO9001 Banner特殊样式 ========== */

/* ISO9001 Banner - 纯图片展示 */
.banner-content-image-only {
    position: relative;
    padding: 60px 50px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
}

/* ISO9001 Banner - 图片全屏 */
.banner-image-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image-full img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    object-fit: contain;
}

/* ISO9001 Banner - 标题覆盖层 */
.banner-header-overlay {
    position: absolute;
    top: 40px;
    left: 50px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-left: 5px solid #d4a574;
}

/* 移动端响应式 */
@media (max-width: 992px) {
    .banner-content-image-only {
        padding: 40px 30px;
    }

    .banner-header-overlay {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 25px;
        text-align: center;
        margin-bottom: 30px;
        border-left: none;
        border-bottom: 3px solid #d4a574;
    }

    .banner-header-overlay .banner-decoration {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .banner-image-full {
        padding: 0 20px;
    }

    .banner-image-full img {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .banner-content-image-only {
        padding: 30px 20px;
    }

    .banner-header-overlay {
        padding: 15px 20px;
    }

    .banner-image-full {
        padding: 0 10px;
    }

    .banner-image-full img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .banner-content-image-only {
        padding: 20px 15px;
    }

    .banner-header-overlay {
        padding: 15px;
    }

    .banner-header-overlay .banner-title {
        font-size: 20px !important;
    }

    .banner-image-full img {
        max-height: 250px;
    }
}
