/* Fairness Page Specific Styles */

/* Fairness Hero Section */
.fairness-hero {
    width: 100%;
    display: block;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 134, 171, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 2px;
}

/* Tab Navigation - 기존 company.css 스타일 상속 */

/* Fairness Declaration Section */
.fairness-declaration-section {
    padding: 80px 0;
    background: white;
}

.declaration-header {
    text-align: center;
    margin-bottom: 60px;
}

.declaration-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 30px;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #2E86AB 50%, transparent 100%);
}

.declaration-title {
    font-size: 24px;
    font-weight: 600;
    color: #2E86AB;
    letter-spacing: 3px;
    white-space: nowrap;
}

.declaration-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Fairness Cards Grid */
.fairness-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.fairness-card {
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.fairness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #2E86AB;
}

.card-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90E2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(46, 134, 171, 0.3);
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .fairness-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .fairness-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .fairness-card {
        width: 180px;
        height: 180px;
        padding: 25px 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .fairness-declaration-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .fairness-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .fairness-card {
        width: 160px;
        height: 160px;
        padding: 20px 12px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .declaration-text {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .fairness-declaration-section {
        padding: 50px 0;
    }
    
    .declaration-header {
        margin-bottom: 40px;
    }
    
    .declaration-divider {
        margin-bottom: 30px;
        gap: 20px;
    }
    
    .declaration-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .divider-line {
        width: 50px;
    }
    
    .card-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .card-title {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .fairness-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fairness-card {
        width: 140px;
        height: 140px;
        padding: 15px 10px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .fairness-hero {
        height: 300px;
    }
    
    .declaration-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .fairness-declaration-section {
        padding: 40px 0;
    }
    
    .declaration-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .card-number {
        width: 30px;
        height: 30px;
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .card-title {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .card-description {
        font-size: 9px;
        line-height: 1.4;
    }
}
