
.brake-hero {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/wp-content/uploads/2026/03/brak-shoe-repair-kit-banner-scaled.jpg');
    background-size: cover;
    background-position: center;
    height: 400px; /* 或者根据需要调整高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* 基础容器 */
.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* 左侧大图样式 (参考 image_a7b5c7.png) */
.main-img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.main-img-frame img { 
    width: 100%; 
    display: block; 
    height: 600px; 
    object-fit: cover; 
}

.visual-tag {
    position: absolute; top: 20px; left: 20px;
    background: rgba(26, 43, 60, 0.8); color: #fff;
    padding: 8px 15px; font-size: 12px; font-weight: 700; text-transform: uppercase;
}

/* 右侧卡片组 */
.insight-cards { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.tech-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
}


.active-border { border-left: 4px solid #ff5a1f; }

/* 卡片内部元素 */
.card-icon {
    font-size: 24px; font-weight: 800; color: #eee;
    line-height: 1; margin-top: 5px;
}
.tech-card:hover .card-icon { color: #ff5a1f; }

.card-content h3 {
    font-size: 20px; color: #1a2b3c; margin: 0 0 12px 0;
}

.card-content p {
    font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 15px;
}

/* 维护说明区块 */
.maint-note {
    background: #f9f9f9;
    padding: 12px 15px;
    border-left: 2px solid #ddd;
    font-size: 13px;
    color: #444;
}

/* 响应式适配 */
@media (max-width: 991px) {
    .insight-grid { grid-template-columns: 1fr; }
    .main-img-frame { height: 400px; }
}

/* products */
/* 产品卡片容器 */

.rel-card:hover { 
    border-color: #ff5a1f !important; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

.swiper-nav-holder div:hover { 
    opacity: 0.8; 
}
