
.honors-section {
    font-family: 'Inter', sans-serif;
    --orange-primary: #FF6B35;
    --orange-light: rgba(255, 107, 53, 0.1);
}

.honors-section .title-gradient {
    background: linear-gradient(135deg, var(--orange-primary) 0%, #FF8C61 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.honors-section .title-main {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 3rem;
}

.honors-section .honors-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.honors-section .licenses-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.honors-section .awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.honors-section .awards-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.honors-section .honor-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease-in-out;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.honors-section .honor-card.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.honors-section .honor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.honors-section .honor-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    display: block;
}

.honors-section .honor-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1rem;
    line-height: 1.4;
}

/* 特殊尺寸适配 */
.honors-section .license-card .honor-image {
    max-height: 280px;
    object-fit: contain;
}

.honors-section .award-card .honor-image {
    max-height: 180px;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .honors-section .title-main {
        font-size: 1.875rem;
    }
    
    .honors-section .licenses-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .honors-section .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .honors-section .awards-row-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .honors-section .licenses-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .honors-section .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .honors-section .awards-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .honors-section .title-main {
        font-size: 3rem;
    }
}
