
/* --- High-End Brand Delivery Scope (加强放大版) --- */
.hz-brands-scope {
    --hz-orange: #ec682e;
    --text-dark: #333333;
    --text-gray: #777777;
    background-color: #ffffff;
    padding: 60px 20px; /* 进一步压缩上下间距 */
}

.hz-brands-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hz-brands-header {
    margin-bottom: 20px; /* 极小间距，强制靠近 */
}

.hz-brands-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 36px;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.hz-brands-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Logo 网格 */
.hz-brands-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px; /* 紧贴文字 */
}

/* 单个 Logo 容器 - 移除限制 */
.hz-brand-item {
    flex: 1;
    min-width: 200px;
    height: 180px; /* 再次加高 */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.hz-brand-item img {
    width: auto;
    height: auto;
    max-width: 100%; 
    max-height: 100px; /* 强制图片本身的高度 */
    transform: scale(1.3); /* 整体视觉放大 1.3 倍 */
    object-fit: contain;
}

.hz-brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
    .hz-brand-item {
        flex: 0 0 45%;
        height: 120px;
    }
    .hz-brand-item img {
        transform: scale(1.1);
    }
}
