.corp-hero {
    background: linear-gradient(135deg, var(--secondary-green) 0%, #F0F8F0 100%);
    border-radius: 24px;
    padding: 48px 32px;
    margin-bottom: 48px;
    text-align: center;
    border: 1px solid rgba(40, 199, 111, 0.1);
    position: relative;
    overflow: hidden;
}

.corp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(3, 199, 90, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.corp-hero-content {
    position: relative;
    z-index: 2;
}

.corp-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.corp-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 24px;
}

.corporation-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.corporation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 199, 90, 0.15);
    border-color: var(--primary-green);
}

.corp-logo-container {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-green) 0%, #F8FFF8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.corp-logo {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.corporation-card:hover .corp-logo {
    transform: scale(1.05);
}

.default-corp-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.corp-content {
    padding: 24px;
}

.corp-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
}

.corp-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.corp-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-domestic {
    background: var(--secondary-green);
    color: var(--primary-green-dark);
}

.badge-overseas {
    background: #E3F2FD;
    color: #1976D2;
}


.corp-stats {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.corp-articles-count {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.corp-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.corp-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.corp-content > * {
    position: relative;
    z-index: 2;
}

.search-section {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border: 2px solid var(--border-light);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .corp-title {
        font-size: 2rem;
    }
    
    .corp-subtitle {
        font-size: 1.1rem;
    }
    
    .corp-hero {
        padding: 32px 20px;
    }
    
    .corporation-card {
        margin-bottom: 16px;
    }
}