/**
 * 关于我们页面专属样式
 */

/* Page Hero */
.page-hero {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 30, 80, 0.88) 0%, rgba(0, 60, 120, 0.75) 100%);
}

.page-hero-content {
    padding-top: 72px;
}

.page-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* Company Introduction */
.section-company-intro {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.company-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-intro-content .section-title {
    text-align: left;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.company-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-muted);
}

.company-intro-image {
    border-radius: var(--radius-card);
    overflow: hidden;
}

.company-intro-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-card);
}

/* Honor Section */
.section-honor {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.honor-card {
    background: var(--color-bg);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.honor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: var(--shadow-card-hover);
}

.honor-image {
    width: 100%;
    aspect-ratio: 4/3;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.honor-card:hover .honor-image img {
    transform: scale(1.03);
}

.honor-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.honor-card p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Workshop Showcase */
.section-workshop-showcase {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.workshop-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.workshop-showcase-item {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.workshop-showcase-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.workshop-showcase-item:hover img {
    transform: scale(1.05);
}

.workshop-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .page-hero {
        height: 280px;
    }
    
    .page-hero-title {
        font-size: 32px;
    }
    
    .company-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-intro-content {
        text-align: center;
    }
    
    .company-intro-content .section-title {
        text-align: center;
    }
    
    .company-stats {
        justify-content: center;
    }
    
    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workshop-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .page-hero {
        height: 220px;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .page-hero-subtitle {
        font-size: 16px;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .honor-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-showcase-grid {
        grid-template-columns: 1fr;
    }
}
