/* FE-010: Hero redesign styles */
.wl-hero-redesign {
    text-align: center;
    padding: 48px 0;
    max-width: 1200px;
    margin: 0 auto;
    grid-column: 1 / -1;
}

.wl-hero-redesign h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--wl-heading);
    margin-bottom: 32px;
    line-height: 1.25;
}

.wl-data-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 0 48px;
}

.wl-data-card {
    background: var(--wl-surface);
    border: 1px solid var(--wl-border-soft);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wl-big-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--wl-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.wl-card-label {
    font-size: 14px;
    color: var(--wl-text);
    margin-bottom: 16px;
    line-height: 1.4;
}

.wl-card-source {
    font-size: 11px;
    color: var(--wl-muted);
    line-height: 1.4;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .wl-hero-redesign {
        padding: 32px 0;
        margin: 0 16px;
    }
    
    .wl-hero-redesign h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .wl-data-cards {
        grid-template-columns: 1fr;
        margin: 0;
    }
    
    .wl-big-number {
        font-size: 36px;
    }
}