
.missions-vine-impact-dashboard {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ffd700;
    border-right: 4px solid #ffd700;
}

.impact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.impact-stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.impact-stat-box {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    text-align: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #333;
}

.impact-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .impact-stats-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .impact-stat-box {
        min-width: 100%;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .impact-title {
        font-size: 2rem;
    }
}
