/* 高亮区块强制居中对齐修复 */
#highlights .highlight {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    align-items: center !important;
    margin-bottom: 3rem !important;
}

#highlights .highlight .image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    height: 100%;
}

#highlights .highlight .image img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

#highlights .highlight .desc {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem;
    width: 100%;
}

#highlights .highlight .desc .label {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    width: 100%;
    margin-bottom: 1rem;
}

#highlights .highlight .desc .label span {
    text-align: center !important;
    display: inline-block !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#highlights .highlight .desc .text {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
}

#highlights .highlight .desc .text h1 {
    text-align: center !important;
    width: 100%;
    max-width: 100%;
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    font-weight: 700;
}

#highlights .highlight .desc .text h2 {
    text-align: center !important;
    width: 100%;
    max-width: 100%;
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

/* 移动端优化 */
@media (max-width: 768px) {
    #highlights .highlight {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    #highlights .highlight .image {
        order: 1 !important;
    }
    
    #highlights .highlight .desc {
        order: 2 !important;
        padding: 1.5rem;
    }
    
    #highlights .highlight .image img {
        max-width: 300px !important;
    }
    
    #highlights .highlight .desc .text h1 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    #highlights .highlight .desc .text h2 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    #highlights .highlight .desc .label span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* 图片在右侧的布局移动端调整 */
    #highlights .highlight .image-right {
        order: 1 !important;
    }
    
    #highlights .highlight .desc.image-right {
        order: 2 !important;
    }
}